/* ==========================================================================
   FConcep Theme Main Styles - Luxury Architecture & Interior Theme
   ========================================================================== */

:root {
    --bg-dark: #0f1217;
    --text-primary: #ffffff;
    --text-muted: #d0d4dc;
    --accent-gold: #c5b396;
    --accent-btn: #5a5752;
    --border-glass: rgba(255, 255, 255, 0.25);
    --font-heading: 'Cinzel', 'Playfair Display', 'Amiri', serif;
    --font-body: 'Montserrat', 'Tajawal', system-ui, sans-serif;
    --header-height: 90px;
}

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

body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Luxury Interactive Custom Cursor
   ========================================================================== */

@media (pointer: fine) {
    body, a, button, input, select, textarea, label {
        cursor: none !important;
    }
}

.luxury-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    box-shadow: 0 0 10px rgba(197, 179, 150, 0.6);
}

.luxury-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(197, 179, 150, 0.65);
    background-color: rgba(197, 179, 150, 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.luxury-cursor-dot.is-visible,
.luxury-cursor-follower.is-visible {
    opacity: 1;
}

/* Hover state on clickable interactive elements */
.luxury-cursor-follower.cursor-hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent-gold);
    background-color: rgba(197, 179, 150, 0.12);
    box-shadow: 0 0 25px rgba(197, 179, 150, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.luxury-cursor-dot.cursor-hover {
    transform: translate(-50%, -50%) scale(0.5);
    background-color: #ffffff;
}

/* Hover state on media cards / gallery images */
.luxury-cursor-follower.cursor-view {
    width: 80px;
    height: 80px;
    border-color: #ffffff;
    background-color: rgba(15, 18, 23, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cursor-follower-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.luxury-cursor-follower.cursor-view .cursor-follower-label {
    opacity: 1;
    transform: scale(1);
}

.luxury-cursor-dot.cursor-view {
    opacity: 0;
}

/* Click Active State */
.luxury-cursor-follower.cursor-active {
    transform: translate(-50%, -50%) scale(0.75);
    border-color: #ffffff;
}

.luxury-cursor-dot.cursor-active {
    transform: translate(-50%, -50%) scale(1.4);
}

/* Disable on touch/mobile */
@media (pointer: coarse), (hover: none) {
    .luxury-cursor-dot,
    .luxury-cursor-follower {
        display: none !important;
    }
}

/* ==========================================================================
   Header & Navigation Bar (Transparent & Absolute at Top)
   ========================================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.header-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Brand Logo */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-brand-logo,
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.theme-logo-img,
.custom-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.custom-brand-logo:hover .theme-logo-img,
.custom-logo-link:hover .custom-logo {
    transform: scale(1.03);
}

/* Header Actions: Nav + Switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Navigation Menu */
.main-navigation ul,
.main-navigation .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.2rem;
}

.main-navigation > ul > li,
.main-navigation > div > ul > li,
.main-navigation .desktop-navigation ul > li {
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.main-navigation ul li a,
.main-navigation .nav-menu a {
    position: relative;
    text-decoration: none;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.25s ease;
    white-space: nowrap;
}

/* Hover & Active State */
.main-navigation ul li a:hover,
.main-navigation ul li.is-current > a,
.main-navigation ul li > a.is-current {
    color: #ffffff;
}

/* Underline strictly on Hover and Active element */
.main-navigation > ul > li > a::after,
.main-navigation > div > ul > li > a::after,
.main-navigation .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-navigation > ul > li > a:hover::after,
.main-navigation > ul > li.is-current > a::after,
.main-navigation > ul > li > a.is-current::after,
.main-navigation > div > ul > li > a:hover::after,
.main-navigation > div > ul > li.is-current > a::after,
.main-navigation > div > ul > li > a.is-current::after,
.main-navigation .nav-menu > li > a:hover::after,
.main-navigation .nav-menu > li.is-current > a::after,
.main-navigation .nav-menu > li > a.is-current::after {
    transform: scaleX(1);
}

/* Sub-Menu / Dropdown Handling */
.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 190px;
    background: rgba(14, 17, 22, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    display: block;
    width: 100%;
}

.main-navigation .sub-menu li a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #a0aec0;
}

.main-navigation .sub-menu li a:hover {
    color: #ffffff;
}

.main-navigation .sub-menu li a::after {
    display: none !important;
}

/* Language Switcher Pill Button */
.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.lang-switch-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.lang-switch-btn .globe-icon {
    stroke: #ffffff;
    flex-shrink: 0;
}

/* ==========================================================================
   Mobile Hamburger Toggle & Luxury Drawer
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 101;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Drawer Container */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100vh;
    background: rgba(14, 17, 22, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    transform: translateX(110%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0.45s ease;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 992px) {
    .mobile-menu-drawer,
    .mobile-menu-backdrop {
        display: none !important;
    }
}

.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.8rem 2.5rem;
    justify-content: space-between;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.25s ease;
}

.mobile-drawer-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu-wrap {
    margin: 2.5rem 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 500;
    display: block;
    padding: 4px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-list li a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn {
    text-align: center;
    width: 100%;
}

@media (max-width: 991px) {
    .desktop-navigation {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header-actions {
        gap: 1rem;
    }
    .header-container {
        padding: 0 1.5rem;
    }
    .theme-logo-img {
        height: 42px;
    }
}

/* ==========================================================================
   Hero Section with Interactive 3D Video Scrubbing
   ========================================================================== */

.hero-video-section,
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #0b0d11;
    overflow: hidden;
}

.hero-video-pinned-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #0b0d11;
}

.hero-3d-video {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.92) contrast(1.05);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 13, 17, 0.65) 0%,
        rgba(11, 13, 17, 0.25) 45%,
        rgba(11, 13, 17, 0.82) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-video-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 35%, rgba(11, 13, 17, 0.65) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform, opacity, filter;
}

