:root {
    --primary-gold: #c5a97d;
    --gold-deep: #967645;
    --dark-bg: #0f0f0f;
    --light-bg: #f9f7f4;
    --light-surface: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.dark-mode {
    --light-bg: #121212;
    --light-surface: #181818;
    --text-main: #ededed;
    --text-muted: #afafaf;
    --border-color: #2c2c2c;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light-surface);
    letter-spacing: -0.01em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

a,
button,
i {
    transition: all 0.3s ease;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}
::selection{
    background:var(--primary-gold);
    color:#ffffff;
}


/* ------------------------------
   02. Loader
------------------------------ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--light-surface);
    z-index: 9999;
    transition: opacity 0.6s ease;
}

body.loaded #page-loader {
    opacity: 0;
    pointer-events: none;
}

/* ------------------------------
   03. Header and Navigation
------------------------------ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10%;
    min-height: 80px;
    background: rgba(249, 247, 244, 0.78);
    position: sticky;
    top: 0;
    z-index: 3000;
    border-bottom: 1px solid rgba(197, 169, 125, 0.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    backdrop-filter: blur(18px) saturate(1.25);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.035);
    transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}



@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    header {
        background: rgba(249, 247, 244, 0.96);
    }

    body.dark-mode header {
        background: rgba(18, 18, 18, 0.96);
    }
}

header::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 169, 125, 0.6), transparent);
    opacity: 0.6;
}

header.scrolled {
    background: rgba(249, 247, 244, 0.90);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}

body.dark-mode header {
    background: rgba(18, 18, 18, 0.78);
    border-bottom: 1px solid rgba(197, 169, 125, 0.14);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
}

body.dark-mode header.scrolled {
    background: rgba(18, 18, 18, 0.92);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.34);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header.scrolled .logo-icon {
    width: 44px;
    height: 44px;
}

.logo-text h1 {
    font-size: 21px;
    letter-spacing: 2.6px;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 600;
}

header.scrolled .logo-text h1 {
    font-size: 21px;
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    position: relative;
    padding: 9px 4px;
    letter-spacing: 1.2px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

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

nav a:hover::after,
nav a.active-link::after {
    width: 70%;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 28px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(197, 169, 125, 0.28);
    background: rgba(255, 255, 255, 0.38);
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    backdrop-filter: blur(10px);
}

.icon-btn:hover {
    color: #ffffff;
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 28px rgba(197, 169, 125, 0.28);
}

body.dark-mode .icon-btn {
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle,
.theme-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.menu-toggle {
    display: none !important;
}

.mobile-nav {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    background: var(--light-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 5%;
    z-index: 2999;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav li:last-child a {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--primary-gold);
}

/* ------------------------------
   04. Shared Utilities
------------------------------ */
.section-padding {
    padding: 90px 8%;
    background: var(--light-surface);
}

.section-soft {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fbf8f2 0%, #f4eee4 100%);
    border-bottom: 1px solid rgba(150, 118, 69, 0.16);
}

body.dark-mode .section-soft {
    background: linear-gradient(180deg, #141414 0%, #101010 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
}

.section-header h2,
.section-title {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 300;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

.section-tag,
.mini-tag {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
}

.view-all {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.about-intro.reveal { transition-delay: 0.1s; }
.about-main-card.reveal { transition-delay: 0.2s; }
.about-side-card.reveal { transition-delay: 0.3s; }

/* ------------------------------
   05. Buttons
------------------------------ */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    min-width: 165px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.btn-premium span {
    position: relative;
    z-index: 2;
}

.btn-premium.primary {
    background: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
}

.btn-premium.primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(197, 169, 125, 0.25);
}

.btn-premium.secondary {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(43, 43, 43, 0.18);
    backdrop-filter: blur(6px);
}

.btn-premium.secondary:hover {
    color: #ffffff;
    background: var(--gold-deep);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 28px rgba(197, 169, 125, 0.35);
}

.btn-premium::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: 0.5s;
}

.btn-premium:hover::after {
    left: 100%;
}

body.dark-mode .btn-premium.secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

body.dark-mode .btn-premium.secondary:hover {
    background: var(--primary-gold);
    color: #ffffff;
}

/* ------------------------------
   06. Home Hero
------------------------------ */
.hero-clean {
    position: relative;
    min-height: 92vh;
    padding: 0 8%;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background:
        radial-gradient(circle at 78% 18%, rgba(197, 169, 125, 0.20), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(96, 108, 56, 0.12), transparent 26%),
        linear-gradient(135deg, #f6f0e6 0%, #fffaf2 48%, #f2eadc 100%);
    backdrop-filter: saturate(1.1);
}

body.dark-mode .hero-clean {
    background:
        radial-gradient(circle at 78% 18%, rgba(197, 169, 125, 0.16), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(96, 108, 56, 0.10), transparent 26%),
        linear-gradient(135deg, #101010 0%, #191714 52%, #111111 100%);
}

.hero-clean::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 141, 87, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 141, 87, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
    pointer-events: none;
}

.hero-clean::after {
    content: "";
    position: absolute;
    right: -9%;
    top: 8%;
    width: 48vw;
    height: 48vw;
    border: 1px solid rgba(176, 141, 87, 0.18);
    transform: rotate(18deg);
    pointer-events: none;
}

.hero-clean-content {
    max-width: 920px;
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

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

.hero-clean h1 {
    max-width: 900px;
    margin-bottom: 32px;
    color: #2b2b2b;
    font-size: clamp(48px, 6.6vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 250;
}

body.dark-mode .hero-clean h1 {
    color: #ffffff;
}

.hero-clean h1 span {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
    letter-spacing: -0.015em;
    margin-left: 10px;
}

.hero-clean p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 34px;
}

body.dark-mode .hero-clean p {
    color: rgba(255, 255, 255, 0.82);
}

.hero-highlight {
    opacity: 0;
    transform: translateY(10px);
    animation: revealWord 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    max-width: 720px;
    gap: 14px;
    border: none;
}

.hero-metrics div {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(150, 118, 69, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.hero-metrics strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 5px;
}

.hero-metrics span {
    display: block;
    font-size: 12px;
    line-height: 1.55;
    color: #5f5f5f;
}

body.dark-mode .hero-metrics div {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .hero-metrics span {
    color: rgba(255, 255, 255, 0.68);
}

.hero-signature {
    position: absolute;
    right: 7%;
    bottom: 58px;
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    animation: signatureReveal 1.2s ease forwards;
    animation-delay: 0.9s;
}

.hero-signature span {
    display: block;
    font-size: clamp(72px, 10vw, 160px);
    line-height: 0.85;
    font-weight: 600;
    letter-spacing: -0.06em;
    color: var(--gold-deep);
}

.hero-signature small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
}
/* Project Page Watermark */
.project-detail-hero {
    position: relative;
    overflow: hidden;
}

.project-signature {
    position: absolute;
    right: 6%;
    bottom: 40px;
    text-align: right;
    pointer-events: none;
    opacity: 0.08; /* control visibility */
}

.project-signature span {
    display: block;
    font-size: clamp(70px, 10vw, 160px);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: var(--gold-deep);
    line-height: 0.85;
}

.project-signature small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
}
/* ------------------------------
   07. Trust Strip
------------------------------ */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 8%;
    background: var(--light-surface);
    border-bottom: 1px solid var(--border-color);
}

.trust-strip span {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ------------------------------
   08. Home About Section
------------------------------ */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 80px 8%;
    background:
        radial-gradient(circle at 12% 15%, rgba(197, 169, 125, 0.12), transparent 28%),
        linear-gradient(180deg, var(--light-surface) 0%, var(--light-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

body.dark-mode .about-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(197, 169, 125, 0.10), transparent 28%),
        linear-gradient(180deg, #181818 0%, #121212 100%);
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 141, 87, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 141, 87, 0.045) 1px, transparent 1px);
    background-size: 82px 82px;
    pointer-events: none;
}

.about-shell {
    position: relative;
    z-index: 2;
}

.about-intro {
    max-width: 820px;
    margin-bottom: 46px;
}

.about-intro h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 300;
    margin-bottom: 18px;
}

.about-intro p {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
}

.about-intro h2 span,
.about-main-card h3 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
}

.about-luxury-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 24px;
}

.about-main-card,
.about-side-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(150, 118, 69, 0.16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-main-card:hover,
.about-side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

body.dark-mode .about-main-card,
body.dark-mode .about-side-card {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
}

.about-main-card {
    position: relative;
    padding: 54px;
}

.about-main-card::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 46px;
    width: 46px;
    height: 1px;
    background: var(--primary-gold);
    opacity: 0.7;
}

.about-main-card h3 {
    max-width: 760px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.025em;
    font-weight: 400;
    margin-bottom: 18px;
}

.about-main-card p {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 34px;
}

.about-main-card .mini-tag {
    display: inline-block;
    margin-top: 18px;
}

.about-line-list {
    display: grid;
    gap: 18px;
    border-top: 1px solid rgba(150, 118, 69, 0.18);
    padding-top: 28px;
}

.about-line-list div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
}

