/* ============================================
   ÃTRIA IMÃ“VEIS "” Awwwards-Level Real Estate
   Design System & Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors "” Forest Noir palette */
    --c-dark: #1c1c1c;
    --c-dark-soft: #242424;
    --c-navy: #2a3b30;
    --c-cream: #dcdcdc;
    --c-cream-soft: #d0d0d0;
    --c-gold: #5a7a62;
    --c-gold-light: #7a9e84;
    --c-white: #ffffff;
    --c-white-soft: rgba(255, 255, 255, 0.7);
    --c-gray: #7a7a76;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-border-dark: rgba(14, 18, 16, 0.08);

    /* Typography */
    --f-serif: 'Cormorant Garamond', 'Georgia', serif;
    --f-sans: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --s-section: clamp(100px, 12vw, 180px);
    --s-gap: clamp(20px, 3vw, 40px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    /* Border Radius */
    --radius: 4px;
    --radius-lg: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: var(--f-sans);
    font-weight: 400;
    color: var(--c-white);
    background-color: var(--c-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out-quart);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
}

::selection {
    background: var(--c-gold);
    color: var(--c-dark);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
}

/* ---------- Custom Cursor ---------- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--c-white);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    transition: transform 0.15s var(--ease-out-quart);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: transform 0.3s var(--ease-out-expo),
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                top 0.3s var(--ease-out-expo),
                left 0.3s var(--ease-out-expo),
                border-color 0.3s var(--ease-out-expo);
}

.cursor-text {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-quart);
}

.cursor.active .cursor-outline {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    border-color: var(--c-gold);
}

.cursor.active .cursor-text {
    opacity: 1;
}

.cursor.active .cursor-dot {
    transform: scale(0);
}

@media (hover: none) {
    .cursor { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
    width: 300px;
}

.preloader-brand {
    font-family: var(--f-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--c-gold);
    margin-bottom: 40px;
}

.preloader-counter {
    font-family: var(--f-serif);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    color: var(--c-white);
    line-height: 1;
    margin-bottom: 30px;
}

.preloader-percent {
    font-size: 0.4em;
    color: var(--c-gray);
    vertical-align: super;
}

.preloader-line {
    width: 100%;
    height: 1px;
    background: var(--c-border);
    position: relative;
    overflow: hidden;
}

.preloader-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--c-gold);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: background 0.4s var(--ease-out-quart),
                padding 0.4s var(--ease-out-quart),
                backdrop-filter 0.4s var(--ease-out-quart);
}

.nav.scrolled {
    background: rgba(14, 18, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-logo-text {
    font-family: var(--f-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--c-white);
}

.nav-logo-dot {
    width: 6px;
    height: 6px;
    background: var(--c-gold);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--c-white-soft);
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--c-white);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu-btn {
    display: none;
    width: 32px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav-menu-lines {
    width: 100%;
    height: 100%;
    position: relative;
}

.nav-menu-lines span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--c-white);
    position: absolute;
    left: 0;
    transition: transform 0.4s var(--ease-out-expo), top 0.4s var(--ease-out-expo), opacity 0.3s;
}

.nav-menu-lines span:first-child { top: 3px; }
.nav-menu-lines span:last-child { top: 15px; width: 60%; margin-left: auto; transition: transform 0.4s var(--ease-out-expo), top 0.4s var(--ease-out-expo), width 0.4s var(--ease-out-expo), opacity 0.3s; }

.nav-menu-btn.active .nav-menu-lines span:first-child {
    top: 9px;
    transform: rotate(45deg);
}

.nav-menu-btn.active .nav-menu-lines span:last-child {
    top: 9px;
    width: 100%;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-menu-btn { display: block; }
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--c-dark);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px clamp(24px, 8vw, 60px) 60px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s var(--ease-out-expo) 0.1s,
                opacity 0.6s var(--ease-out-expo) 0.1s;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--f-serif);
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--c-white);
    display: block;
    overflow: hidden;
}

.mobile-menu-link span {
    display: block;
    transform: translateY(110%);
    transition: transform 0.5s var(--ease-out-expo);
}

.mobile-menu.active .mobile-menu-link span {
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) span { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) span { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) span { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) span { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) span { transition-delay: 0.35s; }

.mobile-menu-link:hover {
    color: var(--c-gold);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid var(--c-border);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo) 0.4s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-info p {
    font-size: 14px;
    color: var(--c-gray);
    margin-bottom: 4px;
}

.mobile-menu-social {
    display: flex;
    gap: 20px;
}

.mobile-menu-social a {
    font-size: 13px;
    color: var(--c-gray);
}

.mobile-menu-social a:hover {
    color: var(--c-gold);
}

/* ---------- Hero Section "” Collage Imersivo ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--c-dark);
}

/* Grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

/* ---- Collage images ---- */
/* 3D perspective on collage */
.hero-collage {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    will-change: transform;
    opacity: 0;
    transform-style: preserve-3d;
}

