/* ═══════════════════════════════════════════════════════════
   PARTY STAR RENTAL — LUXURY DESIGN SYSTEM
   Multi-page shared stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
    --color-bg: #0e0e0e;
    --color-bg-warm: #141210;
    --color-surface: #1a1816;
    --color-surface-2: #232019;
    --color-gold: #c9a96e;
    --color-gold-light: #dfc8a0;
    --color-gold-dark: #a08040;
    --color-ivory: #f5f0e8;
    --color-ivory-dim: #e8e0d4;
    --color-cream: #faf6f0;
    --color-charcoal: #2a2a2a;
    --color-text: #d4cec4;
    --color-text-dim: #8a847a;
    --color-white: #ffffff;
    --color-sage: #7a8a6e;
    --color-rose: #a07070;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --nav-height: 80px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none;
}
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--color-gold); color: var(--color-bg); }

@media (hover: none) and (pointer: coarse) {
    body, a, button { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
}

/* ── PAGE TRANSITION OVERLAY ────────────────────────────── */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
    display: flex;
}
.page-transition .col {
    flex: 1;
    background: var(--color-bg);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ── SCROLL PROGRESS BAR ───────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
    z-index: 10001;
    transition: none;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), background 0.3s;
}
.cursor.expand { width: 60px; height: 60px; background: var(--color-gold-light); }
.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo), border-color 0.3s;
}
.cursor-follower.expand { width: 80px; height: 80px; border-color: rgba(201, 169, 110, 0.2); }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 52px; height: 52px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
    background: rgba(14,14,14,0.8);
    backdrop-filter: blur(10px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--color-gold); border-color: var(--color-gold); }
.back-to-top:hover svg { stroke: var(--color-bg); }
.back-to-top svg { stroke: var(--color-gold); transition: stroke 0.3s; }

/* ── PRELOADER ──────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}
.preloader-brand {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-ivory);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    overflow: hidden;
}
.preloader-brand span { display: inline-block; transform: translateY(120%); }
.preloader-line {
    width: 200px; height: 1px;
    background: rgba(201, 169, 110, 0.2);
    position: relative; overflow: hidden;
}
.preloader-line-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 0;
    background: var(--color-gold);
}
.preloader-sub {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s var(--ease-out-expo);
}
.nav.scrolled {
    padding: 14px 60px;
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-ivory);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    flex-shrink: 0;
}
.nav-logo .gold { color: var(--color-gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--color-text-dim);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--color-gold);
    transition: width 0.5s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--color-ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
    color: var(--color-gold) !important;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 10px 24px;
    transition: all 0.4s var(--ease-out-expo) !important;
}
.nav-cta:hover { background: var(--color-gold) !important; color: var(--color-bg) !important; }
.nav-cta::after { display: none !important; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
.nav-phone {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--color-gold-light);
    letter-spacing: 0.08em;
}
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 10px; z-index: 1002; }
.hamburger span { display: block; width: 28px; height: 1px; background: var(--color-ivory); transition: all 0.4s var(--ease-out-expo); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-nav {
    position: fixed; inset: 0;
    background: var(--color-bg);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav-links { text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--color-ivory);
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--ease-out-expo);
}
.mobile-nav.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-links li:nth-child(6) a { transition-delay: 0.35s; }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 60px 80px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0; z-index: -2;
}
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.page-hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom,
        rgba(14,14,14,0.4) 0%,
        rgba(14,14,14,0.15) 40%,
        rgba(14,14,14,0.65) 70%,
        rgba(14,14,14,0.97) 100%
    );
}
.page-hero-content { position: relative; z-index: 2; max-width: 750px; }
.page-hero-breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.page-hero-breadcrumb a { transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--color-gold); }
.page-hero-breadcrumb .sep { color: var(--color-gold); opacity: 0.4; }
.page-hero-tag {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 20px;
    overflow: hidden;
}
.page-hero-tag span { display: inline-block; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--color-ivory);
    line-height: 1.08;
}
.page-hero-title .line { display: block; overflow: hidden; }
.page-hero-title .line span { display: inline-block; transform: translateY(110%); }
.page-hero-title em { font-style: italic; color: var(--color-gold-light); }
.page-hero-desc {
    font-size: 1.05rem; font-weight: 300;
    color: var(--color-text); line-height: 1.7;
    max-width: 520px; margin-top: 24px; opacity: 0;
}

/* ── HOME HERO (full height) ────────────────────────────── */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 80px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom,
        rgba(14,14,14,0.3) 0%, rgba(14,14,14,0.1) 40%,
        rgba(14,14,14,0.6) 70%, rgba(14,14,14,0.95) 100%
    );
}
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-tag {
    font-family: var(--font-accent);
    font-size: 0.9rem; color: var(--color-gold);
    letter-spacing: 0.35em; text-transform: uppercase;
    margin-bottom: 24px; overflow: hidden;
}
.hero-tag span { display: inline-block; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 400; color: var(--color-ivory);
    line-height: 1.05; margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; transform: translateY(110%); }
