/* ============================================================
   Kemancı Group — Luxury Theme
   Palette: dark navy + champagne gold
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
    --bg: #1a1c20;
    --bg-2: #14161a;
    --bg-3: #20232a;
    --surface: #22252b;
    --surface-2: #2a2e36;
    --fg: #f6f3eb;
    --fg-muted: #c7c1b3;
    --fg-dim: #8a8579;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --gold: #e3ad4b;
    --gold-light: #f1cf86;
    --gold-dark: #b88a30;
    --gold-soft: rgba(227,173,75,0.18);
    --gold-shadow: 0 14px 44px -10px rgba(227,173,75,0.42);
    --gold-shadow-soft: 0 8px 24px -8px rgba(227,173,75,0.25);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --container: 1240px;
    --radius: 14px;
    --radius-sm: 8px;
    --header-h: 84px;
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--fg);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2.1rem); }
h4 { font-size: 1.4rem; }

p { color: var(--fg-muted); }

.container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.container-narrow {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- Page wrap ---------- */
.lux-page { background: var(--bg); min-height: 100vh; }

/* ---------- Page loader ---------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.page-loader .loader {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .15em;
}

/* ---------- Section padding ---------- */
.section { padding: clamp(60px, 9vw, 130px) 0; position: relative; }
.section-sm { padding: clamp(40px, 6vw, 80px) 0; }
.section-divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .28em;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: ""; width: 32px; height: 1px; background: var(--gold);
}

/* ---------- Section title ---------- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 22px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.section-lede {
    font-size: 1.05rem;
    color: var(--fg-muted);
    max-width: 720px;
    margin-bottom: 60px;
}
.section-head-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; margin-bottom: 56px;
}

/* ---------- Buttons ---------- */
.btn-lux {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .35s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-lux-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--bg);
    box-shadow: var(--gold-shadow-soft);
}
.btn-lux-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
    color: var(--bg);
}
.btn-lux-ghost {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}
.btn-lux-ghost:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-2px);
}
.btn-lux-light {
    background: rgba(246,243,235,0.06);
    border-color: var(--border-strong);
    color: var(--fg);
}
.btn-lux-light:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--gold);
}
.btn-lux .arrow { transition: transform .3s var(--ease); }
.btn-lux:hover .arrow { transform: translateX(4px); }

/* ---------- Navbar ---------- */
.lux-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0;
    transition: background .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s var(--ease);
}
.lux-nav.scrolled {
    background: rgba(20, 22, 26, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.lux-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    gap: 32px;
}
.lux-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    transition: opacity .3s var(--ease);
}
.lux-logo:hover { opacity: .9; }
.lux-logo-wrap {
    display: inline-block !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    flex: 0 0 64px !important;
    overflow: hidden !important;
    transition: all .3s var(--ease);
}
/* Nuclear: any img inside nav constrained to wrapper */
.lux-nav img,
.lux-logo img,
.lux-logo > img,
.lux-logo-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 2px 8px rgba(227,173,75,0.18));
}
.lux-nav.scrolled .lux-logo-wrap {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    flex: 0 0 52px !important;
}
.lux-logo-text {
    font-family: var(--font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: var(--fg) !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    white-space: nowrap;
}
@media (max-width: 880px) { .lux-logo-text { display: none !important; } }
@media (max-width: 540px) {
    .lux-logo-wrap {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
        flex: 0 0 48px !important;
    }
}
.lux-menu {
    list-style: none;
    display: flex; align-items: center; gap: 6px;
}
.lux-menu > li { position: relative; }
.lux-menu > li > a {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--fg);
    font-size: .88rem;
    font-weight: 400;
    letter-spacing: .04em;
    padding: 10px 16px;
    border-radius: 999px;
    transition: color .25s var(--ease), background .25s var(--ease);
}
.lux-menu > li > a:hover { color: var(--gold); background: rgba(227,173,75,0.06); }
.lux-menu > li.has-sub > a::after {
    content: "›"; font-size: 1rem; line-height: 1; transform: rotate(90deg); margin-left: 4px; color: var(--gold);
}
.lux-submenu {
    position: absolute; top: 100%; left: 0;
    min-width: 220px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    list-style: none;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6);
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all .25s var(--ease);
}
.lux-menu > li:hover .lux-submenu {
    opacity: 1; visibility: visible; transform: translateY(4px);
}
.lux-submenu li a {
    display: block;
    color: var(--fg-muted);
    padding: 10px 14px;
    font-size: .85rem;
    border-radius: 6px;
    transition: all .2s var(--ease);
}
.lux-submenu li a:hover { color: var(--gold); background: var(--gold-soft); }

.lux-nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: all .3s var(--ease);
}
.lux-nav-cta:hover { background: var(--gold); color: var(--bg); }