/* Ken Burns "” inner image slowly drifts and zooms */
.hero-img img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    display: block;
    position: relative;
    top: -5%;
    left: -5%;
}

/* Metallic shimmer sweep across each image */
.hero-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(90, 122, 98, 0.0) 30%,
        rgba(90, 122, 98, 0.25) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(90, 122, 98, 0.25) 55%,
        rgba(90, 122, 98, 0.0) 70%,
        transparent 80%
    );
    z-index: 3;
    pointer-events: none;
    animation: shimmerSweep 5s ease-in-out infinite;
    animation-delay: inherit;
}

@keyframes shimmerSweep {
    0%, 65%  { left: -100%; opacity: 0; }
    70%      { opacity: 1; }
    100%     { left: 200%; opacity: 0; }
}

/* ======= ORGANIC COLLAGE "” Editorial scattered layout =======
   Asymmetric, varied sizes, staggered positions
   Clear center zone for title
*/

/* "” Large anchors "” */
.hero-img--1  { top: 3%;   left: 2%;    width: 18%; height: 32%; border-radius: 6px; }
.hero-img--4  { top: 5%;   right: 3%;   width: 14%; height: 25%; border-radius: 6px; }

/* "” Small accents top "” */
.hero-img--2  { top: 2%;   left: 24%;   width: 11%; height: 15%; border-radius: 4px; }
.hero-img--3  { top: 4%;   right: 21%;  width: 13%; height: 11%; border-radius: 4px; }

/* "” Mid flanks (beside title) "” */
.hero-img--5  { top: 40%;  left: 1%;    width: 16%; height: 22%; border-radius: 6px; }
.hero-img--6  { top: 35%;  right: 1%;   width: 20%; height: 28%; border-radius: 6px; }

/* "” Bottom scattered "” */
.hero-img--7  { bottom: 4%;  left: 3%;    width: 12%; height: 20%; border-radius: 4px; }
.hero-img--8  { bottom: 8%;  left: 19%;   width: 15%; height: 13%; border-radius: 4px; }
.hero-img--9  { bottom: 2%;  right: 23%;  width: 10%; height: 16%; border-radius: 4px; }
.hero-img--10 { bottom: 6%;  right: 2%;   width: 17%; height: 22%; border-radius: 6px; }

/* ---- Dramatic golden glow + animated border ---- */
.hero-img::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    box-shadow:
        inset 0 0 0 1px rgba(90, 122, 98, 0.2),
        0 0 30px rgba(90, 122, 98, 0.0),
        0 0 80px rgba(90, 122, 98, 0.0);
    animation: pulseGlow 4s ease-in-out infinite;
    animation-delay: inherit;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            inset 0 0 0 1px rgba(90, 122, 98, 0.1),
            0 0 20px rgba(90, 122, 98, 0.0),
            0 0 50px rgba(90, 122, 98, 0.0);
    }
    50% {
        box-shadow:
            inset 0 0 0 1.5px rgba(90, 122, 98, 0.45),
            0 0 35px rgba(90, 122, 98, 0.18),
            0 0 80px rgba(90, 122, 98, 0.08);
    }
}