.about-line-list strong {
    color: var(--gold-deep);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-line-list span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-side-card {
    position: relative;
    padding: 46px 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.about-side-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(150, 118, 69, 0.14);
    pointer-events: none;
}

.about-signature-mark {
    position: absolute;
    top: 10px;
    right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 150px;
    line-height: 1;
    color: var(--gold-deep);
    opacity: 0.08;
    pointer-events: none;
}

.about-stat {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(150, 118, 69, 0.18);
    padding-bottom: 24px;
}

.about-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 300;
    color: var(--gold-deep);
    letter-spacing: -0.04em;
}

.about-stat span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.about-stat .counter {
    display: inline-block;
}

.about-side-card p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
}

/* ------------------------------
   09. Services Section
------------------------------ */
.services-section {
    position: relative;
    overflow: hidden;
    padding: 90px 8%;
    background:
        radial-gradient(circle at 88% 12%, rgba(197, 169, 125, 0.12), transparent 28%),
        linear-gradient(180deg, var(--light-bg) 0%, var(--light-surface) 100%);
    border-bottom: 1px solid var(--border-color);
}

body.dark-mode .services-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(197, 169, 125, 0.10), transparent 28%),
        linear-gradient(180deg, #121212 0%, #181818 100%);
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 141, 87, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 141, 87, 0.04) 1px, transparent 1px);
    background-size: 82px 82px;
    pointer-events: none;
}

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

