/* ── SELF-HOSTED FUTURA ───────────────────────────────────────────── */
@font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-light-italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-gold: #D1C281;
    --brand-navy: #1E183B;
    --light-bg: #FAF9F6;
}

body {
    font-family: 'Futura', 'Jost', sans-serif;
    background-color: var(--light-bg);
    color: var(--brand-navy);
    scroll-behavior: smooth;
    margin: 0;
    overflow-x: clip;
}

/* Typography */
.serif { font-family: 'Futura', 'Jost', sans-serif; }
.heading-luxury {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* Navigation Glass */
/* ── FLOATING PILL NAV ───────────────────────────────────────────── */
#main-nav {
    transition: padding 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
#main-nav.nav-shrunk {
    padding-left: 14vw;
    padding-right: 14vw;
}
#main-nav.nav-shrunk .pill-nav {
    max-width: 680px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}
#main-nav.nav-shrunk .nav-links {
    gap: 1.25rem;
    font-size: 9px;
}
.pill-nav {
    background: rgba(250, 249, 246, 0.82);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(209, 194, 129, 0.22);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(30, 24, 59, 0.09), 0 2px 8px rgba(30, 24, 59, 0.05);
    transition: box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.5s cubic-bezier(0.23, 1, 0.32, 1), max-width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pill-nav:hover {
    box-shadow: 0 12px 40px rgba(30, 24, 59, 0.13), 0 2px 10px rgba(30, 24, 59, 0.06);
}

/* Logo crossfade — both images always rendered, opacity swaps */
#main-nav img[alt="Logo"] {
    transition: opacity 0.4s ease;
}
.logo-white  { opacity: 0; }
.logo-default { opacity: 1; }

/* Nav links always transition color smoothly */
#main-nav .pill-nav a,
#main-nav .pill-nav button,
#main-nav #menu-btn {
    transition: color 0.4s ease;
}

/* ── NAV TRANSPARENT STATE (home page at scroll = 0) ─────────────── */
#main-nav.nav-at-top .pill-nav {
    background: rgba(250, 249, 246, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(250, 249, 246, 0.25);
    box-shadow: none;
}
#main-nav.nav-at-top .pill-nav a,
#main-nav.nav-at-top .pill-nav button {
    color: #1E183B;
}
#main-nav.nav-at-top .pill-nav button svg {
    stroke: #1E183B;
}
#main-nav.nav-at-top .pill-nav a:hover,
#main-nav.nav-at-top .pill-nav button:hover {
    color: #D1C281;
}
#main-nav.nav-at-top .pill-cta {
    background: transparent;
    color: #1E183B;
    border: 1px solid rgba(30, 24, 59, 0.35);
}
#main-nav.nav-at-top .pill-cta:hover {
    background: rgba(30, 24, 59, 0.08);
    color: #1E183B;
    border-color: rgba(30, 24, 59, 0.6);
}
#main-nav.nav-at-top .logo-default { opacity: 0; }
#main-nav.nav-at-top .logo-white  { opacity: 1; }
.pill-cta {
    background: #1E183B;
    color: #D1C281;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.pill-cta:hover {
    background: #D1C281;
    color: #1E183B;
    transform: scale(1.03);
}
.pill-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: rgba(250, 249, 246, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 194, 129, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 16px 48px rgba(30, 24, 59, 0.12);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
}
.pill-services:hover .pill-dropdown,
.pill-services:focus-within .pill-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
#main-nav.nav-at-top .pill-dropdown {
    background: rgba(250, 249, 246, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(250, 249, 246, 0.25);
    box-shadow: none;
}
#main-nav.nav-at-top .pill-dropdown a {
    color: #1E183B;
}
#main-nav.nav-at-top .pill-dropdown a:hover {
    color: #D1C281;
}
/* Legacy nav-glass kept for sub-pages until they're updated */
.nav-glass {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(209, 194, 129, 0.2);
}

/* =============================================
   HERO INDICATORS
   ============================================= */
#hero .indicator {
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.5s ease;
}

#hero .indicator.active {
    width: 2.5rem !important;
    background: #D1C281 !important;
    opacity: 1 !important;
}

/* Hero slide label fade */
#hero-slide-label {
    transition: opacity 0.4s ease;
}

/* =============================================
   ANIMATIONS  (deduplicated — defined once)
   ============================================= */
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.animate-slow-zoom { animation: slowZoom 12s linear infinite alternate; }

@keyframes spin-linear { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}
.animate-spin-slow { animation: spin-linear 20s linear infinite; }

@keyframes liquidFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
#process-svg { animation: liquidFloat 6s ease-in-out infinite; }

/* =============================================
   CURSOR GLOW  (deduplicated — defined once)
   ============================================= */
/* Custom cursor dot — rides alongside native pointer */
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-200px, -200px);
    transition: width 0.3s ease, height 0.3s ease;
    will-change: transform;
}
#cursor-glow.cursor-hover-link {
    width: 60px;
    height: 60px;
}
#cursor-glow.cursor-hover-btn {
    width: 120px;
    height: 120px;
}

/* =============================================
   MOBILE MENU
   ============================================= */

/* Keep menu in the DOM but slide it off-screen */
#mobile-menu {
    display: flex !important; 
    position: fixed;
    inset: 0;
    z-index: 105;
    background-color: #1E183B;
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
    font-style: normal !important;
}

/* Hidden state — slides up off-screen */
.hidden-menu { 
    transform: translateY(-100%) !important; 
}

/* Visible state */
#mobile-menu:not(.hidden-menu) {
    transform: translateY(0) !important;
}

/* Close button */
#close-menu-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}
#close-menu-btn:active {
    transform: scale(0.9);
}

/* =============================================
   SOCIAL ICONS
   ============================================= */
.social-icon {
    padding: 0.625rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.5s;
    color: var(--brand-navy);
}
.social-icon:hover {
    transform: translateX(-4px);
    background: var(--brand-navy);
    color: var(--brand-gold);
}

/* =============================================
   PROCESS WHEEL
   ============================================= */
#process-wheel {
    overflow: visible !important;
}

.process-item {
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: right center;
    transition: opacity 0.7s, color 0.7s, transform 0.7s;
    will-change: transform, opacity;
    white-space: nowrap;
    color: #1E183B;
}

.item-active h3 {
    color: var(--brand-gold) !important;
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.process-sub {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(30, 24, 59, 0.45);
    margin-top: 0.5rem;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.item-active .process-sub {
    color: rgba(209, 194, 129, 0.7);
}

/* SVG side (Left) */
#process-wheel .w-full.md\:w-1\/2:first-child {
    z-index: 5;
    background: transparent;
}

/* Wheel side (Right) */
#process-wheel .w-full.md\:w-1\/2:last-child {
    z-index: 20;
    overflow: visible !important;
}

@media (max-width: 767px) {
    /* Full-width left panel, top-anchored */
    .process-left-panel {
        width: 100% !important;
        padding-top: 4.5rem !important;
        padding-bottom: 2rem !important;
        justify-content: flex-start !important;
        height: 100vh;
        overflow-y: auto;
    }

    /* Tighten spacing on mobile */
    .process-left-panel #day-range  { margin-bottom: 1.5rem; }
    .process-left-panel #process-outcome-wrap { max-width: 90vw; }

    /* Mobile progress dots */
    .mob-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(30, 24, 59, 0.18);
        display: block;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        flex-shrink: 0;
    }

    .mob-dot.active {
        background: #D1C281;
        width: 26px;
        border-radius: 4px;
    }
}

/* =============================================
   CALCULATOR
   ============================================= */
.plan-btn {
    font-family: 'Futura', 'Jost', sans-serif;
    letter-spacing: 0.1em;
    font-size: 12px;
}

#quality-slider {
    cursor: pointer;
    height: 2px;
}

#calc-result.active {
    display: flex;
    animation: slideUpFade 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   FOOTER
   ============================================= */
footer a {
    position: relative;
    display: inline-block;
}

footer ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--brand-gold);
    transition: width 0.3s ease;
}

footer ul a:hover::after {
    width: 100%;
}

footer input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =============================================
   GLASS OVERLAY  (deduplicated — defined once)
   ============================================= */
.glass-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%) translateY(20px);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 2rem;
    padding: 2rem 1rem;
    opacity: 0;
    transition: all 0.6s ease;
    text-align: center;
    /* FIX: replaced invalid Tailwind-as-CSS with proper CSS */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .glass-overlay,
.group:hover .glass-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.glass-overlay .heading-luxury {
    color: var(--brand-navy);
}

.glass-overlay .flex {
    flex-direction: column;
    align-items: center;
}

.glass-overlay a {
    margin-top: 1rem;
    display: inline-block;
}

/* =============================================
   TRUST STATS
   ============================================= */
.stat-circle {
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

#trust-stats .serif {
    font-weight: 500;
}

#trust-stats .group:hover .stat-circle {
    filter: drop-shadow(0 0 8px rgba(209, 194, 129, 0.4));
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-btn-wrap {
    position: relative;
}

.portfolio-slider-wrapper {
    overflow: hidden;
}

#portfolio-container {
    display: flex;
    align-items: stretch;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 24px;
}

#portfolio-container::-webkit-scrollbar {
    display: none;
}

.portfolio-card {
    flex: 0 0 calc(50% - 20px);
    scroll-snap-align: start;
    transition: opacity 0.5s ease;
}

.portfolio-card.is-hidden {
    display: none;
}

/* Card inner — full clickable area */
.pcard-inner {
    display: block;
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border-radius: 1.75rem;
    background: #1E183B;
    text-decoration: none;
}

/* Image */
.pcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.pcard-inner:hover .pcard-img {
    transform: scale(1.07);
}

/* Dark gradient overlay — always present, deepens on hover */
.pcard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,24,59,0.92) 0%, rgba(30,24,59,0.3) 45%, transparent 100%);
    transition: opacity 0.5s ease;
    opacity: 0.75;
}
.pcard-inner:hover .pcard-overlay {
    opacity: 1;
}