/* Flight Mid-Step Floating Headlines */
.hero-flight-step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 90%;
    max-width: 880px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity, filter;
}

.flight-tag {
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
}

.flight-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

/* Floating Scroll Down Prompt */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mouse-scroll-icon {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.mouse-wheel-dot {
    width: 3px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    animation: mouseWheelBounce 1.8s infinite ease-in-out;
}

@keyframes mouseWheelBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

.scroll-prompt-text {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e0d8cd;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

/* Main Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

/* Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 2.5rem;
}

/* CTA Button */
.btn-profile-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 36px;
    background-color: var(--accent-btn);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-profile-download:hover {
    background-color: #6d6963;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.2rem;
    }
    
    .header-actions {
        gap: 1.2rem;
    }

    .main-navigation ul,
    .main-navigation .nav-menu {
        gap: 1.2rem;
    }

    .main-navigation ul li a,
    .main-navigation .nav-menu a {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* ==========================================================================
   Brand Statement / About Section
   ========================================================================== */

.brand-statement-section {
    background-color: #fbfaf8;
    color: #171a1f;
    padding: 7.5rem 0 6.5rem;
    position: relative;
    z-index: 1;
}

.statement-container {
    max-width: 1050px;
    margin-inline-start: 0;
    text-align: start;
}

.statement-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8c857b;
    margin-bottom: 1.6rem;
    font-weight: 500;
}

.statement-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 400;
    line-height: 1.22;
    color: #171a1f;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.statement-line-wrap {
    display: block;
    overflow: hidden;
}

.statement-line-inner {
    display: block;
    will-change: transform, opacity;
}

.statement-desc {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    font-weight: 300;
    line-height: 1.75;
    color: #5a5f69;
    max-width: 820px;
    will-change: transform, opacity;
}

/* ==========================================================================
   Our Services Section
   ========================================================================== */

.services-section {
    background-color: #ede8df;
    color: #1a1d22;
    padding: 6.5rem 0 8rem;
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 3.8rem;
    text-align: start;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    color: #171a1f;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.services-subtitle {
    font-size: 1.05rem;
    color: #6e6a62;
    font-weight: 400;
    max-width: 620px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
}

.service-item-full {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.service-item {
    perspective: 1200px;
    transform-style: preserve-3d;
}

.service-img-frame {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 6px;
    overflow: hidden;
    background: #11141a;
    will-change: transform, clip-path;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.service-item:hover .service-img-frame {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
}

.service-img-frame-wide {
    height: 560px;
}

.service-img {
    width: 100%;
    height: 125%;
    margin-top: -12%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transform-origin: center center;
}

.service-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.service-item:hover .service-img-frame::after {
    opacity: 0.3;
}

.service-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 1.2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: #171a1f;
    letter-spacing: 0.5px;
}

.service-tagline {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #736f68;
    font-weight: 500;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-img-frame {
        height: 320px;
    }

    .service-img-frame-wide {
        height: 340px;
    }

    .brand-statement-section {
        padding: 5rem 0 4rem;
    }

    .services-section {
        padding: 5rem 0 5rem;
    }
}

/* ==========================================================================
   Inspired by Place / Architectural Philosophy Section
   ========================================================================== */

.philosophy-section {
    background-color: #f7f6f2;
    color: #171a1f;
    padding: 7.5rem 0 8.5rem;
    position: relative;
    z-index: 1;
}

.philo-header {
    max-width: 920px;
    margin-bottom: 3.8rem;
    text-align: start;
}

.philo-overline {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8a8479;
    margin-bottom: 1.4rem;
    font-weight: 500;
}

.philo-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.25;
    color: #171a1f;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.philo-description {
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.75;
    color: #5d626c;
    max-width: 820px;
}

/* Interactive Numbered Pillar List */
.philo-pillars-list {
    margin-bottom: 4.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.philo-pillar-item {
    position: relative;
    padding: 1.2rem 0;
    cursor: pointer;
    overflow: hidden;
}

.pillar-content {
    display: flex;
    align-items: baseline;
    gap: 2.2rem;
    position: relative;
    z-index: 2;
}

.pillar-number {
    font-size: 0.85rem;
    color: #9c9588;
    font-weight: 400;
    min-width: 25px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.pillar-name {
    font-size: 1.15rem;
    font-weight: 400;
    color: #1a1d22;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.pillar-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.philo-pillar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.philo-pillar-item:hover .pillar-name {
    color: #000000;
    transform: translateX(10px);
}

.philo-pillar-item:hover .pillar-number {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.philo-pillar-item:hover::after {
    transform: scaleX(1);
}

/* Asymmetric 3D Multi-Layer Architectural Gallery */
.philo-gallery-composition {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.8rem;
    align-items: start;
    margin-top: 1.5rem;
}

.philo-col-tall {
    position: relative;
    width: 100%;
}

.philo-wrap-tall {
    width: 100%;
    height: 750px;
    border-radius: 4px;
    overflow: hidden;
    background: #e2dcd2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.philo-col-duo {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    width: 100%;
}

.philo-wrap-square {
    width: 100%;
    height: 355px;
    border-radius: 4px;
    overflow: hidden;
    background: #e2dcd2;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.philo-img {
    width: 100%;
    height: 125%;
    margin-top: -12%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.philo-wrap-tall:hover .philo-img,
.philo-wrap-square:hover .philo-img {
    transform: scale(1.035);
}

@media (max-width: 900px) {
    .philosophy-section {
        padding: 5rem 0 5rem;
    }

    .philo-gallery-composition {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philo-wrap-tall {
        height: 480px;
    }

    .philo-wrap-square {
        height: 280px;
    }
}

/* ==========================================================================
   Crafting Spaces with Soul Section
   ========================================================================== */

.crafting-section {
    background-color: #fbfaf8;
    color: #171a1f;
    padding: 7.5rem 0 8.5rem;
    position: relative;
    z-index: 1;
}

.crafting-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.crafting-media-col {
    position: relative;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.crafting-img-frame {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    background: #ded8cd;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    will-change: transform, clip-path;
}

.crafting-img {
    width: 100%;
    height: 125%;
    margin-top: -12%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.crafting-img-frame:hover .crafting-img {
    transform: scale(1.035);
}

.crafting-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    position: relative;
}

.crafting-accent-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 1.8rem;
    transform-origin: left;
}

.crafting-light-scanner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 25%, rgba(255, 255, 255, 0.45) 50%, transparent 75%);
    transform: translateX(-120%);
    pointer-events: none;
    z-index: 2;
}

.crafting-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.22;
    color: #171a1f;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

.crafting-description {
    font-size: clamp(1.05rem, 1.5vw, 1.18rem);
    font-weight: 300;
    line-height: 1.75;
    color: #5a5f69;
    max-width: 520px;
}

@media (max-width: 900px) {
    .crafting-section {
        padding: 5rem 0 5rem;
    }

    .crafting-grid {
        grid-template-columns: 1fr;
        gap: 2.8rem;
    }

    .crafting-img-frame {
        height: 340px;
    }
}

/* ==========================================================================
   Our Instagram Section (Kinetic Continuous Marquee & 3D Cards)
   ========================================================================== */

.instagram-section {
    background-color: #ede8df;
    color: #171a1f;
    padding: 6.5rem 0 8rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.insta-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.insta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 500;
    color: #171a1f;
    letter-spacing: 0.5px;
}

.insta-marquee-wrap {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2rem;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.insta-marquee-track {
    display: flex;
    gap: 1.8rem;
    will-change: transform;
    width: max-content;
}

.insta-card {
    flex-shrink: 0;
    width: 255px;
    height: 315px;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    background: #ffffff;
    display: block;
    position: relative;
}

.insta-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.insta-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.insta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.insta-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.insta-card:hover .insta-hover-overlay {
    opacity: 1;
}

.insta-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171a1f;
    transform: scale(0.65);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.insta-card:hover .insta-badge-icon {
    transform: scale(1);
}

.insta-badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: #171a1f;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 4.5rem 0 5.5rem;
    }
    .insta-card {
        width: 210px;
        height: 260px;
    }
}

/* ==========================================================================
   Testimonial Quote Section (3D Gravity Fall & Impact Settle)
   ========================================================================== */

.quote-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0f1216;
    perspective: 1400px;
}

.quote-parallax-viewport {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.quote-falling-stage {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, filter, opacity;
    transform-style: preserve-3d;
}

.quote-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.quote-bg-img {
    width: 100%;
    height: 125%;
    margin-top: -12%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 16, 20, 0.55) 0%, rgba(14, 16, 20, 0.72) 50%, rgba(14, 16, 20, 0.55) 100%);
}

.quote-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7rem 2rem;
}