/* Staggered shimmer + glow delays */
.hero-img--1  { animation-delay: 0s; }
.hero-img--2  { animation-delay: 0.5s; }
.hero-img--3  { animation-delay: 1.0s; }
.hero-img--4  { animation-delay: 1.5s; }
.hero-img--5  { animation-delay: 2.0s; }
.hero-img--6  { animation-delay: 2.5s; }
.hero-img--7  { animation-delay: 3.0s; }
.hero-img--8  { animation-delay: 3.5s; }
.hero-img--9  { animation-delay: 4.0s; }
.hero-img--10 { animation-delay: 4.5s; }

/* ---- Golden Cursor Orb ---- */
.hero-cursor-orb {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(circle,
        rgba(90, 122, 98, 0.25) 0%,
        rgba(90, 122, 98, 0.08) 35%,
        rgba(90, 122, 98, 0.0) 70%
    );
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    background: rgba(90, 122, 98, 0.6);
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* ---- Animated Light Rays "” DRAMATIC ---- */
/* ---- Animated Light Rays "” DRAMATIC ---- */
.hero-light-rays {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
}

.hero-light-rays::before,
.hero-light-rays::after {
    content: '';
    position: absolute;
    top: -80%;
    width: 250px;
    height: 300%;
    background: linear-gradient(90deg,
        transparent,
        rgba(90, 122, 98, 0.06),
        rgba(90, 122, 98, 0.15),
        rgba(255, 255, 255, 0.08),
        rgba(90, 122, 98, 0.15),
        rgba(90, 122, 98, 0.06),
        transparent
    );
    transform: rotate(20deg);
    animation: lightSweep 6s ease-in-out infinite;
}

.hero-light-rays::after {
    width: 150px;
    animation: lightSweep 9s ease-in-out 2s infinite reverse;
    background: linear-gradient(90deg,
        transparent,
        rgba(90, 122, 98, 0.04),
        rgba(90, 122, 98, 0.12),
        rgba(255, 255, 255, 0.06),
        rgba(90, 122, 98, 0.12),
        rgba(90, 122, 98, 0.04),
        transparent
    );
    transform: rotate(-15deg);
}

@keyframes lightSweep {
    0%   { left: -20%; }
    100% { left: 120%; }
}

/* ---- Centered content ---- */
.hero-center {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.hero-overtitle {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    opacity: 0;
}

.hero-overtitle-line {
    width: 36px;
    height: 1px;
    background: var(--c-gold);
}

.hero-overtitle-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.hero-title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(80px, 18vw, 280px);
    line-height: 0.88;
    letter-spacing: 0.06em;
    color: var(--c-white);
    display: flex;
    gap: 0;
    mix-blend-mode: exclusion;
}

.hero-char {
    display: inline-block;
    overflow: hidden;
}

.hero-char span {
    display: inline-block;
    transform: translateY(120%);
    will-change: transform;
}

.hero-subtitle {
    margin-top: 32px;
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--c-white-soft);
    opacity: 0;
    text-transform: uppercase;
}

/* ---- Bottom bar ---- */
.hero-bar {
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px clamp(24px, 4vw, 60px);
    opacity: 0;
}

.hero-bar-left {
    position: absolute;
    left: clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-bar-coords {
    font-family: var(--f-serif);
    font-size: 13px;
    color: var(--c-white-soft);
    letter-spacing: 0.04em;
}

.hero-bar-sep {
    color: var(--c-gray);
    font-size: 10px;
}

.hero-bar-city {
    font-size: 12px;
    color: var(--c-gray);
    letter-spacing: 0.04em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    right: clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: var(--c-border);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gray);
}