/* Bottom info — always visible, slides up on hover */
.pcard-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    transform: translateY(6px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pcard-inner:hover .pcard-info {
    transform: translateY(0);
}

.pcard-cat {
    display: block;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #D1C281;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.pcard-title {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s ease;
}
.pcard-inner:hover .pcard-cta {
    color: #D1C281;
}

.filter-btn.active {
    opacity: 1 !important;
    border-bottom: 1px solid #1E183B;
}

/* Nav arrows */
.port-nav-btn {
    position: absolute;
    top: 50%;
    left: -24px;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1E183B;
    color: #D1C281;
    border: 1px solid #D1C281;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.port-nav-btn:hover {
    background: #D1C281;
    color: #1E183B;
}

.port-nav-next {
    left: auto;
    right: -24px;
}

/* Disabled arrow */
.port-nav-btn.is-disabled {
    opacity: 0.18;
    cursor: default;
    pointer-events: none;
}

/* Drag cursor */
.portfolio-slider-wrapper {
    cursor: grab;
    user-select: none;
}
.portfolio-slider-wrapper.is-dragging {
    cursor: grabbing;
}

/* Scroll progress bar */
.port-progress-wrap {
    margin-top: 20px;
    padding: 0 2px;
}
.port-progress-track {
    position: relative;
    height: 1px;
    background: rgba(30,24,59,0.08);
    border-radius: 1px;
}
.port-progress-thumb {
    position: absolute;
    top: -0.5px;
    height: 2px;
    background: #1E183B;
    border-radius: 1px;
    transition: left 0.12s ease, width 0.12s ease;
}

/* Section heading reveal */
.port-heading-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.23,1,0.32,1),
                transform 0.65s cubic-bezier(0.23,1,0.32,1);
}
.port-heading-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-card {
        flex: 0 0 calc(100% - 24px);
    }
    .pcard-inner {
        aspect-ratio: 3 / 4;
    }
    .port-nav-btn {
        display: flex;
        width: 40px;
        height: 40px;
        left: 16px;
        right: auto;
    }
    .port-nav-next {
        left: auto;
        right: 16px;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about img {
    filter: grayscale(0%) contrast(110%);
    transition: filter 1.5s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

#about .group:hover img {
    filter: grayscale(100%) contrast(100%);
    transform: scale(1.05);
}

#about h2 {
    margin-left: -5%;
}

@media (max-width: 1024px) {
    #about h2 {
        margin-left: 0;
    }
}

/* =============================================
   DOCK / CLIENT LOGOS
   ============================================= */
.dock-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding: 20px;
    perspective: 1000px;
}

.dock-item {
    width: 80px;
    height: 80px;
    display: flex;
    /* FIX: replaced invalid Tailwind-as-CSS with proper CSS */
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(30, 24, 59, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(30, 24, 59, 0.05);
}

.dock-item img {
    width: 60%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* =============================================
   SERVICES PARALLAX
   ============================================= */
#services-parallax-master * {
    font-style: normal !important;
}

/* =============================================
   SERVICES — STICKY SCROLL PARALLAX
   ============================================= */
.svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.svc-bg.active {
    opacity: 1;
    transform: scale(1.0);
}

.svc-panel {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    padding: 0 10% 0 10%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

@media (min-width: 768px) {
    .svc-panel {
        padding: 0 8% 0 12%;
    }
}

.svc-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.svc-panel.exit-up {
    opacity: 0;
    transform: translateY(-50px);
}

.svc-heading {
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    line-height: 0.92;
    margin-bottom: 2rem;
}

.svc-desc {
    font-family: 'Futura', 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 380px;
    margin-bottom: 3rem;
}

.svc-tag {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border-left: 1px solid #D1C281;
    padding-left: 10px;
    line-height: 1.5;
}

.svc-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0;
    display: block;
}

.svc-dot.active {
    background: #D1C281;
    height: 28px;
}

.btn-service {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border-radius: 50px;
    transition: all 0.5s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.btn-service:hover {
    background: white;
    color: #1E183B;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: 1px solid #D1C281;
    color: #D1C281;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.btn-cta:hover {
    background: #D1C281;
    color: #1E183B;
}

@media (max-width: 768px) {
    .svc-panel {
        padding: 0 6% 0 6%;
        align-items: flex-end;
        padding-bottom: 14vh;
    }
    .svc-features {
        display: none;
    }
}

/* =============================================
   CLIENTELE
   ============================================= */
/* ── CLIENTELE AUTO-SCROLL MARQUEE (Logos3 design) ─────────────────────── */
.client-marquee-wrap {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.client-marquee-wrap.is-dragging { cursor: grabbing; }

/* Fade edges — mirrors Logos3's gradient overlays */
.client-marquee-wrap::before,
.client-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.client-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #FAF9F6 0%, transparent 100%);
}
.client-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #FAF9F6 0%, transparent 100%);
}

/* Each row is its own overflow-hidden strip */
.client-marquee-row {
    overflow: hidden;
}

.client-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Each logo item — 3 visible at a time */
.client-box {
    flex: 0 0 calc(100vw / 3);
    max-width: 220px;
    min-width: 140px;
    aspect-ratio: 16 / 9;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(30, 24, 59, 0.05);
    margin: 0 10px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
.client-box img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}
.client-box:hover {
    border-color: rgba(209,194,129,0.5);
    box-shadow: 0 8px 28px rgba(30,24,59,0.07);
}






.review-grid-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #FAF9F6;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(30, 24, 59, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
}

.review-card:hover {
    background: #FFFFFF;
    border-color: #D1C281;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 24, 59, 0.05);
}

/* MOBILE SLIDER LOGIC */
@media (max-width: 3000px) {
    .review-grid-scroller {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    
    .review-grid-scroller::-webkit-scrollbar { display: none; }

    .review-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
    }
}


/* Slider Core */
#rev-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#rev-track::-webkit-scrollbar { display: none; }

/* DESKTOP: 2 Cards */
.rev-card-main {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(30,24,59,0.06);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(30,24,59,0.05);
}

/* Section reveal for reviews */
.rev-section-reveal,
.vid-section-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s cubic-bezier(0.23,1,0.32,1),
                transform 0.65s cubic-bezier(0.23,1,0.32,1);
}
.rev-section-reveal.is-visible,
.vid-section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── VIDEO REVIEW CARDS ── */
.vid-review-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9 / 14;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #0d0b1e;
    cursor: pointer;
    border: none;
    padding: 0;
    text-align: left;
}

/* Card background — Instagram embed iframe */
.vid-card-bg {
    position: absolute;
    inset: 0;
    background-color: #0d0b1e;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.vid-review-card:hover .vid-card-bg {
    transform: scale(1.04);
}
.vid-card-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    border: none;
    pointer-events: none;
}

/* Instagram icon — top-right corner */
.vid-ig-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}
.vid-review-card:hover .vid-ig-icon {
    color: rgba(255,255,255,0.75);
}

.vid-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,10,30,0.9) 0%, rgba(14,10,30,0.25) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}
.vid-review-card:hover .vid-card-overlay {
    background: linear-gradient(to top, rgba(14,10,30,0.95) 0%, rgba(14,10,30,0.45) 55%, rgba(14,10,30,0.1) 100%);
}

.vid-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #D1C281;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease;
    box-shadow: 0 8px 32px rgba(209,194,129,0.25);
    padding-left: 4px; /* optical centering for play icon */
}
.vid-review-card:hover .vid-play-btn {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(209,194,129,0.45);
}

.vid-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    transform: translateY(4px);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.vid-review-card:hover .vid-card-info {
    transform: translateY(0);
}

/* MOBILE: 1 Card Only */
@media (max-width: 768px) {
    .rev-card-main {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 2.5rem;
    }
    #rev-track {
        gap: 0;
    }
    .vid-review-card {
        aspect-ratio: 4 / 5;
    }
}







/* --- FACTORY V2 SECTION --- */
#factory-v2 {
    background-color: #000;
}

.factory-video-asset {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Specific button overrides to prevent global conflicts */
#factory-v2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-style: normal !important; /* Enforcing Lisno No-Italic Rule */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #factory-v2 h2 {
        font-size: 3rem;
        line-height: 1.1;
    }
}

/* =============================================
   ABOUT SECTION — PARALLAX + ANIMATIONS
   ============================================= */

/* Marquee scroll */
@keyframes aboutMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.about-marquee {
    animation: aboutMarquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .about-marquee { animation: none; }
}

/* Scroll-reveal base state */
.about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .about-reveal { opacity: 1; transform: none; transition: none; }
}

/* Service cards — staggered entrance */
.about-service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease,
                background-color 0.5s ease;
}
.about-service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .about-service-card { opacity: 1; transform: none; }
}

/* =============================================
   RESIDENTIAL HERO — LUMINA WEBGL SLIDER
   ============================================= */
.res-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #1E183B;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.9s ease;
}
.res-slider.loaded { opacity: 1; }