.lux-mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--fg);
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .lux-menu, .lux-nav-cta-wrap { display: none; }
    .lux-mobile-toggle { display: inline-flex; }
    .lux-nav.menu-open .lux-menu {
        display: flex; flex-direction: column;
        position: fixed; top: 0; right: 0; bottom: 0;
        width: min(360px, 88vw);
        background: var(--bg-2);
        padding: 90px 24px 40px;
        gap: 4px;
        align-items: stretch;
        box-shadow: -20px 0 60px -10px rgba(0,0,0,0.6);
        z-index: 99;
    }
    .lux-nav.menu-open .lux-submenu {
        position: static; opacity: 1; visibility: visible; transform: none;
        background: transparent; border: none; padding: 0 0 0 14px; box-shadow: none;
    }
}

/* ---------- Hero ---------- */
.lux-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.lux-hero-bg {
    position: absolute; inset: 0;
    z-index: -2;
}
.lux-hero-bg img, .lux-hero-bg .swiper {
    width: 100%; height: 100%;
}
.lux-hero-bg .swiper-slide {
    position: relative;
    background: var(--bg-2);
}
.lux-hero-bg .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.lux-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20,22,26,0.55) 0%, rgba(20,22,26,0.35) 35%, rgba(20,22,26,0.85) 100%);
    z-index: -1;
}
.lux-hero-content {
    text-align: center;
    max-width: 980px;
    padding: 140px 28px 80px;
    position: relative;
    z-index: 2;
}
.lux-hero-eyebrow {
    color: var(--gold);
    letter-spacing: .35em;
    font-size: .82rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 14px;
}
.lux-hero-eyebrow::before, .lux-hero-eyebrow::after {
    content: ""; width: 38px; height: 1px; background: var(--gold);
}
.lux-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 400;
    color: var(--fg);
}
.lux-hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.lux-hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--fg-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.lux-hero-actions {
    display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.lux-hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--fg-muted);
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.lux-hero-scroll .line {
    width: 1px; height: 50px; background: linear-gradient(180deg, var(--gold), transparent);
    animation: scroll-pulse 2.4s infinite var(--ease);
}
@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; }
}

/* External slider controls — luxury arrows + dots */
.lux-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 22, 26, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--fg);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .35s var(--ease);
    pointer-events: auto;
}
.lux-arrow:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: var(--gold-shadow-soft);
    transform: translateY(-50%) scale(1.08);
}
.lux-arrow:focus { outline: none; }
.lux-arrow.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}
.lux-arrow-prev { left: 28px; }
.lux-arrow-next { right: 28px; }
@media (max-width: 720px) {
    .lux-arrow { width: 44px; height: 44px; font-size: .95rem; }
    .lux-arrow-prev { left: 14px; }
    .lux-arrow-next { right: 14px; }
}

.lux-dots {
    position: absolute;
    left: 0; right: 0; bottom: 30px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}
.lux-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all .35s var(--ease);
    border: none;
    padding: 0;
}
.lux-dot:hover { background: rgba(255,255,255,0.7); }
.lux-dot-active {
    background: var(--gold) !important;
    width: 30px;
    border-radius: 6px;
}

/* ---------- Stats ---------- */
.lux-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lux-stat-card {
    background: linear-gradient(160deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.lux-stat-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
}
.lux-stat-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.lux-stat-card:hover::before { transform: scaleX(1); }
.lux-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
}
.lux-stat-label {
    font-size: .82rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 1.5;
}
@media (max-width: 980px) { .lux-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .lux-stats { grid-template-columns: 1fr; } }

/* ---------- About / 2-col ---------- */
.lux-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.lux-about-grid .visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
}
.lux-about-grid .visual img { width: 100%; height: 100%; object-fit: cover; }
.lux-about-grid .visual::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,22,26,0.6));
}
.lux-about-grid .visual-badge {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(20,22,26,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    z-index: 2;
}
.lux-about-grid .visual-badge .yr { font-family: var(--font-display); color: var(--gold); font-size: 1.6rem; }
.lux-about-grid .visual-badge .lbl { font-size: .78rem; color: var(--fg-muted); letter-spacing: .15em; text-transform: uppercase; }
@media (max-width: 900px) {
    .lux-about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Services tabs ---------- */
.lux-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lux-service-card {
    background: linear-gradient(160deg, var(--surface), var(--bg-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.lux-service-card::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at top right, var(--gold-soft), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--ease);
    pointer-events: none;
}
.lux-service-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--gold-shadow-soft); }
.lux-service-card:hover::after { opacity: 1; }
.lux-service-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-soft), transparent);
    border: 1px solid var(--gold-soft);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 22px;
}
.lux-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--fg);
}
.lux-service-card p { font-size: .95rem; color: var(--fg-muted); }
.lux-service-num {
    position: absolute; top: 28px; right: 28px;
    font-family: var(--font-display);
    color: var(--gold-soft);
    font-size: 1.1rem; letter-spacing: .1em;
}
@media (max-width: 900px) { .lux-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lux-services-grid { grid-template-columns: 1fr; } }

