/* =========================================================
   G-GROUP — LUXURY REAL ESTATE
   Premium dark theme / gold accents
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
    /* Surface */
    --bg: #0a0a0c;
    --bg-elev-1: #111114;
    --bg-elev-2: #16161b;
    --bg-card: #15151a;
    --bg-deep: #07070a;

    /* Type */
    --fg: #f4f1ea;
    --fg-muted: #b6b2a8;
    --fg-dim: #777368;
    --fg-on-gold: #0a0a0c;

    /* Brand */
    --gold: #c9a962;
    --gold-soft: #e0c98a;
    --gold-deep: #a8863e;
    --gold-glow: rgba(201, 169, 98, 0.35);

    /* Surfaces / borders */
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(201, 169, 98, 0.22);
    --glass: rgba(10, 10, 12, 0.72);

    /* Shadows */
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 18px 50px rgba(201, 169, 98, 0.18);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container: 1320px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;

    /* Type scale */
    --fs-hero: clamp(56px, 11vw, 140px);
    --fs-display: clamp(40px, 6vw, 72px);
    --fs-h2: clamp(32px, 4.5vw, 56px);
    --fs-h3: clamp(22px, 2.4vw, 30px);
    --fs-body: 17px;
    --fs-sm: 14px;
}

/* ---------- 2. RESET + BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--fg);
    font-size: var(--fs-body);
    line-height: 1.65;
    font-weight: 300;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body::selection, ::selection { background: var(--gold); color: var(--fg-on-gold); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Heebo', serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.005em;
    color: var(--fg);
}

p { color: var(--fg-muted); }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 110px) 0; }
.section-eyebrow {
    display: inline-block;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-inline-end: 12px;
    transform: translateY(-2px);
}
.section-header { max-width: 760px; margin: 0 auto clamp(48px, 7vw, 88px); text-align: center; }
.section-header h2 { font-size: var(--fs-h2); margin-bottom: 18px; }
.section-header p { font-size: 18px; color: var(--fg-muted); }

/* ---------- 4. REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- 5. HEADER + NAV ---------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 22px 0;
    transition: background 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
    background: linear-gradient(to bottom, rgba(7, 7, 10, 0.65), transparent);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: var(--glass);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    padding: 14px 0;
    border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold);
    transition: color 0.3s var(--ease);
}
.logo:hover { color: var(--gold-soft); }

.nav-desktop { display: flex; align-items: center; gap: 38px; }
.nav-desktop a {
    position: relative;
    padding: 6px 0;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--fg-muted);
    transition: color 0.3s var(--ease);
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    inset: auto 0 -2px 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle::before {
    content: '';
    width: 0; height: 0;
    border-inline: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s var(--ease);
    margin-inline-start: 4px;
}
.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: -16px;
    min-width: 230px;
    background: rgba(18, 18, 22, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    color: var(--fg-muted);
    letter-spacing: 0;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: rgba(201, 169, 98, 0.08); color: var(--gold); }

/* Gold button (CTA) */
.btn-gpark, .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--gold);
    color: var(--fg-on-gold) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid var(--gold);
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}
.btn-gpark:hover, .btn-gold:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px var(--gold-glow);
}
.btn-gpark::after, .btn-gold::after { display: none; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--fg);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 169, 98, 0.06); }

/* Mobile button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border-radius: 999px;
    transition: background 0.3s var(--ease);
}
.mobile-menu-btn:hover { background: rgba(201, 169, 98, 0.08); }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* Mobile menu drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg-deep);
    padding: 96px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
    overflow-y: auto;
}
.mobile-menu.active { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--fg);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-gpark { font-size: 14px; margin-top: 18px; }
.mobile-menu-close {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.3s var(--ease);
}
.mobile-menu-close:hover { background: rgba(201, 169, 98, 0.08); }
.mobile-menu-close svg { width: 26px; height: 26px; }

/* ---------- 6. HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background: #0a0a0c;
}
.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: hero-kenburns 24s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes hero-kenburns {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to   { transform: scale(1.18) translate3d(-1.5%, -1%, 0); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(201,169,98,0.10), transparent 55%),
        linear-gradient(180deg, rgba(7,7,10,0.55) 0%, rgba(7,7,10,0.35) 35%, rgba(7,7,10,0.92) 100%);
}
.hero-content {
    text-align: center;
    max-width: 1000px;
    padding-inline: 24px;
}
.hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fade-up 1s var(--ease) both;
}
.hero-content .eyebrow::before,
.hero-content .eyebrow::after {
    content: '';
    width: 36px; height: 1px;
    background: var(--gold);
    opacity: 0.7;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-hero);
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 0.95;
    margin-bottom: 28px;
    color: var(--fg);
    animation: fade-up 1.2s var(--ease) 0.1s both;
}
.hero-content .tagline {
    font-size: clamp(18px, 2.4vw, 26px);
    color: var(--fg-muted);
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: 640px;
    margin: 0 auto 50px;
    animation: fade-up 1.2s var(--ease) 0.2s both;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; animation: fade-up 1.2s var(--ease) 0.3s both; }

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 42px;
    background: var(--gold);
    color: var(--fg-on-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-100%); transition: transform 0.9s var(--ease);
}
.hero-btn:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 20px 50px var(--gold-glow); }
.hero-btn:hover::before { transform: translateX(100%); }
.hero-btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.hero-btn:hover svg { transform: translateX(-6px); }

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: fade-up 1s 0.6s both;
}
.scroll-indicator::after {
    content: '';
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- 7. ABOUT ---------- */
.about-section { background: var(--bg-elev-1); }
.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.about-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,7,10,0.5), transparent 50%);
}
.about-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-badge {
    position: absolute;
    bottom: -22px;
    inset-inline-start: -22px;
    background: var(--gold);
    color: var(--fg-on-gold);
    padding: 22px 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 2px;
}
.about-image-badge span {
    font-size: 13px;
    letter-spacing: 0.08em;
    opacity: 0.82;
}
.about-content h2 { font-size: var(--fs-h2); margin-bottom: 22px; }
.about-content p { font-size: 18px; line-height: 1.85; margin-bottom: 20px; }
.about-content .subtitle, .about-content .section-eyebrow { margin-bottom: 22px; }