.res-slider .webgl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Main content — centred ── */
.res-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    z-index: 20;
    text-align: center;
    width: 100%;
    max-width: 54rem;
    padding: 0 2rem;
    pointer-events: none;
}
.res-slider .slide-content a {
    pointer-events: auto;
}
@media (max-width: 768px) {
    .res-slider .slide-content {
        transform: translate(-50%, -55%);
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

.res-slider .slide-eyebrow {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #D1C281;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.res-slider .slide-eyebrow::before,
.res-slider .slide-eyebrow::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: #D1C281;
    flex-shrink: 0;
}

.res-slider .slide-title {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 500;
    font-style: normal;
    color: #ffffff;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    min-height: 1.1em;
}

.res-slider .slide-description {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    letter-spacing: 0.04em;
    max-width: 30rem;
    margin: 0 auto;
}

/* ── Bottom nav — 6 items horizontal ── */
.res-slider .slides-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: row;
}

.slide-nav-item {
    flex: 1;
    cursor: pointer;
    padding: 0.8rem 1.25rem 1.4rem;
    opacity: 0.35;
    transition: opacity 0.35s ease;
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    min-width: 0;
}
.slide-nav-item.active  { opacity: 1; }
.slide-nav-item:hover   { opacity: 0.65; }

.slide-progress-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 0.65rem;
    overflow: hidden;
}
.slide-progress-fill {
    height: 100%;
    width: 0%;
    background: #D1C281;
    transition: width 0.1s linear, opacity 0.3s ease;
}
.slide-nav-title {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-nav-item.active .slide-nav-title { color: #D1C281; }

@media (max-width: 640px) {
    .slide-nav-title { font-size: 7px; letter-spacing: 0.15em; }
    .slide-nav-item  { padding: 0.6rem 0.6rem 1rem; }
}

/* ── Modular Kitchen 3D Assembly ─────────────────────────── */
#mk-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0E0C1D;
}
.mk-u { position: absolute; transform-style: preserve-3d; }
.mk-f { position: absolute; box-sizing: border-box; }
.mk-pill {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
    padding: 7px 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    transition: all .5s;
    cursor: default;
    white-space: nowrap;
}
.mk-pill.mk-active { color: #D1C281; border-color: rgba(209,194,129,.55); background: rgba(209,194,129,.07); }
.mk-pill.mk-done   { color: rgba(209,194,129,.45); border-color: rgba(209,194,129,.25); }
.mk-base, .mk-wall, .mk-counter, .mk-shutter { will-change: transform, opacity; }
@media (max-width: 960px) { #mk-scene-outer { transform: scale(.72) !important; transform-origin: center center; } }
@media (max-width: 640px) { #mk-scene-outer { transform: scale(.52) !important; transform-origin: center center; } }
@media (max-width: 420px) { #mk-scene-outer { transform: scale(.40) !important; transform-origin: center center; } }

/* ══════════════════════════════════════════════════════
   RESIDENTIAL PAGE — ENHANCED DESIGN SYSTEM
   Spring physics, Framer-quality reveals, editorial layout
   ══════════════════════════════════════════════════════ */

/* Spring easing tokens (approximates Framer Motion default spring) */
:root {
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-reveal: 0.72s;
}

/* ── Global Reveal System ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-reveal) var(--ease-spring),
              transform var(--duration-reveal) var(--ease-spring);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity var(--duration-reveal) var(--ease-spring),
              transform var(--duration-reveal) var(--ease-spring);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity var(--duration-reveal) var(--ease-spring),
              transform var(--duration-reveal) var(--ease-spring);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(16px);
  transition: opacity var(--duration-reveal) var(--ease-spring),
              transform var(--duration-reveal) var(--ease-spring);
}
.reveal-scale.in { opacity: 1; transform: scale(1) translateY(0); }

/* Stagger offsets */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Section Chapter Mark ─────────────────────────── */
.res-chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.res-chapter-line {
  width: 32px;
  height: 1px;
  background: #D1C281;
  flex-shrink: 0;
}
.res-chapter-label {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #D1C281;
}

/* ── Finish Swatches ──────────────────────────────── */
.mk-swatch {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s var(--ease-spring), transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
  cursor: default;
}
.mk-swatch:hover {
  border-color: rgba(209,194,129,0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.mk-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mk-swatch:hover::after { opacity: 1; }

/* ── Offer Rows ───────────────────────────────────── */
.offer-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 28px;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(30,24,59,0.08);
  cursor: default;
  transition: background 0.3s ease;
}
.offer-row:first-child { border-top: 1px solid rgba(30,24,59,0.08); }
@media (max-width: 768px) {
  .offer-row { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .offer-row .offer-body, .offer-row .offer-arrow { display: none; }
}
.offer-num {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: rgba(209,194,129,0.2);
  line-height: 1;
  transition: color 0.4s var(--ease-spring);
}
.offer-row:hover .offer-num { color: rgba(209,194,129,0.45); }
.offer-title {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #1E183B;
  transition: color 0.3s ease;
}
.offer-row:hover .offer-title { color: #1E183B; }
.offer-body {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(30,24,59,0.5);
  line-height: 1.7;
  max-width: 420px;
}
.offer-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(209,194,129,0.25);
  transition: color 0.3s ease, transform 0.3s var(--ease-spring);
}
.offer-row:hover .offer-arrow {
  color: #D1C281;
  transform: translate(3px,-3px);
}

/* ── Stats Section ────────────────────────────────── */
.stat-item {
  text-align: center;
  padding: 40px 48px;
  position: relative;
}
.stat-num {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: #FFFFFF;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.stat-divider {
  width: 32px;
  height: 1px;
  background: rgba(209,194,129,0.4);
  margin: 0 auto 14px;
}
.stat-label {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #D1C281;
}

/* ── Process Timeline ─────────────────────────────── */
.process-connector {
  position: absolute;
  top: 23px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 1px;
  background: rgba(209,194,129,0.15);
  overflow: hidden;
  display: none;
}
@media (min-width: 768px) { .process-connector { display: block; } }
.process-connector-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #D1C281, rgba(209,194,129,0.3));
  transition: width 1.2s var(--ease-spring);
}
.process-connector-fill.in { width: 100%; }
.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(209,194,129,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.4s ease, background 0.4s ease;
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #D1C281;
  position: relative;
  z-index: 1;
  background: #FAF9F6;
}
.process-step:hover .process-step-num {
  border-color: #D1C281;
  background: rgba(209,194,129,0.08);
}

/* ── Dark CTA ─────────────────────────────────────── */
.cta-editorial-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.cta-editorial-word {
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.2em;
  white-space: nowrap;
  user-select: none;
  transform: translateY(10px);
}
.cta-diagonal-lines {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    45deg,
    #D1C281 0,
    #D1C281 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 24px 24px;
  pointer-events: none;
}

/* ── Kitchen Inclusions — Animated Line ───────────── */
.inclusion-line {
  width: 32px;
  height: 1px;
  background: #D1C281;
  flex-shrink: 0;
  margin-top: 10px;
  transition: width 0.5s var(--ease-spring);
}
.group:hover .inclusion-line { width: 52px; }

/* ── Wardrobe Section Top Accent ──────────────────── */
.section-gold-rule {
  width: 48px;
  height: 1px;
  background: #D1C281;
  margin-bottom: 32px;
}

/* ── Card number badge ────────────────────────────── */
.card-seq {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

/* ── CTA Button — btn-cta already defined; add ghost variant ── */
.btn-ghost-light {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  font-family: 'Futura', 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: border-color 0.4s var(--ease-spring), color 0.4s ease, background 0.4s ease;
  cursor: pointer;
}
.btn-ghost-light:hover {
  border-color: #D1C281;
  color: #D1C281;
  background: rgba(209,194,129,0.06);
}


/* ── SELECTED WORK GALLERY (homepage) ───────────────────────────────────── */
.sw-filter-btn {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(30,24,59,0.15);
    border-radius: 100px;
    color: rgba(30,24,59,0.45);
    background: transparent;
    cursor: pointer;
    transition: all 0.28s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}
.sw-filter-btn svg {
    width: 0;
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
    margin-right: 0;
}
.sw-filter-btn:hover svg,
.sw-filter-btn.active svg {
    width: 13px;
    opacity: 1;
    margin-right: 0.45rem;
}
.sw-filter-btn:hover  { border-color: #1E183B; color: #1E183B; }
.sw-filter-btn.active { background: #1E183B; color: #D1C281; border-color: #1E183B; }

/* Card */
.sw-card {
    display: block;
    text-decoration: none;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.sw-card.sw-hiding  { opacity: 0; transform: scale(0.9); pointer-events: none; }
.sw-card.sw-showing { opacity: 0; transform: scale(0.9); }
.sw-card.sw-hidden  { display: none !important; }

/* Hover overlay */
.sw-card .sw-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.sw-card .sw-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.sw-card:hover .sw-img-wrap img { transform: scale(1.06); }

.sw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,12,29,0.88) 0%, rgba(14,12,29,0.45) 50%, rgba(14,12,29,0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sw-card:hover .sw-overlay { opacity: 1; }

.sw-overlay-content { width: 100%; }

.sw-badge {
    display: inline-block;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D1C281;
    border: 1px solid rgba(209,194,129,0.4);
    padding: 3px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.sw-title {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 4px;
    transform: translateY(6px);
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.sw-card:hover .sw-title { transform: translateY(0); }

.sw-meta {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    transform: translateY(6px);
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1) 0.04s;
}
.sw-card:hover .sw-meta { transform: translateY(0); }

.sw-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D1C281;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.08s, transform 0.3s cubic-bezier(0.23,1,0.32,1) 0.08s;
}
.sw-card:hover .sw-cta { opacity: 1; transform: translateY(0); }


/* ── ADMIN LOGIN BUTTON ───────────────────────────────────────────── */
#interio-admin-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

#interio-admin-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 20px;
    border-radius: 100px;
    background: #1E183B;
    box-shadow: 0 8px 32px rgba(30, 24, 59, 0.28), 0 2px 8px rgba(30, 24, 59, 0.16);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s ease,
                box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}

#interio-admin-btn a svg {
    width: 18px;
    height: 18px;
    color: #D1C281;
    flex-shrink: 0;
}

#interio-admin-btn span.admin-label {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D1C281;
}

#interio-admin-btn a::before {
    content: 'Visit Admin Login';
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1E183B;
    color: #FAF9F6;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

#interio-admin-btn a::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1E183B;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#interio-admin-btn a:hover::before,
#interio-admin-btn a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#interio-admin-btn a:hover {
    transform: scale(1.05);
    background: #150f2e;
    box-shadow: 0 12px 40px rgba(30, 24, 59, 0.38), 0 4px 12px rgba(30, 24, 59, 0.22);
}


/* ═══════════════════════════════════════════════
   INSTAGRAM FEED CAROUSEL
═══════════════════════════════════════════════ */
.ig-carousel-viewport {
    overflow: hidden;
    padding: 24px;
    margin: -24px;
}
.ig-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}
.ig-post-card {
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
}
.ig-card-embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 16px;
}
.ig-card-embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    height: 220%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}
.ig-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 40%);
}
.ig-card-action-btn {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    background: #1E183B;
    color: #D1C281;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}
.ig-card-action-btn:hover {
    background: #D1C281;
    color: #1E183B;
    transform: scale(1.03);
}
.ig-dot { display: inline-block; height: 1px; transition: all 0.5s ease; }
@media (max-width: 767px) {
    .ig-post-card { width: 80vw; height: 420px; }
}



/* ═══════════════════════════════════════════════════════════
   Project Pages (Shared)
   ══════════════════════════════════════════════════════════ */
/* ── Project page ─────────────────────────────── */
        .proj-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: proj-kb 9s ease-out forwards;
        }
        @keyframes proj-kb {
            from { transform: scale(1.06); }
            to   { transform: scale(1.00); }
        }
        .proj-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(.22,1,.36,1);
            cursor: zoom-in;
        }

        /* Masonry gallery */
        .masonry-grid {
            columns: 3;
            column-gap: 8px;
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 8px;
            overflow: hidden;
            border-radius: 6px;
            background: #e8e4dc;
        }
        .masonry-item:hover .proj-img { transform: scale(1.02); }
        @media (max-width: 1024px) { .masonry-grid { columns: 2; } }
        @media (max-width: 480px)  { .masonry-grid { columns: 1; } }

        .proj-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
        }
        .proj-reveal.is-visible { opacity: 1; transform: none; }
        .proj-reveal-d1 { transition-delay: 0.10s; }
        .proj-reveal-d2 { transition-delay: 0.20s; }
        .proj-reveal-d3 { transition-delay: 0.34s; }

        /* Hero inline meta row */
        .hero-meta-row {
            display: flex;
            align-items: flex-start;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.10);
            margin-top: 1.75rem;
            padding-top: 1.5rem;
        }
        .hero-meta-col {
            flex: 1;
            padding-right: 2rem;
        }
        .hero-meta-col + .hero-meta-col {
            border-left: 1px solid rgba(255,255,255,0.10);
            padding-left: 2rem;
            padding-right: 2rem;
        }
        @media (max-width: 640px) {
            .hero-meta-row { flex-direction: column; gap: 1.25rem; border-top: none; margin-top: 1.5rem; padding-top: 0; }
            .hero-meta-col + .hero-meta-col { border-left: none; padding-left: 0; padding-right: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
        }

        /* Related card hover */
        .rel-card { overflow: hidden; transition: box-shadow 0.4s ease; }
        .rel-card:hover { box-shadow: 0 20px 60px rgba(10,9,20,0.18); }
        .rel-img { transition: transform 0.65s ease; }
        .rel-card:hover .rel-img { transform: scale(1.05); }

        /* Lightbox */
        #proj-lb {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(10,9,20,0.97);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
        }
        #proj-lb.open { display: flex; }
        #proj-lb-img {
            max-width: 94vw;
            max-height: 92vh;
            object-fit: contain;
            box-shadow: 0 40px 120px rgba(0,0,0,0.6);
        }
        #proj-lb-close {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.55;
            cursor: pointer;
            font-size: 2.2rem;
            line-height: 1;
            padding: 0.25rem;
        }
        #proj-lb-close:hover { opacity: 1; }
        #proj-lb-counter {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(250,249,246,0.35);
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 0.3em;
        }
        #proj-lb-prev, #proj-lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.40;
            cursor: pointer;
            padding: 1rem;
            font-size: 1.5rem;
        }
        #proj-lb-prev { left: 1rem; }
        #proj-lb-next { right: 1rem; }
        #proj-lb-prev:hover, #proj-lb-next:hover { opacity: 1; }

        /* Scroll indicator */
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(250,249,246,0.5), transparent);
            animation: scroll-pulse 2s ease-in-out infinite;
        }
        @keyframes scroll-pulse {
            0%, 100% { opacity: 0.4; }
            50%       { opacity: 1; }
        }