.quote-content {
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
    font-weight: 400;
    line-height: 1.45;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .quote-parallax-viewport,
    .quote-falling-stage {
        min-height: 380px;
    }
    .quote-container {
        padding: 5rem 1.5rem;
    }
}

/* ==========================================================================
   Need a Consultation / Contact Section
   ========================================================================== */

.consultation-section {
    background-color: #ede8df;
    color: #171a1f;
    padding: 7.5rem 0 8.5rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.consultation-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 500;
    color: #171a1f;
    margin-bottom: 2.8rem;
    letter-spacing: 0.5px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4d52;
    margin-bottom: 0.3rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #171a1f;
    padding: 6px 0 10px;
    font-family: inherit;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(23, 26, 31, 0.35);
    transform-origin: left;
    transition: background-color 0.3s ease, height 0.3s ease;
}

.form-input:focus + .form-line {
    background: #171a1f;
    height: 2px;
}

.pref-time-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4d52;
    margin-bottom: 0.8rem;
}

.pref-time-options {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.custom-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
    color: #171a1f;
}

.custom-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #171a1f;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    position: relative;
    background: transparent;
}

.custom-checkbox-label input:checked + .checkbox-box {
    background: #171a1f;
    border-color: #171a1f;
}

.custom-checkbox-label input:checked + .checkbox-box::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
}

.btn-consult-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 44px;
    background: #504d47;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 20px rgba(80, 77, 71, 0.25);
    margin-top: 1rem;
}

.btn-consult-submit:hover {
    background: #171a1f;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.consultation-media-col {
    position: relative;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.consult-img-frame {
    position: relative;
    width: 100%;
    height: 560px;
    border-radius: 6px;
    overflow: hidden;
    background: #ded8cd;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transform-style: preserve-3d;
    will-change: transform, clip-path;
}

.consult-img {
    width: 100%;
    height: 120%;
    margin-top: -10%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.consult-img-frame:hover .consult-img {
    transform: scale(1.035);
}

.consult-watermark-wrap {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
}

.consult-watermark-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.consult-scanner-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
    z-index: 3;
}

@media (max-width: 900px) {
    .consultation-section {
        padding: 5rem 0 5rem;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .consult-img-frame {
        height: 380px;
    }
}

/* ==========================================================================
   Site Footer - Minimal Warm Aesthetic
   ========================================================================== */

.site-footer {
    background-color: #eee9e0;
    padding: 2.2rem 0;
    width: 100%;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-social-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #55514a;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.social-icon-link:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
    display: block;
}