.services-header {
    max-width: 820px;
    margin-bottom: 46px;
}

.services-header h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 300;
    margin-bottom: 18px;
}

.services-header h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
}

.services-header p {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
}

.services-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(150, 118, 69, 0.18);
    border-left: 1px solid rgba(150, 118, 69, 0.18);
}

.service-lux-card {
    position: relative;
    min-height: 300px;
    padding: 34px 30px;
    background: rgba(255, 255, 255, 0.52);
    border-right: 1px solid rgba(150, 118, 69, 0.18);
    border-bottom: 1px solid rgba(150, 118, 69, 0.18);
    overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

body.dark-mode .service-lux-card {
    background: rgba(255, 255, 255, 0.04);
}

.service-lux-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.07);
    border-color: rgba(197, 169, 125, 0.35);
}

body.dark-mode .service-lux-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.service-lux-card span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1;
    color: var(--gold-deep);
    opacity: 0.28;
    margin-bottom: 34px;
}

.service-lux-card i {
    color: var(--primary-gold);
    font-size: 28px;
    margin-bottom: 22px;
}

.service-lux-card h4 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.service-lux-card h4::after {
    content: "→";
    margin-left: 8px;
    opacity: 0;
    transition: 0.3s ease;
}

.service-lux-card:hover h4::after {
    opacity: 1;
    transform: translateX(4px);
}

.service-lux-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
}

.service-lux-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(150, 118, 69, 0.16);
    transform: rotate(20deg);
    transition: 0.4s ease;
}

.service-lux-card:hover::after {
    right: -30px;
    bottom: -30px;
}

.featured-service {
    background: linear-gradient(145deg, rgba(197, 169, 125, 0.16), rgba(255, 255, 255, 0.58));
}

body.dark-mode .featured-service {
    background: linear-gradient(145deg, rgba(197, 169, 125, 0.12), rgba(255, 255, 255, 0.04));
}

.services-promise {
    margin-top: 28px;
    padding: 34px 36px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(150, 118, 69, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.045);
    backdrop-filter: blur(10px);
}

body.dark-mode .services-promise {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
}

.services-promise span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.services-promise h3 {
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.025em;
}

.services-promise p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

/* ------------------------------
   10. Home Featured and Project Cards
------------------------------ */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: stretch;
    margin-bottom: 50px;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(150, 118, 69, 0.16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    display: flex;
}

.featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 40%, rgba(0, 0, 0, 0.42) 100%);
    pointer-events: none;
}

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

.featured-image-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 18px 22px;
    min-width: 240px;
    background: rgba(15, 15, 15, 0.78);
    border: 1px solid rgba(197, 169, 125, 0.28);
    backdrop-filter: blur(10px);
}

.featured-image-label span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.featured-image-label strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.featured-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 56px 52px 48px;
    background: #fffdf8;
    border: 1px solid rgba(150, 118, 69, 0.18);
    border-left: 3px solid var(--primary-gold);
}

body.dark-mode .featured-content {
    background: #171717;
    border-color: rgba(255, 255, 255, 0.08);
}

.featured-content::before {
    content: "";
    position: absolute;
    left: 52px;
    right: 52px;
    top: 28px;
    height: 1px;
    background: rgba(150, 118, 69, 0.22);
}