/* ═══════════════════════════════════════════════════════════
   Project M002
   ══════════════════════════════════════════════════════════ */
/* ── Project page ─────────────────────────────── */
        .proj-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: proj-kb 9s ease-out forwards;
        }
        @keyframes proj-kb {
            from { transform: scale(1.06); }
            to   { transform: scale(1.00); }
        }
        .proj-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(.22,1,.36,1);
            cursor: zoom-in;
        }

        /* Masonry gallery */
        .masonry-grid {
            columns: 3;
            column-gap: 8px;
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 8px;
            overflow: hidden;
            border-radius: 6px;
            background: #e8e4dc;
        }
        .masonry-item:hover .proj-img { transform: scale(1.02); }
        @media (max-width: 1024px) { .masonry-grid { columns: 2; } }
        @media (max-width: 480px)  { .masonry-grid { columns: 1; } }

        .proj-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
        }
        .proj-reveal.is-visible { opacity: 1; transform: none; }
        .proj-reveal-d1 { transition-delay: 0.10s; }
        .proj-reveal-d2 { transition-delay: 0.20s; }
        .proj-reveal-d3 { transition-delay: 0.34s; }

        /* Hero inline meta row */
        .hero-meta-row {
            display: flex;
            align-items: flex-start;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.10);
            margin-top: 1.75rem;
            padding-top: 1.5rem;
        }
        .hero-meta-col {
            flex: 1;
            padding-right: 2rem;
        }
        .hero-meta-col + .hero-meta-col {
            border-left: 1px solid rgba(255,255,255,0.10);
            padding-left: 2rem;
            padding-right: 2rem;
        }
        @media (max-width: 640px) {
            .hero-meta-row { flex-direction: column; gap: 1.25rem; border-top: none; margin-top: 1.5rem; padding-top: 0; }
            .hero-meta-col + .hero-meta-col { border-left: none; padding-left: 0; padding-right: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
        }

        /* Related card hover */
        .rel-card { overflow: hidden; transition: box-shadow 0.4s ease; }
        .rel-card:hover { box-shadow: 0 20px 60px rgba(10,9,20,0.18); }
        .rel-img { transition: transform 0.65s ease; }
        .rel-card:hover .rel-img { transform: scale(1.05); }

        /* Lightbox */
        #proj-lb {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(10,9,20,0.97);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
        }
        #proj-lb.open { display: flex; }
        #proj-lb-img {
            max-width: 94vw;
            max-height: 92vh;
            object-fit: contain;
            box-shadow: 0 40px 120px rgba(0,0,0,0.6);
        }
        #proj-lb-close {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.55;
            cursor: pointer;
            font-size: 2.2rem;
            line-height: 1;
            padding: 0.25rem;
        }
        #proj-lb-close:hover { opacity: 1; }
        #proj-lb-counter {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(250,249,246,0.35);
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 0.3em;
        }
        #proj-lb-prev, #proj-lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.40;
            cursor: pointer;
            padding: 1rem;
            font-size: 1.5rem;
        }
        #proj-lb-prev { left: 1rem; }
        #proj-lb-next { right: 1rem; }
        #proj-lb-prev:hover, #proj-lb-next:hover { opacity: 1; }

        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(250,249,246,0.5), transparent);
            animation: scroll-pulse 2s ease-in-out infinite;
        }
        @keyframes scroll-pulse {
            0%, 100% { opacity: 0.4; }
            50%       { opacity: 1; }
        }


/* ═══════════════════════════════════════════════════════════
   Project M005
   ══════════════════════════════════════════════════════════ */
.proj-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: proj-kb 9s ease-out forwards;
        }
        @keyframes proj-kb {
            from { transform: scale(1.06); }
            to   { transform: scale(1.00); }
        }
        .proj-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(.22,1,.36,1);
            cursor: zoom-in;
        }

        /* Masonry gallery */
        .masonry-grid {
            columns: 3;
            column-gap: 8px;
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 8px;
            overflow: hidden;
            border-radius: 6px;
            background: #e8e4dc;
        }
        .masonry-item:hover .proj-img { transform: scale(1.02); }
        @media (max-width: 1024px) { .masonry-grid { columns: 2; } }
        @media (max-width: 480px)  { .masonry-grid { columns: 1; } }

        .proj-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
        }
        .proj-reveal.is-visible { opacity: 1; transform: none; }
        .proj-reveal-d1 { transition-delay: 0.10s; }
        .proj-reveal-d2 { transition-delay: 0.20s; }
        .proj-reveal-d3 { transition-delay: 0.34s; }

        .hero-meta-row {
            display: flex;
            align-items: flex-start;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.10);
            margin-top: 1.75rem;
            padding-top: 1.5rem;
        }
        .hero-meta-col {
            flex: 1;
            padding-right: 2rem;
        }
        .hero-meta-col + .hero-meta-col {
            border-left: 1px solid rgba(255,255,255,0.10);
            padding-left: 2rem;
            padding-right: 2rem;
        }
        @media (max-width: 640px) {
            .hero-meta-row { flex-direction: column; gap: 1.25rem; border-top: none; margin-top: 1.5rem; padding-top: 0; }
            .hero-meta-col + .hero-meta-col { border-left: none; padding-left: 0; padding-right: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
        }

        .rel-card { overflow: hidden; transition: box-shadow 0.4s ease; }
        .rel-card:hover { box-shadow: 0 20px 60px rgba(10,9,20,0.18); }
        .rel-img { transition: transform 0.65s ease; }
        .rel-card:hover .rel-img { transform: scale(1.05); }

        #proj-lb {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(10,9,20,0.97);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
        }
        #proj-lb.open { display: flex; }
        #proj-lb-img { max-width: 94vw; max-height: 92vh; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
        #proj-lb-close {
            position: absolute; top: 1.25rem; right: 1.5rem;
            background: none; border: none; color: #FAF9F6; opacity: 0.55;
            cursor: pointer; font-size: 2.2rem; line-height: 1; padding: 0.25rem;
        }
        #proj-lb-close:hover { opacity: 1; }
        #proj-lb-counter {
            position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
            color: rgba(250,249,246,0.35); font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.3em;
        }
        #proj-lb-prev, #proj-lb-next {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: none; border: none; color: #FAF9F6; opacity: 0.40;
            cursor: pointer; padding: 1rem; font-size: 1.5rem;
        }
        #proj-lb-prev { left: 1rem; }
        #proj-lb-next { right: 1rem; }
        #proj-lb-prev:hover, #proj-lb-next:hover { opacity: 1; }

        .scroll-line {
            width: 1px; height: 48px;
            background: linear-gradient(to bottom, rgba(250,249,246,0.5), transparent);
            animation: scroll-pulse 2s ease-in-out infinite;
        }
        @keyframes scroll-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }


/* ═══════════════════════════════════════════════════════════
   Renders Page
   ══════════════════════════════════════════════════════════ */