/* ---------- Projects grid ---------- */
.lux-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.lux-project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    aspect-ratio: 4/5;
    display: block;
}
.lux-project-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.lux-project-card .pj-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease);
}
.lux-project-card:hover .pj-img { transform: scale(1.06); }
.lux-project-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15,16,20,0.92) 100%);
}
.lux-project-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 30px 28px;
    z-index: 2;
    color: var(--fg);
}
.lux-project-status {
    display: inline-block;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.lux-project-overlay h3 {
    font-size: 1.55rem;
    margin-bottom: 6px;
    color: var(--fg);
}
.lux-project-loc {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem;
    color: var(--fg-muted);
    margin-bottom: 16px;
}
.lux-project-cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: gap .3s var(--ease);
}
.lux-project-card:hover .lux-project-cta { gap: 14px; }
@media (max-width: 900px) { .lux-projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lux-projects-grid { grid-template-columns: 1fr; } }

/* ---------- Features (Neden Biz) ---------- */
.lux-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lux-feature {
    padding: 30px 28px;
    border-left: 2px solid var(--border);
    transition: border-color .3s var(--ease);
}
.lux-feature:hover { border-left-color: var(--gold); }
.lux-feature-num {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .1em;
    margin-bottom: 14px;
    display: block;
}
.lux-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--fg);
    line-height: 1.3;
}
.lux-feature p { font-size: .92rem; color: var(--fg-muted); }
@media (max-width: 900px) { .lux-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lux-features-grid { grid-template-columns: 1fr; } }

/* ---------- Instagram grid ---------- */
.lux-instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.lux-instagram-item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.lux-instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.lux-instagram-item:hover { border-color: var(--gold); }
.lux-instagram-item:hover img { transform: scale(1.08); }
.lux-instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227,173,75,0.65), rgba(184,138,48,0.55));
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s var(--ease);
    font-size: 2rem;
}
.lux-instagram-item:hover .lux-instagram-overlay { opacity: 1; }
.lux-instagram-overlay .ig-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(20,22,26,0.75);
    color: var(--gold);
    font-size: .8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.lux-instagram-item .ig-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(20,22,26,0.7);
    color: var(--gold);
    font-size: .72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 1;
}
@media (max-width: 720px) {
    .lux-instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 420px) {
    .lux-instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Testimonials ---------- */
.lux-testimonials {
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
}
.lux-testimonials::before, .lux-testimonials::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.lux-testimonials::before { top: 0; }
.lux-testimonials::after { bottom: 0; }
.lux-testi-track {
    max-width: 880px;
    margin: 40px auto 0;
    text-align: center;
}
.lux-testi-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--fg);
    line-height: 1.5;
    margin-bottom: 30px;
}
.lux-testi-quote::before { content: '\201C'; color: var(--gold); font-size: 2.4rem; line-height: 0; margin-right: 6px; }
.lux-testi-quote::after { content: '\201D'; color: var(--gold); font-size: 2.4rem; line-height: 0; margin-left: 6px; }
.lux-testi-author {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* ---------- CTA banner ---------- */
.lux-cta {
    background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lux-cta::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, var(--gold-soft), transparent 60%);
    opacity: .35;
}
.lux-cta-inner { position: relative; }
.lux-cta h2 { margin-bottom: 18px; }
.lux-cta p { margin-bottom: 30px; }

/* ---------- Page banner / sub-page hero ---------- */
.lux-page-banner {
    padding: 220px 0 110px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lux-page-banner::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, var(--gold-soft), transparent 55%);
    opacity: .4;
}
.lux-page-banner h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 14px;
    position: relative;
}
.lux-breadcrumb {
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--fg-muted);
    position: relative;
}
.lux-breadcrumb a { color: var(--fg-muted); }
.lux-breadcrumb a:hover { color: var(--gold); }
.lux-breadcrumb .sep { margin: 0 12px; color: var(--gold); }

/* ---------- Article / page content ---------- */
.lux-article {
    max-width: 880px;
    margin: 0 auto;
}
.lux-article p { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 1.2em; line-height: 1.85; }
.lux-article h2 { font-size: 1.9rem; margin: 1.6em 0 .6em; color: var(--fg); }
.lux-article h3 { font-size: 1.4rem; margin: 1.4em 0 .5em; color: var(--gold); }
.lux-article img { border-radius: var(--radius); margin: 1em 0; }
.lux-article a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
.lux-article ul, .lux-article ol { margin: 0 0 1.4em 1.4em; color: var(--fg-muted); }
.lux-article li { margin-bottom: .5em; }
.lux-article blockquote {
    border-left: 3px solid var(--gold);
    padding: 6px 22px;
    margin: 1.6em 0;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--fg);
    font-size: 1.2rem;
}