.hero-title em { font-style: italic; color: var(--color-gold-light); }
.hero-desc {
    font-size: 1.05rem; font-weight: 300;
    color: var(--color-text); max-width: 520px;
    line-height: 1.7; margin-bottom: 48px; opacity: 0;
}
.hero-buttons { display: flex; align-items: center; gap: 32px; opacity: 0; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; right: 60px;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; z-index: 5;
}
.scroll-indicator span {
    font-size: 0.65rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--color-text-dim);
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px; height: 60px;
    background: rgba(201, 169, 110, 0.15);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--color-gold);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; }
}

/* ── SHARED BUTTONS ─────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-bg); background: var(--color-gold);
    padding: 18px 40px;
    position: relative; overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--color-ivory);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out-expo);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.4s var(--ease-out-expo); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-ivory); padding: 18px 0;
    position: relative;
}
.btn-outline::after {
    content: ''; position: absolute;
    bottom: 14px; left: 0;
    width: 100%; height: 1px;
    background: rgba(201, 169, 110, 0.3);
    transition: background 0.3s;
}
.btn-outline:hover::after { background: var(--color-gold); }
.btn-outline svg { transition: transform 0.4s var(--ease-out-expo); }
.btn-outline:hover svg { transform: translateX(4px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 18px 36px;
    transition: all 0.4s var(--ease-out-expo);
}
.btn-ghost:hover { background: var(--color-gold); color: var(--color-bg); border-color: var(--color-gold); }

.arrow-svg { width: 18px; height: 18px; }

/* ── SECTION SHARED ─────────────────────────────────────── */
.section { padding: 160px 60px; position: relative; }
.section-tag {
    font-family: var(--font-accent);
    font-size: 0.85rem; color: var(--color-gold);
    letter-spacing: 0.35em; text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400; color: var(--color-ivory); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--color-gold-light); }
.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem; font-weight: 300;
    color: var(--color-text); line-height: 1.8;
    max-width: 580px; margin-top: 20px;
}
.divider { width: 60px; height: 1px; background: var(--color-gold); margin: 32px 0; opacity: 0.5; }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-section {
    padding: 40px 0; overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
    background: var(--color-bg-warm);
}
.marquee-track {
    display: flex; gap: 60px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    color: rgba(201, 169, 110, 0.15);
    white-space: nowrap; letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 60px;
}
.marquee-item::after { content: '\2726'; font-size: 0.6em; color: rgba(201, 169, 110, 0.2); }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT GRID ─────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image-wrap {
    position: relative; overflow: hidden; aspect-ratio: 3/4;
}
.about-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s var(--ease-out-expo);
}
.about-image-wrap:hover img { transform: scale(1.02); }
.about-image-accent {
    position: absolute; bottom: -20px; right: -20px;
    width: 200px; height: 200px;
    border: 1px solid rgba(201, 169, 110, 0.12); z-index: -1;
}
.about-text p {
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.85; color: var(--color-text); margin-bottom: 24px;
}
.about-text .lead {
    font-family: var(--font-accent);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 300; font-style: italic;
    color: var(--color-ivory-dim); line-height: 1.6; margin-bottom: 32px;
}

/* ── STATS ──────────────────────────────────────────────── */
.stats-section {
    padding: 100px 60px;
    background: var(--color-surface);
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 40px; max-width: 1200px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 40px 20px; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400; color: var(--color-gold);
    line-height: 1; margin-bottom: 12px;
}
.stat-label {
    font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--color-text-dim);
}