/* ── Project page ─────────────────────────────── */
        .proj-hero-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: proj-kb 9s ease-out forwards;
        }
        @keyframes proj-kb {
            from { transform: scale(1.06); }
            to   { transform: scale(1.00); }
        }
        .proj-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(.22,1,.36,1);
            cursor: zoom-in;
        }

        /* Masonry gallery */
        .masonry-grid {
            columns: 3;
            column-gap: 8px;
        }
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 8px;
            overflow: hidden;
            border-radius: 6px;
            background: #e8e4dc;
        }
        .masonry-item:hover .proj-img { transform: scale(1.02); }
        @media (max-width: 1024px) { .masonry-grid { columns: 2; } }
        @media (max-width: 480px)  { .masonry-grid { columns: 1; } }

        .proj-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.72s cubic-bezier(.22,1,.36,1), transform 0.72s cubic-bezier(.22,1,.36,1);
        }
        .proj-reveal.is-visible { opacity: 1; transform: none; }
        .proj-reveal-d1 { transition-delay: 0.10s; }
        .proj-reveal-d2 { transition-delay: 0.20s; }
        .proj-reveal-d3 { transition-delay: 0.34s; }

        /* Hero inline meta row */
        .hero-meta-row {
            display: flex;
            align-items: flex-start;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.10);
            margin-top: 1.75rem;
            padding-top: 1.5rem;
        }
        .hero-meta-col {
            flex: 1;
            padding-right: 2rem;
        }
        .hero-meta-col + .hero-meta-col {
            border-left: 1px solid rgba(255,255,255,0.10);
            padding-left: 2rem;
            padding-right: 2rem;
        }
        @media (max-width: 640px) {
            .hero-meta-row { flex-direction: column; gap: 1.25rem; border-top: none; margin-top: 1.5rem; padding-top: 0; }
            .hero-meta-col + .hero-meta-col { border-left: none; padding-left: 0; padding-right: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
        }

        /* Our Works card hover */
        .rel-card { overflow: hidden; transition: box-shadow 0.4s ease; }
        .rel-card:hover { box-shadow: 0 20px 60px rgba(10,9,20,0.18); }
        .rel-img { transition: transform 0.65s ease; }
        .rel-card:hover .rel-img { transform: scale(1.05); }

        /* Lightbox */
        #proj-lb {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(10,9,20,0.97);
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
        }
        #proj-lb.open { display: flex; }
        #proj-lb-img {
            max-width: 94vw;
            max-height: 92vh;
            object-fit: contain;
            box-shadow: 0 40px 120px rgba(0,0,0,0.6);
        }
        #proj-lb-close {
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.55;
            cursor: pointer;
            font-size: 2.2rem;
            line-height: 1;
            padding: 0.25rem;
        }
        #proj-lb-close:hover { opacity: 1; }
        #proj-lb-counter {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(250,249,246,0.35);
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 0.3em;
        }
        #proj-lb-prev, #proj-lb-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #FAF9F6;
            opacity: 0.40;
            cursor: pointer;
            padding: 1rem;
            font-size: 1.5rem;
        }
        #proj-lb-prev { left: 1rem; }
        #proj-lb-next { right: 1rem; }
        #proj-lb-prev:hover, #proj-lb-next:hover { opacity: 1; }

        /* Scroll indicator */
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(250,249,246,0.5), transparent);
            animation: scroll-pulse 2s ease-in-out infinite;
        }
        @keyframes scroll-pulse {
            0%, 100% { opacity: 0.4; }
            50%       { opacity: 1; }
        }

        /* Area section divider */
        .area-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(30,24,59,0.12), transparent);
        }

        /* Renders placeholder */
        .renders-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 5rem 2rem;
            gap: 1rem;
            opacity: 0.22;
        }

        /* ── Image protection ──────────────────────────────────── */
        .proj-img, #proj-lb-img {
            -webkit-user-drag: none;
            user-drag: none;
            -webkit-user-select: none;
            user-select: none;
            pointer-events: none;
        }
        .renders-grid-item {
            position: relative;
        }
        /* Transparent overlay intercepts right-click & opens lightbox */
        .renders-grid-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            cursor: zoom-in;
        }

        /* ── Renders grid — fixed aspect ratio ─────────────────── */
        .renders-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .renders-grid-item {
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 6px;
            background: #e8e4dc;
        }
        .renders-grid-item .proj-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .renders-grid-item:hover .proj-img { transform: scale(1.02); }

        /* Mobile: portrait 3:4, single column */
        @media (max-width: 639px) {
            .renders-grid { grid-template-columns: 1fr; }
            .renders-grid-item { aspect-ratio: 3 / 4; }
        }


/* ═══════════════════════════════════════════════════════════
   Portfolio Page
   ══════════════════════════════════════════════════════════ */
.port-grid-card {
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
        }

        .port-grid-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 60px rgba(30, 24, 59, 0.12);
        }

        .port-grid-card .card-img img {
            transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .port-grid-card:hover .card-img img {
            transform: scale(1.06);
        }

        .cat-badge {
            font-family: 'Jost', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.2em;
            font-weight: 400;
            text-transform: uppercase;
            background: rgba(209, 194, 129, 0.12);
            color: #D1C281;
            padding: 4px 10px;
            border-radius: 100px;
            border: 1px solid rgba(209, 194, 129, 0.25);
            display: inline-block;
        }

        .pf-filter-btn {
            font-family: 'Jost', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.25em;
            font-weight: 400;
            text-transform: uppercase;
            padding: 0.6rem 1.4rem;
            border: 1px solid rgba(30, 24, 59, 0.15);
            border-radius: 100px;
            color: rgba(30, 24, 59, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            display: inline-flex;
            align-items: center;
            gap: 0;
            white-space: nowrap;
        }

        .pf-filter-btn svg {
            width: 0;
            opacity: 0;
            overflow: hidden;
            flex-shrink: 0;
            transition: width 0.25s ease, opacity 0.25s ease, margin 0.25s ease;
            margin-right: 0;
        }

        .pf-filter-btn:hover svg,
        .pf-filter-btn.active svg {
            width: 13px;
            opacity: 1;
            margin-right: 0.45rem;
        }

        .pf-filter-btn:hover {
            border-color: #1E183B;
            color: #1E183B;
        }

        .pf-filter-btn.active {
            background: #1E183B;
            color: #D1C281;
            border-color: #1E183B;
        }

        .pf-card-hidden {
            display: none !important;
        }


        /* Scroll-reveal */
        .pf-reveal {
            opacity: 0;
            transform: translateY(24px) scale(0.97);
            transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .pf-reveal.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Filter animation — scale + opacity (mirrors framer-motion's AnimatePresence) */
        #pf-grid > * {
            transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        #pf-grid > *.pf-hiding {
            opacity: 0;
            transform: scale(0.88);
            pointer-events: none;
        }

        #pf-grid > *.pf-showing {
            opacity: 0;
            transform: scale(0.88);
        }

        /* Search input */
        #pf-search {
            font-family: 'Jost', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 0.06em;
            color: #1E183B;
            background: transparent;
            border: 1px solid rgba(30,24,59,0.15);
            border-radius: 100px;
            padding: 0.55rem 1.3rem 0.55rem 2.6rem;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            width: 260px;
        }
        #pf-search::placeholder { color: rgba(30,24,59,0.32); }
        #pf-search:focus { border-color: rgba(30,24,59,0.4); box-shadow: 0 0 0 3px rgba(30,24,59,0.05); }

        /* Featured card */
        .pf-featured .card-img {
            aspect-ratio: 16/9;
        }

        .pf-featured .card-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
        }

        /* ── Zoom overlay on card images (ZoomIn hover from React component) ── */
        .card-img {
            position: relative;
        }

        .zoom-badge {
            font-family: 'Jost', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #D1C281;
            border: 1px solid rgba(209, 194, 129, 0.4);
            padding: 3px 12px;
            border-radius: 100px;
        }

        /* ── Lightbox (AnimatePresence modal from React component) ── */
        #pf-lightbox {
            position: fixed;
            inset: 0;
            z-index: 600;
            background: rgba(14, 12, 29, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease;
        }

        #pf-lightbox.lb-open {
            opacity: 1;
            pointer-events: all;
        }

        #pf-lb-inner {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 920px;
            width: 100%;
            transform: scale(0.88);
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }

        #pf-lightbox.lb-open #pf-lb-inner {
            transform: scale(1);
        }

        #pf-lb-img {
            max-height: 74vh;
            width: 100%;
            object-fit: contain;
            border-radius: 18px;
            opacity: 0;
            transition: opacity 0.22s ease;
            display: block;
        }

        #pf-lb-img.lb-loaded {
            opacity: 1;
        }

        #pf-lb-info {
            margin-top: 1.5rem;
            text-align: center;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.3s ease 0.12s, transform 0.3s ease 0.12s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        #pf-lightbox.lb-open #pf-lb-info {
            opacity: 1;
            transform: translateY(0);
        }

        #pf-lb-title {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1.35rem;
            color: #fff;
        }

        #pf-lb-badge {
            font-family: 'Jost', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #D1C281;
            border: 1px solid rgba(209, 194, 129, 0.35);
            padding: 3px 14px;
            border-radius: 100px;
        }

        #pf-lb-link {
            font-family: 'Jost', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            transition: color 0.2s;
        }

        #pf-lb-link:hover {
            color: #D1C281;
        }

        .lb-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
            z-index: 10;
        }

        .lb-nav-btn:hover {
            background: rgba(209, 194, 129, 0.15);
            border-color: #D1C281;
            color: #D1C281;
        }

        #pf-lb-prev {
            left: -60px;
        }

        #pf-lb-next {
            right: -60px;
        }

        #pf-lb-close {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
            z-index: 10;
        }

        #pf-lb-close:hover {
            background: rgba(209, 194, 129, 0.15);
            border-color: #D1C281;
            color: #D1C281;
        }

        @media (max-width: 640px) {
            #pf-lb-prev {
                left: 4px;
            }

            #pf-lb-next {
                right: 4px;
            }

            .lb-nav-btn {
                width: 36px;
                height: 36px;
                background: rgba(14, 12, 29, 0.7);
            }
        }


/* ═══════════════════════════════════════════════════════════
   About Page
   ══════════════════════════════════════════════════════════ */