.featured-content h2 {
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 300;
    margin: 10px 0 16px;
}

.featured-content h2 span,
.section-header h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 26px;
    max-width: 420px;
}

.featured-content .btn-premium {
    margin-top: 26px;
    align-self: flex-start;
}

.project-index {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-deep);
    opacity: 0.7;
}

.luxury-detail-list {
    display: grid;
    gap: 0;
    margin: 28px 0 34px;
    border-top: 1px solid rgba(150, 118, 69, 0.22);
    border-bottom: 1px solid rgba(150, 118, 69, 0.22);
}

.luxury-detail-list div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(150, 118, 69, 0.10);
}

.luxury-detail-list div:hover {
    padding-left: 6px;
}

.luxury-detail-list div:last-child {
    border-bottom: none;
}

.luxury-detail-list strong {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-deep);
    opacity: 0.7;
}

.luxury-detail-list span {
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.75;
    max-width: 420px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    position: relative;
    background: var(--light-surface);
    border: 1px solid rgba(150, 118, 69, 0.14);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease, opacity 0.3s ease;
}

body.dark-mode .project-card {
    background: rgba(255, 255, 255, 0.035);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(150, 118, 69, 0.12);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.07);
    border-color: rgba(197, 169, 125, 0.38);
}

body.dark-mode .project-card:hover {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

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

.project-card h3::after,
.project-info h3::after {
    content: " →";
    opacity: 0;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.project-card:hover h3::after,
.project-card:hover .project-info h3::after {
    opacity: 1;
    margin-left: 10px;
}

.project-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
    opacity: 0.6;
    transition: 0.3s ease;
}

.project-card:hover .project-img::after {
    opacity: 0.85;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info {
    padding: 28px 26px 30px;
    position: relative;
	display: flex;
    flex-direction: column;
    align-items: flex-start; /* important */
}

.project-info small {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    font-size: 10px;
}

.project-info h3 {
    font-size: 21px;
    line-height: 1.25;
    margin: 10px 0 10px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.project-info p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 92%;
}

.project-info .location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.project-meta,
.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.project-meta span {
    font-size: 10px;
    padding: 5px 9px;
    border: 1px solid rgba(150, 118, 69, 0.18);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

body.dark-mode .project-meta span {
    background: rgba(255, 255, 255, 0.04);
}

.project-highlights span {
    font-size: 11px;
    padding: 5px 10px;
    background: rgba(197, 169, 125, 0.12);
    color: var(--gold-deep);
    letter-spacing: 0.5px;
}

/* ------------------------------
   11. Project Page Hero
------------------------------ */
.projects-hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 120px 8% 110px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(115deg, rgba(255, 250, 242, 0.96) 0%, rgba(246, 240, 230, 0.96) 52%, rgba(234, 224, 207, 0.94) 100%);
}

body.dark-mode .projects-hero {
    background: linear-gradient(115deg, #101010 0%, #181713 55%, #111111 100%);
}

.projects-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(150, 118, 69, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 118, 69, 0.07) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.32), transparent 72%);
    pointer-events: none;
}

.projects-hero::after {
    content: "";
    position: absolute;
    right: -12vw;
    top: -16vw;
    width: 42vw;
    height: 42vw;
    border: 1px solid rgba(150, 118, 69, 0.18);
    transform: rotate(22deg);
    pointer-events: none;
}

.projects-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 90px;
    align-items: end;
}

.projects-hero-left {
    max-width: 900px;
}

.projects-hero-left h1 {
    font-size: clamp(54px, 7vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 280;
    margin-bottom: 30px;
}

.projects-hero-left h1 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
    letter-spacing: -0.035em;
}

.projects-hero-left p {
    max-width: 640px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 36px;
}

.projects-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.projects-hero-right {
    border-top: 1px solid rgba(150, 118, 69, 0.28);
    border-bottom: 1px solid rgba(150, 118, 69, 0.28);
}

.hero-index-line {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid rgba(150, 118, 69, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-index-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.6s ease;
}

.hero-index-line:hover::after {
    width: 100%;
}

.hero-index-line:last-child {
    border-bottom: none;
}

.hero-index-line span {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1;
    color: var(--gold-deep);
    opacity: 0.75;
}

.hero-index-line strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.projects-hero-mark {
    position: absolute;
    left: 8%;
    bottom: -10px;
    font-size: clamp(72px, 12vw, 180px);
    line-height: 0.75;
    font-weight: 700;
    letter-spacing: -0.08em;
    color: var(--gold-deep);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* ------------------------------
   12. Project Page Sections
------------------------------ */
.featured-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 54px;
}

.featured-heading h2 {
    max-width: 720px;
    font-size: clamp(46px, 5.5vw, 82px);
    line-height: 0.94;
    letter-spacing: -0.065em;
    font-weight: 250;
}

.featured-heading h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background: var(--primary-gold);
    margin-top: 18px;
}