/* Magnetic Button */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--c-gold);
    color: var(--c-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
    border-radius: inherit;
}

.btn-magnetic:hover::before {
    transform: scaleX(1);
}

.btn-magnetic-text,
.btn-magnetic-icon {
    position: relative;
    z-index: 1;
}

.btn-magnetic-icon svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-magnetic:hover .btn-magnetic-icon svg {
    transform: translate(3px, -3px);
}

/* ---------- Marquee ---------- */
.marquee-section {
    padding: 32px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
    background: var(--c-dark);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 300;
    color: var(--c-white-soft);
    letter-spacing: 0.02em;
}

.marquee-separator {
    color: var(--c-gold);
    font-size: 14px;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-label-number {
    font-family: var(--f-serif);
    font-size: 14px;
    color: var(--c-gold);
}

.section-label-line {
    width: 40px;
    height: 1px;
    background: var(--c-gold);
}

.section-label-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gray);
}

/* ---------- Section Titles ---------- */
.section-title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-title em,
.about-title em,
.contact-title em,
.showcase-title em,
.image-break-text em {
    font-style: italic;
    color: var(--c-gold);
}

.section-subtitle {
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--c-gray);
    max-width: 450px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: clamp(60px, 6vw, 100px);
}

/* ---------- About Section ---------- */
.about {
    background: var(--c-dark);
    overflow: visible;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* --- Left: sticky image --- */
.about-left {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.about-image-wrap {
    width: 100%;
    height: 100%;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s linear;
}

.about-image-wrap.revealed img {
    transform: scale(1);
}

/* --- Right: scrollable content --- */
.about-right {
    padding: clamp(80px, 8vw, 120px) clamp(40px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(40px, 4vw, 60px);
}

.about-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gold);
    border: 1px solid rgba(90, 122, 98, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
}

/* Quote */
.about-quote {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--c-white);
    margin: 0 0 clamp(32px, 3vw, 48px);
    padding: 0;
    border: none;
}

.about-quote em {
    color: var(--c-gold);
    font-style: italic;
}

/* Divider */
.about-divider {
    width: 100%;
    height: 1px;
    background: var(--c-border);
    margin-bottom: clamp(32px, 3vw, 48px);
    transform-origin: left;
}

/* Text */
.about-text p {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.85;
    color: var(--c-gray);
    margin-bottom: 16px;
    max-width: 520px;
}

/* Counters */
.about-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: clamp(40px, 4vw, 56px);
    padding-top: clamp(32px, 3vw, 48px);
    border-top: 1px solid var(--c-border);
}

.about-counter {
    text-align: center;
    position: relative;
}

.about-counter:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--c-border);
}

.about-stat-number {
    font-family: var(--f-serif);
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 300;
    line-height: 1;
    color: var(--c-gold);
    display: block;
}

.about-stat-number::after {
    content: '+';
    font-size: 0.5em;
}

.about-counter-label {
    font-size: 10px;
    color: var(--c-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
    line-height: 1.5;
}

/* CTA link */
.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: clamp(36px, 3vw, 48px);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold);
    text-decoration: none;
    transition: gap 0.4s var(--ease-out-expo);
}

.about-link:hover {
    gap: 16px;
}

.about-link svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.about-link:hover svg {
    transform: translate(4px, -4px);
}

/* ---------- Properties Section ---------- */
.properties {
    padding: var(--s-section) 0;
    background: var(--c-cream);
    color: var(--c-dark);
}

.properties .section-label-number,
.properties .section-label-line {
    color: var(--c-gold);
    background: var(--c-gold);
}

.properties .section-label-text {
    color: var(--c-navy);
}

.properties .section-title {
    color: var(--c-dark);
}

.properties .section-subtitle {
    color: var(--c-navy);
    opacity: 0.6;
}

/* --- Interactive Accordion --- */
.prop-accordion {
    display: flex;
    height: clamp(500px, 70vh, 750px);
    gap: 6px;
    padding: 0 clamp(24px, 4vw, 60px);
    margin-top: clamp(40px, 4vw, 60px);
}