/* ── SERVICE CARDS ──────────────────────────────────────── */
.services-header { text-align: center; margin-bottom: 80px; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(201, 169, 110, 0.06);
}
.service-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4; background: var(--color-bg);
}
.service-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.5; transform: scale(1.08);
    transition: all 1s var(--ease-out-expo);
}
.service-card:hover img { opacity: 0.3; transform: scale(1); }
.service-card-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 40px; z-index: 2;
}
.service-card-number {
    font-family: var(--font-accent);
    font-size: 0.8rem; color: var(--color-gold);
    letter-spacing: 0.2em; margin-bottom: 12px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 400; color: var(--color-ivory); margin-bottom: 16px;
    transition: transform 0.6s var(--ease-out-expo);
}
.service-card:hover h3 { transform: translateY(-8px); }
.service-card p {
    font-size: 0.88rem; font-weight: 300;
    color: var(--color-text-dim); line-height: 1.6;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: all 0.6s var(--ease-out-expo);
}
.service-card:hover p { max-height: 100px; opacity: 1; }
.service-card-line {
    width: 30px; height: 1px;
    background: var(--color-gold); margin-top: 20px;
    transition: width 0.6s var(--ease-out-expo);
}
.service-card:hover .service-card-line { width: 60px; }

/* ── GALLERY ────────────────────────────────────────────── */
/* Filter buttons */
.gallery-filters {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-bottom: 60px;
}
.filter-btn {
    font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--color-text-dim);
    padding: 10px 24px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.4s var(--ease-out-expo);
}
.filter-btn:hover, .filter-btn.active {
    color: var(--color-gold); border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.06);
}

/* Masonry-like grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-card {
    position: relative; overflow: hidden;
    cursor: none;
}
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 1s var(--ease-out-expo), filter 0.5s;
}
.gallery-card:hover img { transform: scale(1.05); filter: brightness(0.6); }
.gallery-card:nth-child(2) img,
.gallery-card:nth-child(5) img { aspect-ratio: 4/5; }
.gallery-card-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 30px;
    opacity: 0;
    transition: opacity 0.5s;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay span {
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-gold); margin-bottom: 4px;
}
.gallery-card-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 400; color: var(--color-ivory);
}

/* Horizontal gallery (homepage) */
.hgallery-section { padding: 160px 0 160px 60px; overflow: hidden; }
.hgallery-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 60px; padding-right: 60px;
}
.hgallery-track { display: flex; gap: 24px; width: max-content; }
.hgallery-item {
    position: relative; width: 400px; aspect-ratio: 3/4;
    overflow: hidden; flex-shrink: 0;
}
.hgallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}
.hgallery-item:hover img { transform: scale(1.06); }
.hgallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.5s;
}
.hgallery-item:hover .hgallery-item-overlay { opacity: 1; }
.hgallery-item-caption {
    position: absolute; bottom: 30px; left: 30px;
    color: var(--color-ivory);
    transform: translateY(20px); opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}
.hgallery-item:hover .hgallery-item-caption { transform: translateY(0); opacity: 1; }
.hgallery-item-caption h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.hgallery-item-caption span { font-size: 0.7rem; color: var(--color-gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(10px);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
    max-width: 85vw; max-height: 85vh;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out-expo);
}
.lightbox-close {
    position: absolute; top: 30px; right: 40px;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--color-gold); background: rgba(201, 169, 110, 0.1); }
.lightbox-close svg { stroke: var(--color-ivory); }

/* ── EXPERIENCE (full-width parallax) ───────────────────── */
.experience {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.experience-bg { position: absolute; inset: 0; z-index: -1; }
.experience-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.experience-content { max-width: 800px; padding: 0 40px; position: relative; z-index: 2; }
.experience-quote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400; font-style: italic;
    color: var(--color-ivory); line-height: 1.3; margin-bottom: 40px;
}
.experience-attr {
    font-size: 0.8rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-gold);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
    padding: 48px 36px; background: var(--color-surface);
    border: 1px solid rgba(201, 169, 110, 0.06);
    transition: all 0.5s var(--ease-out-expo); text-align: left;
}
.testimonial-card:hover {
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-8px);
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--color-gold); }
.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.12rem; font-weight: 300; font-style: italic;
    color: var(--color-ivory-dim); line-height: 1.7; margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem; color: var(--color-bg);
}
.testimonial-author-info h5 { font-size: 0.85rem; font-weight: 500; color: var(--color-ivory); }
.testimonial-author-info span { font-size: 0.75rem; color: var(--color-text-dim); }
.testimonial-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 48px; padding: 14px 28px;
    border: 1px solid rgba(201, 169, 110, 0.15);
}
.testimonial-badge span { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--color-text-dim); }
.testimonial-badge strong { color: var(--color-gold); font-weight: 500; }