/* ---------- Project list (kategori) two-col rows ---------- */
.lux-listing { display: grid; gap: 100px; }
.lux-listing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.lux-listing-row:nth-child(even) .lux-listing-media { order: 2; }
.lux-listing-media {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5/4;
    position: relative;
}
.lux-listing-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.lux-listing-row:hover .lux-listing-media img { transform: scale(1.05); }
.lux-listing-num {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: .2em;
    margin-bottom: 12px;
    display: block;
}
.lux-listing-text h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); margin-bottom: 18px; }
.lux-listing-text p { color: var(--fg-muted); margin-bottom: 24px; }
@media (max-width: 900px) {
    .lux-listing-row { grid-template-columns: 1fr; gap: 30px; }
    .lux-listing-row:nth-child(even) .lux-listing-media { order: 0; }
}

/* ---------- Contact ---------- */
.lux-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.lux-contact-card {
    background: linear-gradient(160deg, var(--surface), var(--bg-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all .4s var(--ease);
}
.lux-contact-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.lux-contact-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
    border: 1px solid var(--gold-soft);
}
.lux-contact-label {
    font-size: .78rem; color: var(--gold);
    letter-spacing: .25em; text-transform: uppercase; margin-bottom: 10px;
}
.lux-contact-value { font-size: 1rem; color: var(--fg); }
.lux-contact-value a { color: var(--fg); }
.lux-contact-value a:hover { color: var(--gold); }
@media (max-width: 800px) { .lux-contact-grid { grid-template-columns: 1fr; } }

.lux-map { margin-top: 60px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.lux-map iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.3) contrast(1.05) brightness(.85); }

/* ---------- Footer ---------- */
.lux-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    color: var(--fg-muted);
}
.lux-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}
.lux-footer-col { min-width: 0; }
.lux-footer h4 {
    font-family: var(--font-body);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 500;
}
.lux-footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 22px !important;
}
.lux-footer-logo-wrap {
    display: inline-block !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    flex: 0 0 56px !important;
    overflow: hidden !important;
}
/* Nuclear: any img inside .lux-footer is constrained to max 56x56 */
.lux-footer img,
.lux-footer-logo img,
.lux-footer-logo > img,
.lux-footer-logo-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain !important;
    display: block !important;
}
.lux-footer-logo-text {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    letter-spacing: .14em !important;
    color: var(--fg) !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
}
.lux-footer-desc { font-size: .92rem; line-height: 1.7; margin-bottom: 22px; }
.lux-footer-social { display: flex; gap: 10px; }
.lux-footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    color: var(--fg-muted);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .3s var(--ease);
}
.lux-footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.lux-footer ul { list-style: none; }
.lux-footer ul li { margin-bottom: 10px; }
.lux-footer ul a {
    color: var(--fg-muted);
    font-size: .92rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .25s var(--ease);
    text-transform: capitalize;
}
.lux-footer ul a > i { font-size: .65rem; color: var(--gold); transition: transform .25s var(--ease); }
.lux-footer ul a:hover > i { transform: translateX(2px); }
.lux-footer ul a:hover { color: var(--gold); padding-left: 4px; }

.lux-footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: .9rem; }
.lux-footer-contact-item i { color: var(--gold); margin-top: 4px; }

.lux-footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-size: .82rem;
}
.lux-footer-bottom .legal a { color: var(--fg-muted); margin-left: 18px; }
.lux-footer-bottom .legal a:hover { color: var(--gold); }
.lux-footer-bottom .copy { color: var(--fg-dim); }

@media (max-width: 900px) {
    .lux-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .lux-footer-grid { grid-template-columns: 1fr; }
    .lux-footer-bottom { flex-direction: column; align-items: flex-start; }
    .lux-footer-bottom .legal a { margin-left: 0; margin-right: 18px; }
}

/* ---------- Whatsapp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 90;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float img { width: 30px; height: 30px; }

/* ---------- Top to scroll ---------- */
.lux-top {
    position: fixed; bottom: 92px; right: 30px;
    z-index: 80;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg) !important;
    display: inline-flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all .3s var(--ease);
    box-shadow: var(--gold-shadow-soft);
}
.lux-top.show { opacity: 1; visibility: visible; }
.lux-top:hover { transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Utility ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.muted { color: var(--fg-muted); }
.mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; } .mb-60 { margin-bottom: 60px; }

/* swiper safe defaults */
.swiper { width: 100%; }
.swiper-slide { background: var(--bg-2); }