.about-link, .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 6px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.about-link:hover, .text-link:hover { gap: 22px; color: var(--gold-soft); }
.about-link svg, .text-link svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.about-link:hover svg, .text-link:hover svg { transform: translateX(-6px); }

/* ---------- 8. STATS ---------- */
.stats-section {
    background:
        linear-gradient(135deg, rgba(201,169,98,0.95), rgba(168,134,62,0.95)),
        radial-gradient(circle at 20% 0%, rgba(255,255,255,0.15), transparent 50%);
    padding: clamp(60px, 9vw, 110px) 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.stat-item { color: var(--fg-on-gold); }
.stat-item .number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.stat-item .label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ---------- 9. PROJECTS ---------- */
.projects-section { background: var(--bg); }
.projects-tabs {
    display: inline-flex;
    padding: 6px;
    margin: 0 auto 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    position: relative;
    gap: 4px;
}
.projects-tabs-wrap { display: flex; justify-content: center; }
.project-tab {
    padding: 12px 36px;
    font-family: 'Heebo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-muted);
    border-radius: 999px;
    transition: all 0.4s var(--ease);
}
.project-tab:hover { color: var(--gold); }
.project-tab.active {
    background: var(--gold);
    color: var(--fg-on-gold);
    box-shadow: 0 6px 18px var(--gold-glow);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}
.project-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}
.project-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-elev-2);
}
.project-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,12,0.65), transparent 55%);
    pointer-events: none;
}
.project-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--ease);
}
.project-card:hover .project-card-image img { transform: scale(1.07); }
.project-card-status {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 2;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    background: var(--gold);
    color: var(--fg-on-gold);
    backdrop-filter: blur(8px);
}
.project-card-status.sold {
    background: rgba(10,10,12,0.7);
    color: var(--fg-muted);
    border: 1px solid var(--border);
}
.project-card-content { padding: 32px 30px 34px; }
.project-card-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--fg);
}
.project-card-content .location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.project-card-content > p {
    font-size: 15px;
    color: var(--fg-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}
.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.project-card-link:hover { gap: 18px; color: var(--gold-soft); }
.project-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.project-card-link:hover svg { transform: translateX(-4px); }

/* ---------- 10. CONTACT ---------- */
.contact-section { background: var(--bg-elev-1); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}
.contact-info h2 { font-size: var(--fs-h2); margin-bottom: 24px; }
.contact-info > p { font-size: 17px; line-height: 1.85; max-width: 520px; margin-bottom: 50px; }
.contact-item {
    display: flex;
    gap: 22px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-item-icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    display: grid; place-items: center;
    color: var(--gold);
    transition: all 0.35s var(--ease);
}
.contact-item:hover .contact-item-icon {
    background: var(--gold);
    color: var(--fg-on-gold);
    border-color: var(--gold);
    box-shadow: 0 10px 22px var(--gold-glow);
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-content h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 8px;
}
.contact-item-content p, .contact-item-content a {
    font-size: 16px;
    color: var(--fg);
    line-height: 1.55;
    transition: color 0.3s var(--ease);
}
.contact-item-content a:hover { color: var(--gold); }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(28px, 4vw, 50px);
    box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 32px; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 10px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-elev-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--fg);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-deep);
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 17px;
    background: var(--gold);
    color: var(--fg-on-gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
}
.submit-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 15px 35px var(--gold-glow);
}