.featured-heading h2 span,
.project-grid-heading h2 span,
.cta-inner h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-gold);
    letter-spacing: -0.035em;
}

.featured-heading p {
    max-width: 480px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    padding-top: 18px;
}

.project-grid-heading {
    max-width: 860px;
    margin-bottom: 36px;
}

.project-grid-heading h2 {
    font-size: clamp(36px, 4.5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 280;
    margin-bottom: 18px;
}

.project-grid-heading p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
}

.project-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
    align-items: center;
}

.filter-btn {
    border: 1px solid rgba(150, 118, 69, 0.22);
    background: rgba(255, 255, 255, 0.48);
    color: var(--text-main);
    padding: 12px 20px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

body.dark-mode .filter-btn {
    background: rgba(255, 255, 255, 0.045);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold-deep);
    color: #ffffff;
    border-color: var(--gold-deep);
    box-shadow: 0 12px 28px rgba(150, 118, 69, 0.18);
}

.project-preview {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(150, 118, 69, 0.18);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

body.dark-mode .project-preview {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.08);
}

.preview-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 10vw, 140px);
    line-height: 0.85;
    color: var(--primary-gold);
    opacity: 0.25;
}

.project-preview h3 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.project-preview p {
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 520px;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 105px 8%;
    background:
        radial-gradient(circle at 85% 20%, rgba(197, 169, 125, 0.16), transparent 28%),
        linear-gradient(135deg, #0f0f0f 0%, #17140f 100%);
    color: #ffffff;
}

.cta-section::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(197, 169, 125, 0.24);
    transform: rotate(20deg);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-inner h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.02;
    font-weight: 280;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}

.cta-inner p {
    max-width: 620px;
    color: #b8b8b8;
    line-height: 1.9;
    margin-bottom: 34px;
}

/* ------------------------------
   13. Footer
------------------------------ */
footer {
    background-color: var(--dark-bg);
    color: #cccccc;
    padding: 80px 8% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 12px 28px rgba(197, 169, 125, 0.18));
}