.prop-panel {
    position: relative;
    flex: 0.8;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.prop-panel.is-active {
    flex: 5;
}

.prop-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.prop-panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.4s var(--ease-out-expo);
}

.prop-panel.is-active .prop-panel-bg img {
    transform: scale(1);
}

/* Dark overlay */
.prop-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(14, 18, 16, 0.9) 0%,
        rgba(14, 18, 16, 0.35) 45%,
        rgba(14, 18, 16, 0.15) 100%
    );
    transition: background 0.7s ease;
    pointer-events: none;
}

.prop-panel:not(.is-active)::before {
    background: rgba(14, 18, 16, 0.65);
}

/* ---- Collapsed strip ---- */
.prop-panel-strip {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.4s ease 0.1s;
    pointer-events: none;
}

.prop-panel.is-active .prop-panel-strip {
    opacity: 0;
    transition: opacity 0.3s ease 0s;
}

.prop-panel-strip-num {
    font-family: var(--f-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 300;
    color: var(--c-gold);
    line-height: 1;
}

.prop-panel-strip-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--f-serif);
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ---- Expanded content ---- */
.prop-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: clamp(28px, 3.5vw, 48px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 20px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
    pointer-events: none;
}

.prop-panel.is-active .prop-panel-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
    pointer-events: auto;
}

.prop-panel-num {
    font-family: var(--f-serif);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    position: absolute;
    top: clamp(20px, 2.5vw, 36px);
    right: clamp(24px, 3vw, 40px);
}

.prop-panel-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 14px;
    background: var(--c-gold);
    color: var(--c-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
}

.prop-panel-title {
    font-family: var(--f-serif);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--c-white);
    letter-spacing: -0.02em;
}

.prop-panel-loc {
    display: block;
    font-size: clamp(11px, 0.9vw, 13px);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.prop-panel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: clamp(14px, 1.8vw, 22px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.prop-panel-specs {
    display: flex;
    gap: clamp(12px, 1.4vw, 20px);
}

.prop-panel-specs span {
    font-size: clamp(11px, 0.85vw, 13px);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.prop-panel-price {
    font-family: var(--f-serif);
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 400;
    color: var(--c-gold);
}

.prop-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-white);
    transition: color 0.3s ease;
    width: fit-content;
}

.prop-panel-link svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.prop-panel-link:hover {
    color: var(--c-gold);
}

.prop-panel-link:hover svg {
    transform: translate(3px, -3px);
}

/* Button Outline */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: 1px solid var(--c-dark);
    color: var(--c-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease-out-expo);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
    border-radius: inherit;
}