/* ---------- 11. FOOTER ---------- */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 80px 0 28px;
    color: var(--fg-muted);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer-brand p { font-size: 15px; line-height: 1.8; max-width: 320px; }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-links a {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    color: var(--gold);
    transition: all 0.35s var(--ease);
}
.social-links a:hover {
    background: var(--gold);
    color: var(--fg-on-gold);
    transform: translateY(-2px);
}
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

.footer h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; font-size: 15px; }
.footer-links a {
    color: var(--fg-muted);
    transition: color 0.3s var(--ease), padding-inline-start 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold); padding-inline-start: 6px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--fg-dim);
}

/* ---------- 12. INNER PAGE HEADER ---------- */
.page-header {
    position: relative;
    padding: clamp(160px, 22vw, 240px) 0 clamp(70px, 10vw, 120px);
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,169,98,0.12), transparent 60%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-elev-1) 100%);
    overflow: hidden;
}
.page-header::after {
    content: ''; position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.page-header h1 {
    font-size: clamp(44px, 8vw, 84px);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    color: var(--fg);
}
.page-header p {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto;
    color: var(--fg-muted);
}

/* ---------- 13. PROJECT DETAIL PAGE ---------- */
.project-hero {
    position: relative;
    height: clamp(420px, 75vh, 720px);
    display: flex;
    align-items: flex-end;
    margin-top: 80px;
    overflow: hidden;
    isolation: isolate;
    background: var(--bg-deep);
}
.project-hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    animation: hero-kenburns 22s ease-in-out infinite alternate;
}
.project-hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to top, rgba(7,7,10,0.95) 0%, rgba(7,7,10,0.25) 55%, rgba(7,7,10,0.45) 100%);
}
.project-hero-content { padding: 60px 0; width: 100%; position: relative; }
.project-hero-content h1 {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    color: var(--fg);
}
.project-hero-content .location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}
.project-hero-content .status {
    display: inline-block;
    padding: 9px 22px;
    background: var(--gold);
    color: var(--fg-on-gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.project-hero-content .status.sold {
    background: rgba(10,10,12,0.65);
    color: var(--fg-muted);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}
.detail-card {
    padding: 28px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.35s var(--ease);
}
.detail-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}
.detail-card .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 10px;
}
.detail-card .value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--gold);
    font-weight: 500;
}

.project-description {
    max-width: 820px;
    margin: 0 auto;
    padding: 30px 0 60px;
}
.project-description h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 28px;
    text-align: center;
}
.project-description p {
    font-size: 18px;
    line-height: 1.95;
    margin-bottom: 22px;
    color: var(--fg-muted);
}

.project-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.feature-item {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.35s var(--ease);
}
.feature-item:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.feature-item h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
}
.feature-item p { font-size: 15px; color: var(--fg-muted); margin: 0; line-height: 1.65; }

.pricing-table {
    max-width: 820px;
    margin: 40px auto 60px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-card);
}
.pricing-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row .type { font-size: 15px; color: var(--fg); }
.pricing-row .price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
}

.project-cta {
    text-align: center;
    padding: clamp(60px, 9vw, 100px) 0;
    background:
        radial-gradient(ellipse at center, rgba(201,169,98,0.10), transparent 70%),
        var(--bg-deep);
    border-top: 1px solid var(--border);
}
.project-cta h3 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.project-cta p { font-size: 17px; margin-bottom: 30px; }
.project-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: var(--gold);
    color: var(--fg-on-gold);
    border-radius: 999px;
    border: 1px solid var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease);
}
.project-cta a:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px var(--gold-glow);
}

/* Back-to-projects link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.back-link:hover { color: var(--gold-soft); }

/* Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 30px auto 60px;
}
.project-gallery a, .project-gallery div {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease);
}
.project-gallery a:hover { transform: translateY(-3px); }
.project-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-gallery a:hover img { transform: scale(1.06); }

/* ---------- 14. VALUES ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    padding: 44px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute; inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transform-origin: center;
    transition: transform 0.5s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    display: grid; place-items: center;
    color: var(--gold);
    border-radius: 14px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid var(--border-strong);
}
.value-card .value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 24px; color: var(--gold); margin-bottom: 14px; }
.value-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.75; margin: 0; }

/* ---------- 15. MEDIA / RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; max-width: 520px; }
    .about-image { max-width: 460px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .project-details-grid { grid-template-columns: repeat(2, 1fr); }
    .project-features { grid-template-columns: repeat(2, 1fr); }
    .project-gallery { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 760px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .header .btn-gpark { display: none; }

    .hero { min-height: 92vh; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .projects-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .about-image-badge { inset-inline-start: auto; right: -10px; padding: 16px 22px; }
    .project-details-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .project-features { grid-template-columns: 1fr; }
    .pricing-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 20px; }
    .pricing-row .price { font-size: 18px; }
    .project-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
    .projects-tabs { width: 100%; max-width: 360px; }
    .project-tab { flex: 1; padding: 12px 14px; font-size: 12px; letter-spacing: 0.14em; }
}

/* ---------- 16. UTILITIES ---------- */
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