/* ── PROCESS STEPS ──────────────────────────────────────── */
.process-section { background: var(--color-bg-warm); border-top: 1px solid rgba(201, 169, 110, 0.06); }
.process-header { margin-bottom: 80px; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step {
    padding: 48px 36px; background: var(--color-bg);
    transition: all 0.5s var(--ease-out-expo);
}
.process-step:hover { background: var(--color-surface); }
.process-step-number {
    font-family: var(--font-display);
    font-size: 3.5rem; color: rgba(201, 169, 110, 0.08);
    line-height: 1; margin-bottom: 24px;
}
.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 400;
    color: var(--color-ivory); margin-bottom: 16px;
}
.process-step p { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: var(--color-text-dim); }

/* ── SERVICE AREAS ──────────────────────────────────────── */
.areas-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.areas-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.area-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
    display: flex; align-items: center; gap: 16px;
}
.area-item::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: var(--color-gold);
    opacity: 0.4; flex-shrink: 0;
}
.area-item span { font-size: 0.95rem; font-weight: 300; color: var(--color-text); }

/* Area detail cards */
.area-card {
    padding: 36px; background: var(--color-surface);
    border: 1px solid rgba(201,169,110,0.06);
    transition: all 0.5s var(--ease-out-expo);
}
.area-card:hover { border-color: rgba(201,169,110,0.15); transform: translateY(-4px); }
.area-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 400;
    color: var(--color-ivory); margin-bottom: 12px;
}
.area-card p { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: var(--color-text-dim); }
.area-card .tag {
    display: inline-block; margin-top: 16px;
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--color-gold);
    padding: 6px 14px;
    border: 1px solid rgba(201,169,110,0.15);
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 400;
    color: var(--color-ivory); margin-bottom: 24px;
}
.contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}
.contact-detail-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.15);
    display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--color-gold); fill: none; }
.contact-detail-text h5 { font-size: 0.85rem; font-weight: 500; color: var(--color-ivory); margin-bottom: 4px; }
.contact-detail-text p { font-size: 0.9rem; font-weight: 300; color: var(--color-text-dim); line-height: 1.5; }
.contact-detail-text a { color: var(--color-gold-light); transition: color 0.3s; }
.contact-detail-text a:hover { color: var(--color-gold); }

.form-group { margin-bottom: 28px; }
.form-label {
    display: block; font-size: 0.72rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-text-dim); margin-bottom: 10px;
}
.form-input,
.form-textarea {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 14px 0; font-family: var(--font-body);
    font-size: 1rem; font-weight: 300;
    color: var(--color-ivory); outline: none;
    transition: border-color 0.3s;
    cursor: none;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--color-gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-dim); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 14px 0; font-family: var(--font-body);
    font-size: 1rem; font-weight: 300;
    color: var(--color-ivory); outline: none;
    cursor: none; -webkit-appearance: none; appearance: none;
}
.form-select option { background: var(--color-bg); color: var(--color-text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-section { background: var(--color-bg-warm); border-top: 1px solid rgba(201,169,110,0.06); }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.faq-question {
    width: 100%; text-align: left;
    padding: 28px 0; display: flex;
    justify-content: space-between; align-items: center;
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 400;
    color: var(--color-ivory);
    transition: color 0.3s;
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    position: relative;
}
.faq-icon::before,
.faq-icon::after {
    content: ''; position: absolute;
    background: var(--color-gold);
    transition: transform 0.4s var(--ease-out-expo);
}
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.active .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}
.faq-answer p {
    font-size: 0.95rem; font-weight: 300;
    line-height: 1.8; color: var(--color-text-dim);
    padding-bottom: 28px;
}

/* ── TIMELINE ───────────────────────────────────────────── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px; background: rgba(201, 169, 110, 0.12);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex; align-items: flex-start;
    margin-bottom: 60px; position: relative;
}
.timeline-item:nth-child(odd) { padding-right: calc(50% + 40px); text-align: right; }
.timeline-item:nth-child(even) { padding-left: calc(50% + 40px); }
.timeline-dot {
    position: absolute; left: 50%;
    top: 8px; width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: var(--color-bg);
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 400;
    color: var(--color-ivory); margin-bottom: 8px;
}
.timeline-content .year {
    font-family: var(--font-accent);
    font-size: 0.85rem; color: var(--color-gold);
    letter-spacing: 0.2em; margin-bottom: 10px;
    display: block;
}
.timeline-content p {
    font-size: 0.9rem; font-weight: 300;
    line-height: 1.7; color: var(--color-text-dim);
}

/* ── VALUES GRID ────────────────────────────────────────── */
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(201,169,110,0.04);
}
.value-card {
    padding: 48px 36px; background: var(--color-bg);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}