/* ── Reveal animations ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                        transform 0.8s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.is-visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ── Philosophy pillars ── */
        .pillar {
            border-top: 1px solid rgba(30,24,59,0.10);
            padding-top: 2rem;
        }
        .pillar-number {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: clamp(3.5rem, 7vw, 6rem);
            font-weight: 400;
            color: rgba(209,194,129,0.18);
            line-height: 1;
            margin-bottom: -1rem;
        }

        /* ── Stats count-up ── */
        .stat-block { text-align: center; }
        .stat-num {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            font-weight: 400;
            color: #D1C281;
            line-height: 1;
            display: block;
        }
        .stat-label {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            display: block;
            margin-top: 0.75rem;
        }

        /* ── Expertise tiles ── */
        .expertise-tile {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 1rem;
            padding: 2.5rem;
            background: #fff;
            transition: border-color 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
            cursor: pointer;
        }
        .expertise-tile:hover {
            border-color: rgba(209,194,129,0.5);
            transform: translateY(-4px);
        }
        .expertise-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(209,194,129,0.04), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .expertise-tile:hover::before { opacity: 1; }
        .tile-num {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 4rem;
            font-weight: 400;
            color: rgba(209,194,129,0.15);
            line-height: 1;
            position: absolute;
            top: 1.5rem;
            right: 2rem;
        }

        /* ── Org chart ── */
        .org-wrap {
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        .org-tree {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 700px;
        }
        .org-ceo {
            background: #1E183B;
            color: #D1C281;
            border: 1px solid rgba(209,194,129,0.3);
            border-radius: 0.75rem;
            padding: 1.25rem 2.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .org-ceo-name {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #D1C281;
        }
        .org-ceo-title {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(209,194,129,0.6);
            margin-top: 0.3rem;
        }
        /* Vertical connector from CEO to row */
        .org-connector-v {
            width: 1px;
            height: 2.5rem;
            background: rgba(209,194,129,0.3);
        }
        /* Horizontal bar spanning departments */
        .org-hbar-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .org-hbar {
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: rgba(209,194,129,0.25);
        }
        /* Department columns */
        .org-dept-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            width: 100%;
            padding-top: 2.5rem;
        }
        .org-dept-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 170px;
        }
        /* Short vertical drop per department */
        .org-dept-col::before {
            content: '';
            display: block;
            width: 1px;
            height: 2rem;
            background: rgba(209,194,129,0.25);
            margin-bottom: 0;
            position: relative;
            top: -2.5rem;
        }
        .org-dept-box {
            background: rgba(30,24,59,0.05);
            border: 1px solid rgba(30,24,59,0.12);
            border-top: 2px solid #D1C281;
            border-radius: 0.5rem;
            padding: 1rem 1.25rem;
            text-align: center;
            width: 100%;
            margin-top: -2rem;
        }
        .org-dept-name {
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #1E183B;
        }
        .org-dept-icon {
            margin: 0 auto 0.6rem;
            width: 32px;
            height: 32px;
            background: rgba(209,194,129,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Role tags under each dept */
        .org-roles {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            width: 100%;
        }
        .org-role {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            color: rgba(30,24,59,0.55);
            background: #fff;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 100px;
            padding: 0.3rem 0.75rem;
            text-align: center;
            white-space: nowrap;
        }

        /* ── Team cards ── */
        .team-card {
            background: #fff;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
        }
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(30,24,59,0.10);
        }
        .team-photo {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #1E183B 0%, #2d2456 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .team-photo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D1C281' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .team-photo-initials {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 3rem;
            font-weight: 400;
            color: rgba(209,194,129,0.2);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%);
        }
        .team-info { padding: 1.5rem; }
        .team-name {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1rem;
            color: #1E183B;
            margin-bottom: 0.25rem;
        }
        .team-role {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #D1C281;
            margin-bottom: 0.75rem;
        }
        .team-bio {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.78rem;
            line-height: 1.7;
            color: rgba(30,24,59,0.5);
        }

        /* ── Marquee ── */
        @keyframes marquee-about {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .about-marquee-inner {
            display: flex;
            gap: 3.5rem;
            white-space: nowrap;
            animation: marquee-about 24s linear infinite;
            will-change: transform;
        }
        @media (prefers-reduced-motion: reduce) {
            .about-marquee-inner { animation: none; }
        }


/* ═══════════════════════════════════════════════════════════
   Contact Page
   ══════════════════════════════════════════════════════════ */
.contact-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(30,24,59,0.15);
            padding: 1rem 0;
            font-family: 'Jost', sans-serif;
            font-size: 0.8rem;
            font-weight: 300;
            color: #1E183B;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .contact-input::placeholder { color: rgba(30,24,59,0.35); }
        .contact-input:focus { border-color: #D1C281; }
        select.contact-input { cursor: pointer; appearance: none; -webkit-appearance: none; }
        textarea.contact-input { resize: none; height: 120px; }
        .detail-icon {
            width: 44px; height: 44px;
            border: 1px solid rgba(209,194,129,0.3);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .map-container iframe {
            width: 100%; height: 100%;
            border: 0;
            filter: grayscale(20%) contrast(1.05);
        }
        .form-label {
            font-family: 'Jost', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: rgba(30,24,59,0.4);
            display: block;
            margin-bottom: 0.15rem;
        }
        .submit-btn {
            display: inline-block;
            background: #1E183B;
            color: #D1C281;
            font-family: 'Jost', sans-serif;
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            padding: 1.1rem 3rem;
            border-radius: 100px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .submit-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: #D1C281;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
        }
        .submit-btn:hover { color: #1E183B; }
        .submit-btn:hover::after { transform: translateY(0); }
        .submit-btn span { position: relative; z-index: 1; }
        #form-success {
            display: none;
            background: rgba(209,194,129,0.08);
            border: 1px solid rgba(209,194,129,0.3);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
        }
@keyframes contact-spotlight {
    0%   { opacity: 0; transform: translate(10%, -55%) scale(0.5); }
    100% { opacity: 1; transform: translate(25%, -38%) scale(1); }
}
.contact-spotlight { animation: contact-spotlight 2.2s ease forwards; }

/* ── MULTI-STEP ENQUIRY FORM ──────────────────────────────── */
.cf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(250,249,246,0.12);
    padding: 0.85rem 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #FAF9F6;
    outline: none;
    transition: border-color 0.3s ease;
}
.cf-input::placeholder { color: rgba(250,249,246,0.22); }
.cf-input:focus { border-color: #D1C281; }
textarea.cf-input { resize: none; height: 150px; }
.cf-input.cf-error { border-color: rgba(239,68,68,0.6); }
.cf-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.54rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.28);
    margin-bottom: 0.2rem;
}
.cf-req-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.54rem;
    font-weight: 300;
    color: rgba(250,249,246,0.2);
    letter-spacing: 0.04em;
}
.cf-step { display: none; }
.cf-step.cf-active { display: block; animation: cfFadeIn 0.4s ease; }
@keyframes cfFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}
.cf-progress-track {
    height: 1px;
    background: rgba(250,249,246,0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.75rem;
}
.cf-progress-fill {
    height: 100%;
    background: #D1C281;
    border-radius: 100px;
    transition: width 0.55s cubic-bezier(0.23,1,0.32,1);
}
.cf-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-top: 0.6rem;
}
.cf-service-card {
    border: 1px solid rgba(250,249,246,0.08);
    padding: 0.9rem 0.4rem 0.7rem;
    cursor: pointer;
    text-align: center;
    background: transparent;
    border-radius: 0.5rem;
    transition: all 0.25s ease;
}
.cf-service-card:hover { border-color: rgba(209,194,129,0.35); background: rgba(209,194,129,0.04); }
.cf-service-card.cf-selected { border-color: #D1C281; background: rgba(209,194,129,0.08); }
.cf-svc-icon { display: block; margin: 0 auto 0.45rem; color: rgba(250,249,246,0.3); transition: color 0.25s; }
.cf-service-card.cf-selected .cf-svc-icon { color: #D1C281; }
.cf-svc-name {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.4);
    transition: color 0.25s;
}
.cf-service-card.cf-selected .cf-svc-name { color: #D1C281; }
.cf-upload-zone {
    border: 1px dashed rgba(250,249,246,0.13);
    border-radius: 0.5rem;
    padding: 1.4rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cf-upload-zone:hover { border-color: rgba(209,194,129,0.35); background: rgba(209,194,129,0.03); }
.cf-upload-zone.cf-has-file { border-color: #D1C281; border-style: solid; background: rgba(209,194,129,0.05); }
.cf-upload-zone input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.cf-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #D1C281;
    color: #1E183B;
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
}
.cf-next-btn:hover:not(:disabled) { background: #FAF9F6; }
.cf-next-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cf-back-btn {
    background: transparent;
    border: none;
    color: rgba(250,249,246,0.28);
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}
.cf-back-btn:hover { color: rgba(250,249,246,0.65); }
/* light-theme file upload zone */
.upload-zone {
    border: 1px dashed rgba(30,24,59,0.15);
    border-radius: 0.25rem;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.upload-zone:hover { border-color: #D1C281; }
.upload-zone.has-file { border-color: #D1C281; border-style: solid; background: rgba(209,194,129,0.05); }
.upload-zone input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}

/* dark-bg contact detail overrides */
.cf-detail-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(209,194,129,0.22);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(250,249,246,0.04);
}


/* ═══════════════════════════════════════════════════════════
   VR Listing
   ══════════════════════════════════════════════════════════ */
.vr-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: #0E0C1D;
            border: 1px solid rgba(209,194,129,0.08);
            transition: border-color 0.5s ease;
        }
        .vr-card:hover { border-color: rgba(209,194,129,0.35); }
        .vr-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94),
                        filter 0.8s ease;
            filter: grayscale(0.3) brightness(0.75);
        }
        .vr-card:hover .vr-card-img {
            transform: scale(1.04);
            filter: grayscale(0) brightness(0.65);
        }
        .vr-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,9,20,0.92) 0%, rgba(10,9,20,0.4) 55%, transparent 100%);
        }
        .vr-card-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            transform: translateY(4px);
            transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
        }
        .vr-card:hover .vr-card-text { transform: translateY(0); }
        .vr-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(209,194,129,0.3);
            padding: 6px 14px;
            font-family: 'Jost', sans-serif;
            font-size: 9px;
            letter-spacing: 0.35em;
            color: rgba(209,194,129,0.85);
            text-transform: uppercase;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(6px);
        }
        .vr-card:hover .vr-badge {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.08s;
        }
        .scan-line {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(209,194,129,0.4), transparent);
            animation: scan 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 200;
        }
        @keyframes scan {
            0%   { top: 0; opacity: 0; }
            5%   { opacity: 1; }
            95%  { opacity: 0.3; }
            100% { top: 100vh; opacity: 0; }
        }
        .grid-dot {
            position: fixed;
            inset: 0;
            background-image: radial-gradient(circle, rgba(209,194,129,0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            z-index: 0;
        }
        .vr-filter-btn {
            font-family: 'Jost', sans-serif;
            font-size: 9px;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            padding: 8px 20px;
            border: 1px solid rgba(209,194,129,0.2);
            color: rgba(250,249,246,0.4);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .vr-filter-btn:hover,
        .vr-filter-btn.active {
            border-color: rgba(209,194,129,0.6);
            color: #D1C281;
        }


/* ═══════════════════════════════════════════════════════════
   VR Room Listing
   ══════════════════════════════════════════════════════════ */
.room-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: #0E0C1D;
            border: 1px solid rgba(209,194,129,0.08);
            transition: border-color 0.5s ease;
        }
        .room-card:hover { border-color: rgba(209,194,129,0.4); }
        .room-card-img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 1.4s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.8s ease;
            filter: grayscale(0.2) brightness(0.7);
        }
        .room-card:hover .room-card-img {
            transform: scale(1.04);
            filter: grayscale(0) brightness(0.6);
        }
        .room-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,9,20,0.95) 0%, rgba(10,9,20,0.35) 60%, transparent 100%);
        }
        .room-card-text {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.75rem;
        }
        .enter-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(209,194,129,0.3);
            padding: 7px 16px;
            font-family: 'Jost', sans-serif;
            font-size: 9px;
            letter-spacing: 0.35em;
            color: rgba(209,194,129,0.85);
            text-transform: uppercase;
            margin-top: 12px;
            opacity: 0;
            transform: translateY(5px);
            transition: all 0.4s ease;
        }
        .room-card:hover .enter-btn {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.06s;
        }
        .enter-btn:hover { background: rgba(209,194,129,0.08); }
        .grid-dot {
            position: fixed; inset: 0;
            background-image: radial-gradient(circle, rgba(209,194,129,0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none; z-index: 0;
        }
        .room-available { /* default */ }
        .room-coming {
            pointer-events: none;
            opacity: 0.35;
        }


/* ═══════════════════════════════════════════════════════════
   VR Room Listing (Extra)
   ══════════════════════════════════════════════════════════ */
.grid-dot {
            position: fixed; inset: 0;
            background-image: radial-gradient(circle, rgba(209,194,129,0.04) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none; z-index: 0;
        }


/* ═══════════════════════════════════════════════════════════
   Residential Page
   ══════════════════════════════════════════════════════════ */
.res-card { cursor: pointer; }
    .res-card-img { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .res-card:hover .res-card-img { transform: scale(1.03); }
    .res-card-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(10,9,20,0.72) 0%, rgba(10,9,20,0.15) 45%, transparent 70%);
        transition: opacity 0.4s ease;
    }
    .res-card-text {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 1.75rem 1.5rem;
        transform: translateY(4px);
        transition: transform 0.4s ease;
    }
    .res-card:hover .res-card-text { transform: translateY(0); }
.mk-layout-card { cursor: default; }
    .mk-layout-img { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .mk-layout-card:hover .mk-layout-img { transform: scale(1.03); }
    .ww-card-img { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .ww-card:hover .ww-card-img { transform: scale(1.03); }
.hw-step { position: relative; overflow: hidden; }
    .hw-ghost {
        position: absolute;
        top: -0.05em;
        left: -0.08em;
        font-family: 'Futura', 'Jost', sans-serif;
        font-size: clamp(5.5rem, 9vw, 9rem);
        color: #1E183B;
        opacity: 0.065;
        line-height: 1;
        font-weight: 400;
        pointer-events: none;
        user-select: none;
        letter-spacing: -0.02em;
    }
    .hw-content { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════════════
   Commercial Page
   ══════════════════════════════════════════════════════════ */
.wd-step { position: relative; overflow: hidden; }
    .wd-ghost {
        position: absolute;
        top: -0.05em;
        left: -0.08em;
        font-family: 'Futura', 'Jost', sans-serif;
        font-size: clamp(5.5rem, 9vw, 9rem);
        color: #1E183B;
        opacity: 0.065;
        line-height: 1;
        font-weight: 400;
        pointer-events: none;
        user-select: none;
        letter-spacing: -0.02em;
    }
    .wd-content { position: relative; z-index: 1; }
.sw-card { cursor: pointer; }
    .sw-card-img { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .sw-card:hover .sw-card-img { transform: scale(1.03); }
    .sw-card-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(10,9,20,0.72) 0%, rgba(10,9,20,0.12) 40%, transparent 65%);
    }
    .sw-card-text {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 1.75rem 1.5rem;
        transform: translateY(4px);
        transition: transform 0.4s ease;
    }
    .sw-card:hover .sw-card-text { transform: translateY(0); }
.sector-row { cursor: default; }
    /* Remove hover effect on logos in this marquee */
    #com-marquee-wrap .client-box { pointer-events: none; }
    #com-marquee-wrap .client-box:hover {
        border-color: rgba(30,24,59,0.05);
        box-shadow: none;
    }


/* ═══════════════════════════════════════════════════════════
   Hospitality Page
   ══════════════════════════════════════════════════════════ */
@keyframes hosp-glow {
    0%   { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}
.hosp-glow { animation: hosp-glow 2.5s ease forwards; }
.hosp-wd-step { position: relative; overflow: hidden; }
    .hosp-wd-ghost {
        position: absolute;
        top: -0.05em;
        left: -0.08em;
        font-family: 'Futura', 'Jost', sans-serif;
        font-size: clamp(5.5rem, 9vw, 9rem);
        color: #1E183B;
        opacity: 0.065;
        line-height: 1;
        font-weight: 400;
        pointer-events: none;
        user-select: none;
        letter-spacing: -0.02em;
    }
    .hosp-wd-content { position: relative; z-index: 1; }
.hosp-card { cursor: pointer; }
    .hosp-card-img { transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
    .hosp-card:hover .hosp-card-img { transform: scale(1.03); }
    .hosp-card-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(10,9,20,0.75) 0%, rgba(10,9,20,0.12) 40%, transparent 65%);
    }
    .hosp-card-text {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 2rem 1.75rem;
        transform: translateY(4px);
        transition: transform 0.4s ease;
    }
    .hosp-card:hover .hosp-card-text { transform: translateY(0); }
.hosp-row { cursor: default; }


/* ═══════════════════════════════════════════════════════════
   MEP-PEB Page
   ══════════════════════════════════════════════════════════ */
@keyframes spotlight {
    0%   { opacity: 0; transform: translate(-72%, -62%) scale(0.5); }
    100% { opacity: 1; transform: translate(-52%, -42%) scale(1); }
}
.mep-spotlight { animation: spotlight 2s ease forwards; }
@keyframes spline-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.mep-hw-ghost {
    position: absolute;
    top: -0.05em;
    left: -0.08em;
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: clamp(5.5rem, 9vw, 9rem);
    color: #1E183B;
    opacity: 0.065;
    line-height: 1;
    font-weight: 400;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
  }
  .mep-hw-content {
    position: relative;
    z-index: 1;
  }


/* ═══════════════════════════════════════════════════════════
   Policy Pages
   ══════════════════════════════════════════════════════════ */
.policy-section {
            border-top: 1px solid rgba(30,24,59,0.08);
            padding-top: 2.5rem;
            margin-top: 2.5rem;
        }
        .policy-section:first-child {
            border-top: none;
            padding-top: 0;
            margin-top: 0;
        }
        .policy-h2 {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1.15rem;
            color: #1E183B;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        .policy-p {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.875rem;
            line-height: 1.85;
            color: rgba(30,24,59,0.75);
            margin-bottom: 1rem;
        }
        .policy-p:last-child { margin-bottom: 0; }
        .policy-ul {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.875rem;
            line-height: 1.85;
            color: rgba(30,24,59,0.75);
            padding-left: 1.25rem;
            margin-bottom: 1rem;
            list-style: none;
        }
        .policy-ul li {
            position: relative;
            padding-left: 1rem;
            margin-bottom: 0.5rem;
        }
        .policy-ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.65em;
            width: 4px;
            height: 1px;
            background: #D1C281;
        }
        .policy-link {
            color: #1E183B;
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(209,194,129,0.6);
            transition: color 0.2s;
        }
        .policy-link:hover { color: #D1C281; }


/* ═══════════════════════════════════════════════════════════
   Homepage
   ══════════════════════════════════════════════════════════ */
.eapps-link,
        .eapps-widget-toolbar,
        [class*="eapps-link"],
        [class*="eapps-platform"],
        a[href*="elfsight.com"],
        a[href*="elfsight"],
        [class*="eapps-"] > a,
        [class*="powered-by"],
        [class*="poweredby"] { display: none !important; visibility: hidden !important; }

/* ═══════════════════════════════════════════════════════════
   Portfolio Hero v2 — Editorial Grid
   ══════════════════════════════════════════════════════════ */
.pf-hero-v2 {
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
.pf-hero-v2-bg {
    position: absolute;
    inset: 0;
}
.pf-hero-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pf-hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8,6,18,0.82) 0%, rgba(8,6,18,0.55) 60%, rgba(8,6,18,0.75) 100%);
}
.pf-hero-v2-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 25% 20%;
}
.pf-hero-v2-body {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 0 7vw;
}
.pf-hero-v2-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 9rem;
}
.pf-hero-v2-headline {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6vh 0 4vh;
}
.pf-hero-v2-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}
.pf-hero-v2-row--indent {
    padding-left: clamp(1.5rem, 6vw, 7rem);
}
.pf-hero-v2-text-lg {
    font-size: clamp(3.8rem, 9.5vw, 9.5rem);
    line-height: 0.88;
}
.pf-hero-v2-text-xl {
    font-size: clamp(4.5rem, 12vw, 12rem);
    line-height: 0.88;
}
.pf-hero-v2-text-sm {
    font-size: clamp(1.4rem, 3vw, 3.2rem);
    line-height: 0.88;
}
.pf-hero-v2-text-xs {
    font-size: clamp(1.2rem, 2.4vw, 2.6rem);
    line-height: 0.88;
}
.pf-hero-v2-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2.5rem;
}
.pf-hero-v2-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 200px;
}