.btn-outline:hover {
    color: var(--c-white);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline span,
.btn-outline svg {
    position: relative;
    z-index: 1;
}

.btn-outline svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-outline:hover svg {
    transform: translate(3px, -3px);
}

.properties-cta {
    text-align: center;
}

/* ---------- Showcase (Horizontal Scroll) ---------- */
.showcase {
    padding: var(--s-section) 0 0;
    background: var(--c-dark);
    overflow: hidden;
}

.showcase-header {
    margin-bottom: clamp(40px, 4vw, 60px);
}

.showcase-title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.showcase-track-wrapper {
    overflow: hidden;
    padding-bottom: var(--s-section);
}

.showcase-track {
    display: flex;
    gap: 24px;
    padding: 0 clamp(24px, 4vw, 60px);
    will-change: transform;
}

.showcase-item {
    flex-shrink: 0;
    width: clamp(300px, 30vw, 450px);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.showcase-item-image {
    width: 100%;
    height: clamp(350px, 35vw, 550px);
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.showcase-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.showcase-item:hover .showcase-item-image img {
    transform: scale(1.08);
}

.showcase-item-info {
    padding: 20px 4px;
}

.showcase-item-number {
    font-family: var(--f-serif);
    font-size: 14px;
    color: var(--c-gold);
    display: block;
    margin-bottom: 8px;
}

.showcase-item-info h3 {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    margin-bottom: 6px;
}

.showcase-item-info p {
    font-size: 13px;
    color: var(--c-gray);
}

/* ---------- Expertise Section ---------- */
.expertise {
    padding: var(--s-section) 0;
    background: var(--c-cream);
    color: var(--c-dark);
}

.expertise .section-label-number,
.expertise .section-label-line {
    color: var(--c-gold);
    background: var(--c-gold);
}

.expertise .section-label-text {
    color: var(--c-navy);
}

.expertise .section-title {
    color: var(--c-dark);
}

.expertise-header {
    margin-bottom: clamp(60px, 6vw, 100px);
}

.expertise-list {
    display: flex;
    flex-direction: column;
}

.expertise-item {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(28px, 3vw, 48px) 0;
    border-top: 1px solid var(--c-border-dark);
    position: relative;
    cursor: pointer;
}

.expertise-item:last-child {
    border-bottom: 1px solid var(--c-border-dark);
}

.expertise-item-number {
    font-family: var(--f-serif);
    font-size: 16px;
    color: var(--c-gold);
}

.expertise-item-title {
    font-family: var(--f-serif);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--c-dark);
    margin-bottom: 8px;
    transition: color 0.3s var(--ease-out-quart);
}

.expertise-item:hover .expertise-item-title {
    color: var(--c-gold);
}

.expertise-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-gray);
    max-width: 500px;
}

.expertise-item-image {
    width: 200px;
    height: 140px;
    overflow: hidden;
    border-radius: var(--radius);
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.4s var(--ease-out-expo),
                transform 0.4s var(--ease-out-expo);
}

.expertise-item:hover .expertise-item-image {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.expertise-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Image Break ---------- */
.image-break {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.image-break-inner {
    position: absolute;
    inset: -100px;
}

.image-break-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 18, 16, 0.5);
}

.image-break-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(24px, 4vw, 60px);
}

.image-break-text h2 {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-white);
}

/* ---------- Testimonials Section ---------- */
.testimonials {
    padding: var(--s-section) 0;
    background: var(--c-dark);
}

.testimonials .section-header {
    margin-bottom: clamp(40px, 4vw, 60px);
}

.testimonials-slider {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out-expo),
                transform 0.6s var(--ease-out-expo);
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    color: var(--c-gold);
    margin-bottom: 24px;
}

.testimonial-quote p {
    font-family: var(--f-serif);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: var(--c-white);
    margin-bottom: 32px;
}

.testimonial-name {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-white);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--c-gray);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    transition: background 0.3s var(--ease-out-quart),
                border-color 0.3s var(--ease-out-quart);
}

.testimonial-nav-btn:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-dark);
}

.testimonial-counter {
    font-family: var(--f-serif);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-counter-divider {
    color: var(--c-gray);
}

#testimonial-total {
    color: var(--c-gray);
}

/* ---------- Contact Section ---------- */
.contact {
    padding: var(--s-section) 0;
    background: var(--c-cream);
    color: var(--c-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
}

.contact-title {
    font-family: var(--f-serif);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    color: var(--c-dark);
}

.contact .section-label-number,
.contact .section-label-line {
    color: var(--c-gold);
    background: var(--c-gold);
}

.contact .section-label-text {
    color: var(--c-navy);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gray);
    display: block;
    margin-bottom: 6px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 16px;
    color: var(--c-dark);
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--c-gold);
}