.footer-logo h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo p,
.footer-col ul a,
.contact-info p {
    color: #a5a5a5;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

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

.contact-info p {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.social-row {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-row a {
    color: #c8c8c8;
    text-decoration: none;
}

.social-row a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777777;
}

/* ------------------------------
   14. Animations
------------------------------ */
@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes signatureReveal {
    to {
        opacity: 0.11;
        transform: translateY(0);
    }
}

@keyframes signatureRevealDark {
    to {
        opacity: 0.08;
        transform: translateY(0);
    }
}

body.dark-mode .hero-signature {
    opacity: 0;
    animation: signatureRevealDark 1.2s ease forwards;
    animation-delay: 0.9s;
}

/* ------------------------------
   15. Responsive
------------------------------ */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    header {
        min-height: 79px;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex !important;
    }

    .hero-clean {
        min-height: auto;
    }

    .hero-clean-inner {
        min-height: 82vh;
    }

    .hero-clean-content {
        padding: 92px 0;
    }

    .hero-clean::after {
        width: 70vw;
        height: 70vw;
        right: -32%;
        top: 18%;
    }

    .about-luxury-grid,
    .featured-project,
    .project-preview {
        grid-template-columns: 1fr;
    }

    .about-section,
    .services-section {
        padding: 80px 8%;
    }

    .about-side-card {
        min-height: 280px;
    }

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

    .featured-image {
        min-height: 420px;
    }

    .featured-content {
        padding: 46px 32px;
    }

    .featured-content::before {
        left: 32px;
        right: 32px;
    }

    .projects-hero {
        min-height: auto;
        padding: 95px 8% 90px;
    }

    .projects-hero-inner {
        grid-template-columns: 1fr;
        gap: 54px;
        align-items: start;
    }

    .projects-hero-right {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 18px 5%;
    }

    .featured-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 36px;
    }

    .featured-heading h2 {
        font-size: 38px;
        line-height: 1.05;
    }

    .luxury-detail-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .services-promise {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 16px 5%;
    }

    .hero-clean,
    .section-padding,
    .about-section,
    .services-section,
    .projects-hero,
    .cta-section,
    footer {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-clean-content {
        position: relative;
        z-index: 2;
        padding: 76px 0 64px;
    }

    .hero-clean h1,
    .projects-hero-left h1 {
        font-size: 44px;
        line-height: 1.03;
    }

    .hero-clean p,
    .projects-hero-left p {
        font-size: 15px;
    }

    .hero-actions,
    .projects-hero-actions {
        flex-direction: column;
        margin-bottom: 38px;
    }

    .btn-premium {
        width: 100%;
    }

    .hero-metrics,
    .projects-grid,
    .services-luxury-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-signature {
        right: -8%;
        bottom: 22px;
        z-index: 1;
        opacity: 0;
        transform: translateY(10px);
        animation: signatureRevealMobile 1.2s ease forwards;
        animation-delay: 0.9s;
    }

    body.dark-mode .hero-signature {
        animation: signatureRevealMobileDark 1.2s ease forwards;
        animation-delay: 0.9s;
    }

    .hero-signature span {
        font-size: clamp(58px, 24vw, 96px);
        line-height: 0.85;
        letter-spacing: -0.07em;
    }

    .hero-signature small {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header h2,
    .services-header h2,
    .about-intro h2 {
        font-size: 32px;
    }

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

    .about-intro,
    .services-header {
        margin-bottom: 30px;
    }

    .about-main-card,
    .about-side-card {
        padding: 30px 22px;
    }

    .about-line-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-signature-mark {
        font-size: 110px;
    }

    .service-lux-card {
        min-height: auto;
        padding: 30px 22px;
    }

    .projects-hero {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .hero-index-line {
        grid-template-columns: 56px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .hero-index-line span {
        font-size: 28px;
    }

    .projects-hero-mark {
        left: 5%;
        bottom: -4px;
        font-size: 68px;
        opacity: 0.03;
    }

    .featured-image {
        min-height: 320px;
    }

    .featured-content,
    .project-preview {
        padding: 42px 24px;
    }

    .featured-content::before {
        left: 24px;
        right: 24px;
    }

    .featured-image-label {
        left: 18px;
        right: 18px;
        bottom: 18px;
        min-width: auto;
    }

    .project-img {
        height: 230px;
    }

    .project-info {
        padding-left: 22px;
        padding-right: 22px;
    }

    .project-card:hover,
    .service-lux-card:hover,
    .about-main-card:hover,
    .about-side-card:hover {
        transform: none;
    }
}

@keyframes signatureRevealMobile {
    to {
        opacity: 0.055;
        transform: translateY(0);
    }
}

@keyframes signatureRevealMobileDark {
    to {
        opacity: 0.045;
        transform: translateY(0);
    }
}
/* ------------------------------
   Project Detail Page
------------------------------ */
.project-detail-hero {
    position: relative;
    overflow: hidden;
    min-height: auto;
    padding: 120px 8% 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-surface);
}

body.dark-mode .project-detail-hero {
    background:
        radial-gradient(circle at 86% 16%, rgba(197, 169, 125, 0.13), transparent 28%),
        linear-gradient(115deg, #101010 0%, #181713 55%, #111111 100%);
}

.project-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(150, 118, 69, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 118, 69, 0.07) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.32), transparent 72%);
    pointer-events: none;
}

.project-detail-inner {
    max-width: 800px;
}

.project-detail-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 300;
    margin-bottom: 18px;
}

.project-detail-hero p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

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

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.project-image {
    height: 420px;
    overflow: hidden;
}

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

.project-info-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(150,118,69,0.15);
}

.info-row strong {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.info-row span {
    font-size: 14px;
    color: var(--text-main);
}

.project-description {
    margin-top: 10px;
    color: var(--text-muted);
    line-height: 1.9;
}

.project-gallery-section {
    padding: 74px 8%;
    background: linear-gradient(180deg, var(--light-surface), var(--light-bg));
    border-top: 1px solid rgba(150,118,69,0.14);
}

.gallery-editorial-head {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.gallery-editorial-head h2 {
    max-width: 720px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.04;
    font-weight: 280;
    letter-spacing: -0.045em;
}

/* Cinematic Architectural Gallery - 15 Image System */
.luxury-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 82px;
    gap: 14px;
}

/* Base image card */
.luxury-gallery-item {
    position: relative;
    padding: 0;
    border: 1px solid rgba(197, 169, 125, 0.18);
    background: #111;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    isolation: isolate;
}

/* Cinematic layout pattern */
.luxury-gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 4;
}

.luxury-gallery-item:nth-child(2),
.luxury-gallery-item:nth-child(3),
.luxury-gallery-item:nth-child(4),
.luxury-gallery-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 2;
}

.luxury-gallery-item:nth-child(6) {
    grid-column: span 4;
    grid-row: span 3;
}