/* Trusted-by marquee band (shared between both hero versions) */
.pf-trusted-band {
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    overflow: hidden;
    background: #FAF9F6;
}
.pf-trusted-band-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 2rem 1.25rem;
}
@media (min-width: 768px) {
    .pf-trusted-band-label { padding-left: 4rem; }
}
.pf-trusted-wrap {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.pf-trusted-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
}
.pf-trusted-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   About — India Presence Globe
   ══════════════════════════════════════════════════════════ */
.pres-section {
    background: #1E183B;
    padding: 7rem 4rem;
}
.pres-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 7rem;
}
.pres-text { flex: 1; }
.pres-desc {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    max-width: 400px;
    margin-bottom: 2.5rem;
}
.pres-cities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.pres-city {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.pres-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(209,194,129,0.3);
    flex-shrink: 0;
}
.pres-city--hq .pres-dot {
    background: #D1C281;
    box-shadow: 0 0 6px rgba(209,194,129,0.6);
}
.pres-city-name {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
}
.pres-city-tag {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #D1C281;
    border: 1px solid rgba(209,194,129,0.25);
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}
.pres-globe-wrap {
    flex-shrink: 0;
    width: min(460px, 42vw);
}
.pres-globe-canvas {
    width: 100%;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transition: opacity 1.2s ease;
    cursor: grab;
    touch-action: none;
    display: block;
}
@media (max-width: 900px) {
    .pres-section { padding: 5rem 2rem; }
    .pres-inner { flex-direction: column-reverse; gap: 3rem; }
    .pres-globe-wrap { width: 100%; max-width: 340px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   About — Our People (staggered masonry)
   ══════════════════════════════════════════════════════════ */
.tp-section {
    background: #FAF9F6;
    padding: 6rem 4rem 4rem;
}
.tp-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.tp-heading {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #1E183B;
    line-height: 1.15;
    margin-bottom: 3.5rem;
    letter-spacing: 0;
}
.tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.tp-card {}
.tp-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: #ccc9be;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    position: relative;
}
.tp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.tp-initials {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 2.5rem;
    color: #1E183B;
    opacity: 0.2;
    letter-spacing: 0.05em;
}
.tp-tags {
    position: absolute;
    bottom: 0.9rem;
    left: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.tp-tags span {
    background: rgba(10, 8, 20, 0.55);
    color: rgba(255,255,255,0.85);
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.55rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.tp-name {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 500;
    color: #1E183B;
    margin: 0 0 0.25rem;
}
.tp-brand {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D1C281;
    margin: 0 0 0.2rem;
}

/* join the team */
.tp-join-section {
    background: #FAF9F6;
    border-top: 1px solid rgba(30,24,59,0.08);
    padding: 5rem 4rem;
}
.tp-join-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8rem;
}
.tp-join-left { flex-shrink: 0; }
.tp-join-heading {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #1E183B;
    line-height: 1.15;
    margin: 0;
}
.tp-join-right { flex: 1; }
.tp-join-body {
    font-size: 0.95rem;
    color: #1E183B;
    opacity: 0.6;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 440px;
}
.tp-join-link {
    font-family: 'Futura', 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D1C281;
    text-decoration: none;
    border-bottom: 1px solid rgba(209,194,129,0.4);
    padding-bottom: 3px;
    transition: border-color 0.2s, color 0.2s;
}
.tp-join-link:hover {
    color: #b8a95a;
    border-color: #b8a95a;
}

@media (max-width: 767px) {
    .tp-section { padding: 4rem 1.5rem 2rem; }
    .tp-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .tp-join-section { padding: 3.5rem 1.5rem; }
    .tp-join-inner { flex-direction: column; gap: 2rem; }
}
@media (max-width: 480px) {
    .tp-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   About — Selected Works Grid
   ══════════════════════════════════════════════════════════ */
.sw-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 33.333vh);
    gap: 0;
    width: 100%;
    height: 100vh;
}
.sw-about-cell {
    position: relative;
    overflow: hidden;
    background: #1E183B;
    cursor: pointer;
    will-change: transform;
    transition: transform 0.1s ease-out;
}
.sw-about-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}
.sw-about-cell:hover img { transform: scale(1.06); }