/* ---------- Contact Form ---------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gray);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(14, 18, 16, 0.15);
    padding: 10px 0;
    font-family: var(--f-sans);
    font-size: 16px;
    color: var(--c-dark);
    outline: none;
    transition: border-color 0.3s var(--ease-out-quart);
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--c-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    transform: scaleX(1);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--c-dark);
    color: var(--c-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
    border-radius: inherit;
}

.btn-submit:hover::before {
    transform: scaleX(1);
}

.btn-submit span,
.btn-submit svg {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    color: var(--c-dark);
}

.btn-submit svg {
    transition: transform 0.3s var(--ease-out-expo), color 0.3s;
}

.btn-submit:hover svg {
    transform: translate(3px, -3px);
}

/* ---------- Footer ---------- */
.footer {
    padding: clamp(60px, 6vw, 100px) 0 30px;
    background: var(--c-dark);
    border-top: 1px solid var(--c-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: clamp(40px, 4vw, 60px);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--c-border);
}

.footer-logo {
    font-family: var(--f-serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--c-gold);
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--c-gray);
    max-width: 250px;
}

.footer-links-grid {
    display: flex;
    gap: clamp(40px, 4vw, 80px);
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-white-soft);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--c-gray);
    margin-bottom: 10px;
    transition: color 0.3s var(--ease-out-quart);
}

.footer-col a:hover {
    color: var(--c-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--c-gray);
}

.footer-bottom a {
    color: var(--c-gold);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--c-gold-light);
}

/* ---------- Reveal Animations (Initial States) ---------- */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-image {
    clip-path: inset(100% 0 0 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .hero-img--3,
    .hero-img--9 {
        display: none;
    }

    .hero-img--1  { top: 3%; left: 2%;  width: 20%; height: 26%; }
    .hero-img--2  { top: 2%; left: 26%; width: 13%; height: 14%; }
    .hero-img--4  { top: 5%; right: 2%; width: 17%; height: 22%; }
    .hero-img--5  { top: 38%; left: 1%; width: 18%; height: 20%; }
    .hero-img--6  { top: 34%; right: 1%; width: 22%; height: 24%; }
    .hero-img--7  { bottom: 4%; left: 2%;  width: 15%; height: 18%; }
    .hero-img--8  { bottom: 8%; left: 20%; width: 16%; height: 12%; }
    .hero-img--10 { bottom: 5%; right: 2%; width: 18%; height: 20%; }

    .about-split {
        grid-template-columns: 45% 1fr;
    }

    .about-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-counter:not(:last-child)::after {
        display: none;
    }

    .prop-accordion {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .prop-panel {
        flex: none !important;
        height: 100px;
        border-radius: var(--radius);
        transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .prop-panel.is-active {
        height: clamp(380px, 55vh, 520px);
    }

    .prop-panel-strip {
        flex-direction: row;
        gap: 14px;
    }

    .prop-panel-strip-name {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        grid-template-columns: 40px 1fr;
    }

    .expertise-item-image {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-img--1 {
        top: 3%; left: 2%; width: 22%; height: 18%;
    }
    .hero-img--2,
    .hero-img--3,
    .hero-img--8,
    .hero-img--9 {
        display: none;
    }
    .hero-img--4 {
        top: 4%; right: 2%; width: 20%; height: 17%;
    }
    .hero-img--5 {
        top: 38%; left: 1%; width: 22%; height: 15%;
    }
    .hero-img--6 {
        top: 36%; right: 1%; width: 24%; height: 18%;
    }
    .hero-img--7 {
        bottom: 5%; left: 2%; width: 20%; height: 16%;
    }
    .hero-img--10 {
        bottom: 4%; right: 2%; width: 22%; height: 18%;
    }

    .hero-title {
        font-size: clamp(60px, 16vw, 120px);
    }

    .hero-bar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px 20px;
    }

    .hero-bar-left {
        order: 1;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-left {
        position: relative;
        height: 50vh;
    }

    .about-right {
        padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
    }

    .about-quote {
        font-size: clamp(28px, 7vw, 44px);
    }

    .about-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-counter:not(:last-child)::after {
        display: none;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-grid {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-counters {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat-number {
        font-size: 24px;
    }

    .expertise-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .expertise-item-number {
        font-size: 13px;
    }
}