.luxury-gallery-item:nth-child(7),
.luxury-gallery-item:nth-child(8) {
    grid-column: span 4;
    grid-row: span 3;
}

.luxury-gallery-item:nth-child(9),
.luxury-gallery-item:nth-child(10),
.luxury-gallery-item:nth-child(11) {
    grid-column: span 4;
    grid-row: span 2;
}

.luxury-gallery-item:nth-child(12) {
    grid-column: span 6;
    grid-row: span 3;
}

.luxury-gallery-item:nth-child(13),
.luxury-gallery-item:nth-child(14),
.luxury-gallery-item:nth-child(15) {
    grid-column: span 2;
    grid-row: span 3;
}

/* Image fill */
.luxury-gallery-item picture,
.luxury-gallery-item img,
.luxury-gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
}

.luxury-gallery-item img,
.luxury-gallery-item video {
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 0.55s ease;
}

/* Dark cinematic layer */
.luxury-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(0,0,0,0.68), transparent 60%),
        linear-gradient(135deg, rgba(197,169,125,0.14), transparent 45%);
    opacity: 0.78;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* Inner luxury border */
.luxury-gallery-item::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(243, 216, 164, 0.45);
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Caption */
.luxury-gallery-item span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 3;
    padding: 8px 14px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    opacity: 0.9;
    transition: all 0.35s ease;
}
.luxury-gallery-item span::before {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    background: var(--primary-gold);
    margin-bottom: 6px;
}

/* Hover */
.luxury-gallery-item:hover img,
.luxury-gallery-item:hover video {
    transform: scale(1.045);
}

.luxury-gallery-item:hover::after {
    opacity: 0.92;
}

.luxury-gallery-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.luxury-gallery-item:hover span {
    transform: translateY(0);
    opacity: 1;
}

.luxury-gallery-item:hover span::before {
    width: 54px;
}

/* Tablet */
@media (max-width: 992px) {
    .luxury-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 100px;
    }

    .luxury-gallery-item:nth-child(1),
    .luxury-gallery-item:nth-child(6),
    .luxury-gallery-item:nth-child(12) {
        grid-column: span 6;
        grid-row: span 3;
    }

    .luxury-gallery-item:nth-child(n+2) {
        grid-column: span 3;
        grid-row: span 2;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .luxury-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 14px;
    }

    .luxury-gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .luxury-gallery-item:hover img,
    .luxury-gallery-item:hover video {
        transform: scale(1.015);
    }
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    z-index: 99999;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
    pointer-events: none;
}

.gallery-lightbox-stage {
    position: relative;
    max-width: 92vw;
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img,
.gallery-lightbox video {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.28s ease, transform 0.28s ease;
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.gallery-lightbox img.show,
.gallery-lightbox video.show {
    opacity: 1;
    transform: scale(1);
}

.gallery-close,
.gallery-nav {
    position: fixed;
    z-index: 100010;
    border: 1px solid rgba(197,169,125,0.45);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
}

.gallery-close {
    top: 24px;
    right: 30px;
    width: 46px;
    height: 46px;
    font-size: 34px;
    line-height: 1;
}

.gallery-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev {
    left: 28px;
}

.gallery-next {
    right: 28px;
}

.gallery-close:hover,
.gallery-nav:hover {
    background: var(--primary-gold);
}

/* Lightbox progress */
.gallery-progress {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 100010;
    display: flex;
    gap: 9px;
    align-items: center;
}

.gallery-progress-line {
    width: 30px;
    height: 2px;
    border: none;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gallery-progress-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f4d79e;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.gallery-progress-line.active::after {
    transform: scaleX(1);
}

/* Counter */
.gallery-counter {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100010;
    padding: 9px 16px;
    min-width: 88px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-align: center;
    background: rgba(0,0,0,0.46);
    border: 1px solid rgba(197,169,125,0.38);
    backdrop-filter: blur(12px);
}

.gallery-counter.counter-animate {
    animation: counterSoftPulse 0.28s ease;
}

@keyframes counterSoftPulse {
    from {
        opacity: 0.55;
        letter-spacing: 3.6px;
    }
    to {
        opacity: 1;
        letter-spacing: 2.4px;
    }
}

/* Lightbox title */
.lightbox-title {
    position: fixed;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    z-index: 100010;
    min-width: 220px;
    padding: 14px 28px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
	background: linear-gradient(
		135deg,
		rgba(0,0,0,0.65),
		rgba(20,20,20,0.5)
	);
    border: 1px solid rgba(243,216,164,0.35);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.45);
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
    pointer-events: none;
    transition: opacity 0.35s ease, clip-path 0.48s ease;
}

.lightbox-title::before {
    content: "";
    display: block;
    width: 52px;
    height: 1px;
    margin: 0 auto 10px;
    background: linear-gradient(90deg, transparent, #f3d8a4, transparent);
}

.lightbox-title.show {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

@media (max-width: 992px) {
    .luxury-gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 110px;
    }

    .luxury-gallery-item:nth-child(1) {
        grid-column: span 6;
        grid-row: span 3;
    }

    .luxury-gallery-item:nth-child(n+2) {
        grid-column: span 3;
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .gallery-editorial-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .luxury-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 14px;
    }

    .luxury-gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-nav {
        width: 44px;
        height: 44px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-progress {
        bottom: 24px;
        gap: 7px;
    }

    .gallery-progress-line {
        width: 22px;
    }

    .lightbox-title {
        bottom: 68px;
        width: 86%;
        min-width: auto;
        padding: 12px 16px;
        font-size: 10px;
        letter-spacing: 1.8px;
    }
}

.logo-icon {
    position: relative;
}

.logo-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,169,125,0.35), transparent 65%);
    opacity: 0;
    animation: logoGlow 3s ease-in-out infinite;
    z-index: -1;
}

.logo-icon img {
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.25;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.75;
        transform: scale(1.08);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.project-status {
    display: inline-flex;   /* important */
    align-items: center;
    gap: 10px;
    width: fit-content;     /* key fix */
    max-width: max-content; /* safety */
    margin-bottom: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #000;
    border: 1px solid rgba(197,169,125,0.4);
    backdrop-filter: blur(10px);
	align-self: flex-start;
}

.project-status span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 0 0 0 rgba(197, 169, 125, 0.7);
    animation: statusPulse 1.7s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 169, 125, 0.65);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(197, 169, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 169, 125, 0);
    }
}