.sw-about-cell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,20,0.88) 0%, rgba(10,8,20,0.2) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sw-about-cell:hover .sw-about-cell-overlay { opacity: 1; }

.sw-about-cell-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.sw-about-cell:hover .sw-about-cell-label {
    opacity: 1;
    transform: translateY(0);
}

/* Brand card — no hover transform */
.sw-about-cell--brand {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .sw-about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto;
    }
    .sw-about-cell:nth-child(4),
    .sw-about-cell:nth-child(6),
    .sw-about-cell:nth-child(7),
    .sw-about-cell:nth-child(9) { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   About Page
   ══════════════════════════════════════════════════════════ */
/* ── Reveal animations ── */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                        transform 0.8s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.is-visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ── Philosophy pillars ── */
        .pillar {
            border-top: 1px solid rgba(30,24,59,0.10);
            padding-top: 2rem;
        }
        .pillar-number {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: clamp(3.5rem, 7vw, 6rem);
            font-weight: 400;
            color: rgba(209,194,129,0.18);
            line-height: 1;
            margin-bottom: -1rem;
        }

        /* ── Stats count-up ── */
        .stat-block { text-align: center; }
        .stat-num {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: clamp(2.8rem, 5vw, 4.5rem);
            font-weight: 400;
            color: #D1C281;
            line-height: 1;
            display: block;
        }
        .stat-label {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            display: block;
            margin-top: 0.75rem;
        }

        /* ── Expertise tiles ── */
        .expertise-tile {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 1rem;
            padding: 2.5rem;
            background: #fff;
            transition: border-color 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
            cursor: pointer;
        }
        .expertise-tile:hover {
            border-color: rgba(209,194,129,0.5);
            transform: translateY(-4px);
        }
        .expertise-tile::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(209,194,129,0.04), transparent);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .expertise-tile:hover::before { opacity: 1; }
        .tile-num {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 4rem;
            font-weight: 400;
            color: rgba(209,194,129,0.15);
            line-height: 1;
            position: absolute;
            top: 1.5rem;
            right: 2rem;
        }

        /* ── Org chart ── */
        .org-wrap {
            overflow-x: auto;
            padding-bottom: 1rem;
        }
        .org-tree {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 700px;
        }
        .org-ceo {
            background: #1E183B;
            color: #D1C281;
            border: 1px solid rgba(209,194,129,0.3);
            border-radius: 0.75rem;
            padding: 1.25rem 2.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .org-ceo-name {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #D1C281;
        }
        .org-ceo-title {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(209,194,129,0.6);
            margin-top: 0.3rem;
        }
        /* Vertical connector from CEO to row */
        .org-connector-v {
            width: 1px;
            height: 2.5rem;
            background: rgba(209,194,129,0.3);
        }
        /* Horizontal bar spanning departments */
        .org-hbar-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            width: 100%;
        }
        .org-hbar {
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: rgba(209,194,129,0.25);
        }
        /* Department columns */
        .org-dept-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            width: 100%;
            padding-top: 2.5rem;
        }
        .org-dept-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            max-width: 170px;
        }
        /* Short vertical drop per department */
        .org-dept-col::before {
            content: '';
            display: block;
            width: 1px;
            height: 2rem;
            background: rgba(209,194,129,0.25);
            margin-bottom: 0;
            position: relative;
            top: -2.5rem;
        }
        .org-dept-box {
            background: rgba(30,24,59,0.05);
            border: 1px solid rgba(30,24,59,0.12);
            border-top: 2px solid #D1C281;
            border-radius: 0.5rem;
            padding: 1rem 1.25rem;
            text-align: center;
            width: 100%;
            margin-top: -2rem;
        }
        .org-dept-name {
            font-family: 'Jost', sans-serif;
            font-weight: 600;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #1E183B;
        }
        .org-dept-icon {
            margin: 0 auto 0.6rem;
            width: 32px;
            height: 32px;
            background: rgba(209,194,129,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Role tags under each dept */
        .org-roles {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            width: 100%;
        }
        .org-role {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            color: rgba(30,24,59,0.55);
            background: #fff;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 100px;
            padding: 0.3rem 0.75rem;
            text-align: center;
            white-space: nowrap;
        }

        /* ── Team cards ── */
        .team-card {
            background: #fff;
            border: 1px solid rgba(30,24,59,0.08);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
        }
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(30,24,59,0.10);
        }
        .team-photo {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #1E183B 0%, #2d2456 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .team-photo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D1C281' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .team-photo-initials {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 3rem;
            font-weight: 400;
            color: rgba(209,194,129,0.2);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%);
        }
        .team-info { padding: 1.5rem; }
        .team-name {
            font-family: 'Futura', 'Jost', sans-serif;
            font-size: 1rem;
            color: #1E183B;
            margin-bottom: 0.25rem;
        }
        .team-role {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #D1C281;
            margin-bottom: 0.75rem;
        }
        .team-bio {
            font-family: 'Jost', sans-serif;
            font-weight: 300;
            font-size: 0.78rem;
            line-height: 1.7;
            color: rgba(30,24,59,0.5);
        }

        /* ── Marquee ── */
        @keyframes marquee-about {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .about-marquee-inner {
            display: flex;
            gap: 3.5rem;
            white-space: nowrap;
            animation: marquee-about 24s linear infinite;
            will-change: transform;
        }
        @media (prefers-reduced-motion: reduce) {
            .about-marquee-inner { animation: none; }
        }
