:root {
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.8);
    --font-main: 'Outfit', sans-serif;
    --accent: #d4af37;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--font-main); 
    background: #0a0a0a; 
    color: var(--text-light); 
    overflow-x: hidden; 
}

/* === Hero Section === */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    /* High quality modern architecture image */
    background: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 10vw; /* Offset the glass card to the left */
}

/* === Navbar === */
.navbar {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo { 
    font-size: 24px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    color: var(--text-light); 
    cursor: pointer;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 40px; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text-light); 
    font-size: 14px; 
    font-weight: 600; 
    letter-spacing: 2px; 
    transition: color 0.3s ease; 
}

.nav-links a:hover { 
    color: #c0c0c0; /* Subtle hover effect */
}

#mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

/* === Glassmorphic Portal (Option 3) === */
.glass-container {
    width: 100%;
    z-index: 10;
    margin-top: 50px; /* Offset for navbar */
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 60px 50px;
    border-radius: 24px;
    max-width: 550px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    
    /* Smooth entrance animation */
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

.location-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.glass-title {
    font-size: 80px;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.glass-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button-glass {
    display: inline-flex;
    align-items: center;
    border: 1px solid white;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 50px; /* Modern pill shape */
}

.cta-button-glass .arrow {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-button-glass:hover {
    background: white;
    color: black;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-glass:hover .arrow {
    transform: translateX(5px);
}

/* Animation Keyframes */
@keyframes slideUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* === Responsive Design === */
@media (max-width: 900px) {
    .hero { 
        padding-left: 0; 
        justify-content: center; 
    }
    
    .glass-card { 
        max-width: 90vw; 
        margin: 0 20px; 
        padding: 40px 30px;
    }
    
    .navbar { 
        padding: 30px 5vw; 
    }
    
    .nav-links { 
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100vw;
        height: 50vh; /* Half screen */
        background: rgba(10, 10, 10, 0.4);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
    }
    
    #mobile-menu-toggle:checked ~ .nav-links {
        top: 0;
    }

    .nav-links a {
        font-size: 22px; /* Slightly smaller for half screen */
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: flex;
        position: relative;
        z-index: 101;
    }
    
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) { opacity: 0; }
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .glass-title { 
        font-size: 55px; 
    }
}


/* === About Section === */
.about-section {
    padding: 80px 10vw 60px 10vw;
    background-color: #050505;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: grayscale(30%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.about-image img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.about-content {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.section-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.stats-row {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.m-only { display: none; }

@media (max-width: 900px) {
    .d-only { display: none; }
    .m-only { display: inline; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-section {
        padding: 0 0 80px 0;
    }
    .about-content {
        padding-top: 40px;
        padding-left: 5vw;
        padding-right: 5vw;
    }
    .section-title {
        font-size: 36px;
    }
    .stats-row {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
        background: rgba(255, 255, 255, 0.03);
        padding: 30px 20px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 30px;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-label {
        font-size: 10px;
    }
}

/* === Services Section (Hover Accordion) === */
.services-opt1 {
    padding: 50px 0;
    background: #000;
}
.opt1-container {
    display: flex;
    flex-direction: column;
}
.opt1-row {
    position: relative;
    padding: 40px 10vw;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: padding 0.4s ease;
}
.opt1-row:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.opt1-heading {
    font-size: 50px;
    font-weight: 300;
    color: var(--text-light);
    z-index: 2;
    transition: color 0.4s ease, transform 0.4s ease;
    margin: 0;
}
.opt1-desc {
    font-size: 16px;
    color: var(--text-muted);
    z-index: 2;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}
.opt1-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}
.opt1-row:hover { padding: 80px 10vw; }
.opt1-row:hover .opt1-bg { opacity: 0.4; }
.opt1-row:hover .opt1-heading { color: var(--accent); transform: translateX(20px); }
.opt1-row:hover .opt1-desc { opacity: 1; transform: translateX(0); }


@media (max-width: 900px) {
    .services-opt1 { padding: 10px 0 30px 0; }
    .services-header { margin-bottom: 30px !important; padding-top: 20px !important; }
    .opt1-row { flex-direction: column; align-items: flex-start; gap: 15px; padding: 40px 5vw; }
    .opt1-row:hover { padding: 40px 5vw; }
    .opt1-heading { font-size: 36px; }
    .opt1-desc { opacity: 1; transform: translateX(0); font-size: 14px; margin-bottom: 20px; }
    .opt1-bg { opacity: 0.3; } /* Show image slightly by default on mobile since hover is tricky */
}

/* === Projects Section (Horizontal Cinema) === */

/* OPTION 2: Horizontal Cinema (Scroll-linked) */
.projects-opt2 { padding: 40px 0 0 0; background: #0a0a0a; overflow: visible; }
.h-scroll-wrapper {
    height: 250vh;
    position: relative;
}
.h-scroll-sticky {
    position: sticky;
    top: 0;
    height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.h-scroll-track {
    display: flex;
    gap: 40px;
    padding: 0 5vw;
    width: max-content;
    will-change: transform;
}
.h-card { width: 70vw; position: relative; }
.h-card img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; filter: grayscale(20%); transition: filter 0.4s; }
.h-card:hover img { filter: grayscale(0%); }
.h-card-text { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.h-card-text h3 { font-size: 24px; font-weight: 400; }
.h-card-text p { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 900px) {
    .projects-opt2 { padding: 30px 0 0 0; }
    .opt2-header { margin-bottom: 20px !important; padding-top: 20px !important; }
    .h-scroll-sticky { 
        align-items: flex-start; 
        padding-top: 5vh; 
    }
    .h-card { width: 85vw; }
    .h-scroll-wrapper { height: 250vh; }
    .h-scroll-track { gap: 20px; }
    .h-card-text h3 { font-size: 20px; }
    .h-card img { height: 50vh; }
}

/* === Reviews Section: Liquid Glass === */
.reviews-section {
    position: relative;
    padding: 100px 0 80px;
    /* Rich background image so the glass distortion is clearly visible */
    background:
        url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80')
        center center / cover no-repeat;
    overflow: hidden;
}

/* Dark overlay so text stays readable */
.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(180, 130, 80, 0.45);
    z-index: 0;
    pointer-events: none;
}

.reviews-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 8vw;
    margin-bottom: 60px;
}

.reviews-section .section-subtitle {
    color: rgba(255,255,255,0.75);
    letter-spacing: 4px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.reviews-section .section-title {
    color: #fff;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.5px;
}

/* === Marquee === */
.reviews-marquee-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 20px 0 40px;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollReviewsHorizontal 40s linear infinite;
}

.reviews-marquee-track:hover {
    animation-play-state: paused;
}

.reviews-marquee-content {
    display: flex;
    gap: 28px;
    padding: 20px 14px 20px 28px;
}

@keyframes scrollReviewsHorizontal {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Liquid Glass Card (based on user's glassContainer pattern) === */
.rv-glassContainer {
    position: relative;
    width: 380px;
    min-height: 220px;
    flex-shrink: 0;
    border-radius: 28px;
    display: flex;
    align-items: stretch;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2), box-shadow 0.3s;
}

.rv-glassContainer:hover {
    transform: translateY(-7px) scale(1.025);
}

/* Layer 1: The inset rim/specular highlight (glass edge catching light) */
.rv-glassContainer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 28px;
    pointer-events: none;
    box-shadow:
        inset 2px 2px 0px -1px rgba(255, 255, 255, 0.8),
        inset 0 0 4px 1px rgba(255, 255, 255, 0.5),
        0 8px 32px rgba(0,0,0,0.25);
}

/* Layer 2: The backdrop + SVG displacement distortion (the real liquid glass) */
.rv-glassContainer::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: 28px;
    /* backdrop blur creates the frosted frosted look */
    backdrop-filter: blur(12px) saturate(160%) brightness(1.08);
    -webkit-backdrop-filter: blur(12px) saturate(160%) brightness(1.08);
    /* SVG displacement map creates the liquid lens distortion */
    filter: url(#rv-glass-filter);
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    isolation: isolate;
}

/* Content sits above both pseudo-element layers */
.rv-glass-content {
    position: relative;
    z-index: 3;
    padding: 34px 38px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rv-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.rv-role {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin: 0 0 20px 0;
}

.rv-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin: 0 0 24px 0;
    font-style: italic;
    flex: 1;
}

.rv-stars {
    font-size: 18px;
    color: #ffd97d;
    letter-spacing: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* CTA */
.reviews-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 16px;
}

.write-review-btn {
    position: relative;
    background: transparent;
    border-radius: 9999px;
    outline: none;
    cursor: pointer;
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    border: none;
    transition: transform 0.25s ease;
}

/* Rim highlight on button */
.write-review-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    box-shadow:
        inset 2px 2px 0px -1px rgba(255,255,255,0.8),
        inset 0 0 3px 1px rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
    z-index: 0;
}

/* Backdrop + glass filter on button */
.write-review-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    filter: url(#rv-glass-filter);
    z-index: -1;
    isolation: isolate;
}

.write-review-btn span {
    position: relative;
    z-index: 1;
}

.write-review-btn:hover {
    transform: scale(1.06);
}

@media (max-width: 900px) {
    .reviews-section { padding: 70px 0 60px; }
    .reviews-header  { padding: 0 6vw; margin-bottom: 40px; }
    .rv-glassContainer { width: 290px; min-height: 200px; }
    .rv-glass-content { padding: 26px 26px 22px; }
    .reviews-marquee-content { gap: 18px; padding: 16px 10px 16px 18px; }
}

/* Modal Styling */
.review-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.review-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.review-modal {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px;
    border-radius: 24px;
    width: 90vw;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.05);
}
.review-modal-overlay.active .review-modal {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 32px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover { color: white; }
.modal-title { font-size: 32px; margin-bottom: 20px; font-weight: 300; }
.review-form { display: flex; flex-direction: column; gap: 15px; }
.review-form input, .review-form textarea {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    color: #0a0a0a;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 15px;
}

/* Custom Glassmorphic Select */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    color: #0a0a0a;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.custom-select::after {
    content: '▼';
    font-size: 10px;
}
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.custom-option {
    display: block;
    padding: 15px;
    color: #0a0a0a;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-option:hover {
    background: rgba(0, 0, 0, 0.05);
}
.review-form input::placeholder, .review-form textarea::placeholder {
    color: rgba(0,0,0,0.5);
}
.review-form textarea { resize: vertical; min-height: 120px; }
.submit-btn {
    background: var(--accent);
    color: black;
    border: none;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}
.submit-btn:hover { background: #e5c354; }

.write-review-btn {
    background: transparent;
    border: 1px solid #0a0a0a;
    color: #0a0a0a;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}
.write-review-btn:hover {
    background: #0a0a0a;
    color: #e8e3d3;
}

/* === Footer (Redesigned) === */
.footer-section {
    position: relative;
    background: #080808;
    color: #e8e3d3;
    overflow: hidden;
}

/* === Creative Editorial CTA Strip === */
.fcta-strip {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Giant ghost RR. watermark behind everything */
.fcta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(160px, 28vw, 380px);
    font-weight: 900;
    letter-spacing: -12px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
    line-height: 1;
}

/* Top metadata bar */
.fcta-topbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 10vw;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.fcta-topbar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent, #d4af37);
    flex-shrink: 0;
}

/* 3-column editorial grid */
.fcta-editorial {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    min-height: 420px;
}

.fcta-col {
    padding: 70px 6vw 70px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fcta-col:last-child { border-right: none; }

/* Col 1: Big headline */
.fcta-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 24px 0;
}

.fcta-big-title {
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: #fff;
    margin: 0;
}

.fcta-big-title em {
    font-style: italic;
    color: var(--accent, #d4af37);
}

/* Col 2: Stats */
.fcta-col-stats {
    gap: 0;
    padding: 0;
}

.fcta-stat {
    flex: 1;
    padding: 0 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fcta-stat:last-child { border-bottom: none; }

.fcta-stat-num {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
}

.fcta-stat-suffix {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 200;
    color: var(--accent, #d4af37);
    letter-spacing: -1px;
}

.fcta-stat p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 8px 0 0 0;
}

/* Col 3: Contact CTA */
.fcta-col-contact {
    padding-left: 7vw;
    gap: 28px;
}

.fcta-contact-email {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}
.fcta-contact-email:hover { color: var(--accent, #d4af37); }

.fcta-contact-phone {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: block;
}
.fcta-contact-phone:hover { color: #fff; }

.fcta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent, #d4af37);
    color: #080808;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 4px;
    width: fit-content;
    transition: background 0.3s, gap 0.3s;
}
.fcta-contact-btn:hover {
    background: #fff;
    gap: 20px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0;
}

/* Info Grid */
.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 70px 10vw 60px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    max-width: 280px;
    margin: 0;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent, #d4af37);
    text-transform: uppercase;
    margin: 0 0 24px 0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.25s;
}


/* 3-column editorial grid */
.fcta-editorial {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    min-height: 420px;
}

.fcta-col {
    padding: 70px 6vw 70px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fcta-col:last-child { border-right: none; }

/* === FULL-SCREEN CSS ACCORDION === */
.accordion-projects {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.acc-item {
    flex: 1;
    position: relative;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.acc-item:last-child {
    border-right: none;
}
.acc-item:hover {
    flex: 5;
}

.acc-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) brightness(0.4);
    transition: filter 0.7s, transform 0.7s;
}
.acc-item:hover img {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.05);
}

.acc-title-vertical {
    position: absolute;
    bottom: 40px;
    left: 40px;
    transform: rotate(-90deg);
    transform-origin: 0 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: opacity 0.4s, transform 0.4s;
    opacity: 1;
}
.acc-item:hover .acc-title-vertical {
    opacity: 0;
    transform: rotate(-90deg) translateY(-20px);
}

.acc-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    transition-delay: 0s;
    pointer-events: none;
}
.acc-item:hover .acc-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
    pointer-events: auto;
}

.acc-tag {
    color: var(--accent, #d4af37);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}
.acc-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 200;
    letter-spacing: -2px;
    margin: 0 0 30px 0;
    color: #fff;
    white-space: nowrap;
}
.acc-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s;
    display: inline-block;
    backdrop-filter: blur(4px);
}
.acc-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

@media (max-width: 900px) {
    .accordion-projects {
        flex-direction: column;
    }
    .acc-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .acc-title-vertical {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .acc-item:hover .acc-title-vertical {
        transform: translate(-50%, -50%) scale(0.9);
    }
    .acc-content {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .acc-title {
        font-size: 32px;
        white-space: normal;
    }
}

/* === Pure CSS Mobile Menu === */
#mobile-menu-toggle {
    display: none;
}

@media (max-width: 900px) {
    #mobile-menu-toggle:checked ~ .nav-links {
        top: 0;
    }
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* === Pure CSS Review Modal === */
#reviewModal:target {
    opacity: 1;
    pointer-events: all;
}
#reviewModal:target .review-modal {
    transform: translateY(0);
}

/* === Pure CSS Form Success === */
#formSuccess:target {
    display: block !important;
}

/* === Pure CSS Review Form === */
.real-select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #999;
    color: #111;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}
.real-select:focus {
    outline: 2px solid var(--accent, #d4af37);
}

#reviewSuccess:target {
    opacity: 1;
    pointer-events: all;
}
#reviewSuccess:target .review-modal {
    transform: translateY(0);
}

/* === Mobile Responsiveness for Footer === */
@media (max-width: 900px) {
    .fcta-editorial,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .fcta-col {
        padding: 40px 6vw !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .fcta-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-brand {
        margin-bottom: 10px;
    }
}