.status-upcoming span {
    background: #7c8cff;
}

.status-under-construction span {
    background: #c79b45;
}

.status-completed span {
    background: #4f9f6e;
}

body.dark-mode .project-status {
    background: rgba(20, 20, 20, 0.72);
    border-color: rgba(197, 169, 125, 0.24);
	color:#fff;
}
.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 14px 22px;
    background: rgba(255,255,255,1);
    color: var(--text-main);
    border: 1px solid rgba(197,169,125,0.35);
    backdrop-filter: blur(8px);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.footer-whatsapp-btn i {
    color: var(--primary-gold);
    font-size: 16px;
}

/* Hover = luxury gold */
.footer-whatsapp-btn:hover {
    background: var(--primary-gold);
    color: #ffffff;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(197,169,125,0.28);
}

.footer-whatsapp-btn:hover i {
    color: #ffffff;
}

/* Dark mode */
body.dark-mode .footer-whatsapp-btn {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(197,169,125,0.25);
}

/* Accessibility and motion polish */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

.project-card {
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


/* ------------------------------
   Elite Homepage Additions
------------------------------ */
.sector-strip{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    padding:22px 8%;
    border-bottom:1px solid var(--border-color);
    background:var(--light-surface);
}

.sector-strip span{
    font-size:11px;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:var(--text-muted);
    padding:10px 18px;
    border:1px solid rgba(150,118,69,0.16);
    background:rgba(255,255,255,0.45);
}

body.dark-mode .sector-strip span{
    background:rgba(255,255,255,0.04);
}

.final-cta{
    padding:120px 8%;
    text-align:center;
    background:
    linear-gradient(135deg,#f6f0e6 0%,#fffaf2 50%,#f2eadc 100%);
    border-top:1px solid rgba(150,118,69,0.14);
}

body.dark-mode .final-cta{
    background:
    linear-gradient(135deg,#101010 0%,#181713 50%,#111111 100%);
}

.final-cta-inner{
    max-width:760px;
    margin:auto;
}

.final-cta span{
    display:inline-block;
    margin-bottom:18px;
    color:var(--primary-gold);
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.final-cta h2{
    font-size:clamp(42px,5vw,76px);
    line-height:1;
    letter-spacing:-0.05em;
    font-weight:250;
    margin-bottom:24px;
}

.final-cta p{
    color:var(--text-muted);
    font-size:16px;
    line-height:1.9;
    margin-bottom:34px;
}

@media (max-width: 768px){
    .sector-strip{
        justify-content:flex-start;
        gap:10px;
        padding:18px 6%;
    }

    .sector-strip span{
        font-size:10px;
        padding:9px 12px;
    }

    .final-cta{
        padding:80px 6%;
    }
}