.value-card:hover { background: var(--color-surface); }
.value-icon {
    width: 60px; height: 60px; margin: 0 auto 24px;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; stroke: var(--color-gold); fill: none; }
.value-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 400;
    color: var(--color-ivory); margin-bottom: 14px;
}
.value-card p { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--color-text-dim); }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
    position: relative; padding: 200px 60px;
    text-align: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: -1; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2); }
.cta-content {
    position: relative; z-index: 2;
    max-width: 700px; margin: 0 auto;
}
.cta-content .section-title { margin-bottom: 24px; }
.cta-content p {
    font-size: 1.05rem; font-weight: 300;
    line-height: 1.8; color: var(--color-text); margin-bottom: 48px;
}
.cta-phone {
    display: block; font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-gold); margin-top: 40px;
    letter-spacing: 0.05em; transition: color 0.3s;
}
.cta-phone:hover { color: var(--color-gold-light); }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-bar {
    padding: 60px;
    background: var(--color-surface);
    border-top: 1px solid rgba(201,169,110,0.06);
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.newsletter-bar h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 400;
    color: var(--color-ivory); flex-shrink: 0;
}
.newsletter-form {
    display: flex; gap: 0; max-width: 450px; width: 100%;
}
.newsletter-input {
    flex: 1; background: transparent;
    border: 1px solid rgba(201,169,110,0.15);
    border-right: none;
    padding: 16px 20px; font-family: var(--font-body);
    font-size: 0.9rem; color: var(--color-ivory);
    outline: none; cursor: none;
}
.newsletter-input::placeholder { color: var(--color-text-dim); }
.newsletter-input:focus { border-color: var(--color-gold); }
.newsletter-btn {
    padding: 16px 28px; background: var(--color-gold);
    font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--color-bg);
    font-weight: 500; transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--color-gold-light); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem; color: var(--color-ivory);
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-brand .gold { color: var(--color-gold); }
.footer-desc {
    font-size: 0.9rem; font-weight: 300;
    line-height: 1.7; color: var(--color-text-dim);
    max-width: 320px;
}
.footer-col h5 {
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-gold);
    margin-bottom: 20px;
}
.footer-col a {
    display: block; font-size: 0.88rem;
    font-weight: 300; color: var(--color-text-dim);
    padding: 6px 0; transition: color 0.3s;
}
.footer-col a:hover { color: var(--color-ivory); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span {
    font-size: 0.75rem; color: var(--color-text-dim); letter-spacing: 0.1em;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(60px); }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-right { opacity: 0; transform: translateX(60px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }
.clip-reveal { clip-path: inset(100% 0 0 0); transition: clip-path 1.2s var(--ease-out-expo); }
.clip-reveal.revealed { clip-path: inset(0 0 0 0); }

/* ── FLOATING PARTICLES ─────────────────────────────────── */
.particles-container {
    position: absolute; inset: 0;
    overflow: hidden; pointer-events: none; z-index: 0;
}
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .section { padding: 100px 40px; }
    .hero, .page-hero { padding: 0 40px 60px; }
    .nav { padding: 20px 40px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .areas-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-item:nth-child(odd) { padding-right: 0; padding-left: 50px; text-align: left; }
    .timeline-item:nth-child(even) { padding-left: 50px; }
    .timeline::before { left: 16px; }
    .timeline-dot { left: 16px; }
    .newsletter-bar { flex-direction: column; align-items: flex-start; }
    .hgallery-item { width: 300px; }
}
@media (max-width: 768px) {
    .section { padding: 80px 24px; }
    .hero, .page-hero { padding: 0 24px 40px; }
    .nav { padding: 16px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 0; }
    .stats-section { padding: 60px 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-section { padding: 120px 24px; }
    .areas-list { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { text-align: center; }
    .hgallery-section { padding: 80px 0 80px 24px; }
    .hgallery-item { width: 280px; }
    .nav-phone { display: none; }
}
