        /* --- DESIGN SYSTEM & RESET --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "IBM Plex Sans", sans-serif;
            background-color: #5C4F4A;
            color: #F5E9D8;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        hr {
            border: none;
            border-top: 1px solid rgba(245, 233, 216, 0.2);
            margin: 25px 0;
        }

        /* --- LAYOUT UTILITIES --- */
        .section-spacer {
            padding: 120px 60px;
        }

        @media (max-width: 768px) {
            .section-spacer {
                padding: 60px 20px;
            }
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* --- GLOBAL HEADER --- */
        header {
            position: absolute;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        @media (max-width: 768px) {
            header {
                padding: 20px;
            }
        }

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 348px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}
        .menu-btn {
            background: transparent;
            border: 1px solid #F5E9D8;
            color: #F5E9D8;
            padding: 12px 24px;
            font-family: "IBM Plex Sans", sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .menu-btn:hover {
            background-color: #F5E9D8;
            color: #5C4F4A;
        }

        /* --- SLIDE-OUT MENU PANEL --- */
        .menu-panel {
            position: fixed;
            top: 0;
            right: -420px;
            width: 420px;
            height: 100vh;
            background-color: #FFFFFF;
            color: #5C4F4A;
            z-index: 200;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        }

        .menu-panel.open {
            right: 0;
        }

        .menu-close {
            align-self: flex-end;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #5C4F4A;
            cursor: pointer;
            font-weight: 300;
        }

        .menu-nav {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: -60px;
        }

        .menu-nav a {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 1px;
            transition: padding-left 0.3s ease, color 0.3s ease;
        }

        .menu-nav a:hover {
            padding-left: 10px;
            color: #A8BBA3;
        }

        .menu-footer {
            font-size: 0.8rem;
            letter-spacing: 1px;
            opacity: 0.7;
            text-transform: uppercase;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.4);
            z-index: 150;
            display: none;
        }

        .menu-overlay.open {
            display: block;
        }

        @media (max-width: 480px) {
            .menu-panel {
                width: 100%;
                right: -100%;
                padding: 40px;
            }
        }

        /* --- HOME: HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            padding: 120px 60px 40px 60px;
            gap: 40px;
        }

        .hero-left {
            width: 65%;
            position: relative;
            height: 100%;
        }

        .hero-right {
            width: 35%;
            height: 100%;
        }

        .floating-card {
            position: absolute;
            bottom: 40px;
            left: 40px;
            width: 320px;
            background-color: #A8BBA3;
            color: #FFFFFF;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .floating-card h3 {
            font-size: 0.85rem;
            letter-spacing: 3px;
            margin-bottom: 15px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .floating-card p {
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.5;
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                height: auto;
                padding-top: 140px;
            }
            .hero-left, .hero-right {
                width: 100%;
                height: 60vh;
            }
            .floating-card {
                left: 20px;
                bottom: 20px;
                width: calc(100% - 40px);
            }
        }

        /* --- HOME: SECTION 2 (DESIGNED FOR LIVING) --- */
        .sec2 {
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .sec2-left {
            width: 50%;
        }

        .sec2-right {
            width: 50%;
            height: 700px;
        }

        .sec-label {
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 40px;
            color: rgba(245, 233, 216, 0.7);
        }

        .editorial-p {
            font-size: 1.1rem;
            font-weight: 300;
            color: #F5E9D8;
            max-width: 540px;
        }

        @media (max-width: 992px) {
            .sec2 {
                flex-direction: column;
                gap: 40px;
            }
            .sec2-left, .sec2-right {
                width: 100%;
            }
            .sec2-right {
                height: 450px;
            }
        }

        /* --- HOME: SECTION 3 (THE RESIDENTIAL JOURNAL) --- */
        .sec3-headline {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 60px;
            text-transform: uppercase;
        }

        .journal-row {
            display: flex;
            padding: 40px 0;
            border-bottom: 1px solid rgba(245, 233, 216, 0.2);
        }

        .journal-row:first-of-type {
            border-top: 1px solid rgba(245, 233, 216, 0.2);
        }

        .journal-left {
            width: 25%;
            font-size: 0.9rem;
            letter-spacing: 2px;
            font-weight: 500;
            opacity: 0.8;
        }

        .journal-right {
            width: 75%;
            font-size: 1.15rem;
            font-weight: 300;
            max-width: 800px;
        }

        @media (max-width: 768px) {
            .journal-row {
                flex-direction: column;
                gap: 15px;
            }
            .journal-left {
                width: 100%;
            }
            .journal-right {
                width: 100%;
                font-size: 1rem;
            }
        }

        /* --- HOME: SECTION 4 (FEATURED SPACES SLIDER) --- */
        .sec4-layout {
            display: flex;
            flex-direction: column;
        }

        .sec4-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .slide-img-container {
            width: 100%;
            aspect-ratio: 1 / 1;
            max-height: 650px;
        }

        .slide-meta {
            margin-top: 25px;
        }

        .slide-meta h4 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .slide-meta p {
            font-size: 1.05rem;
            font-weight: 300;
            max-width: 700px;
        }

        .slider-dots {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(245, 233, 216, 0.3);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #F5E9D8;
        }

        /* --- HOME: SECTION 5 (PORTFOLIO COLLECTION) --- */
        .sec5-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .portfolio-card {
            display: flex;
            flex-direction: column;
        }

        .portfolio-img-box {
            width: 100%;
            aspect-ratio: 1 / 1;
            margin-bottom: 25px;
        }

        .portfolio-card p {
            font-size: 1.05rem;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .sec5-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* --- HOME: SECTION 6 (SUBSCRIBE / UNSUBSCRIBE) --- */
        .sec6 {
            display: flex;
            min-height: 90vh;
        }

        .sec6-left {
            width: 50%;
        }

        .sec6-right {
            width: 50%;
            background-color: #5C4F4A;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sec6-right h2 {
            font-size: 2.2rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .sec6-right .desc {
            font-size: 1.05rem;
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .form-block {
            margin-bottom: 50px;
        }

        .form-block h3 {
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 600;
            color: rgba(245, 233, 216, 0.7);
        }

        .editorial-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 450px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .editorial-form input {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(245, 233, 216, 0.4);
            color: #F5E9D8;
            padding: 12px 4px;
            font-family: "IBM Plex Sans", sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .editorial-form input:focus {
            outline: none;
            border-bottom-color: #F5E9D8;
        }

        .editorial-form input::placeholder {
            color: rgba(245, 233, 216, 0.3);
        }

        .submit-btn {
            align-self: flex-start;
            background-color: #F5E9D8;
            color: #5C4F4A;
            border: none;
            padding: 14px 35px;
            font-family: "IBM Plex Sans", sans-serif;
            font-weight: 500;
            letter-spacing: 2px;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-top: 10px;
            transition: opacity 0.3s;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }

        @media (max-width: 992px) {
            .sec6 {
                flex-direction: column;
            }
            .sec6-left {
                height: 45vh;
                width: 100%;
            }
            .sec6-right {
                width: 100%;
                padding: 60px 20px;
            }
        }

        /* --- INNER PAGES: PORTFOLIO --- */
        .inner-hero {
            padding-top: 160px;
            padding-bottom: 40px;
            text-align: center;
        }

        .inner-hero h1 {
            font-size: 3rem;
            font-weight: 200;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .portfolio-gallery {
            padding: 40px 60px 120px 60px;
            display: flex;
            flex-direction: column;
            gap: 120px;
        }

        .gallery-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .gallery-img-wrap {
            width: 100%;
            height: 70vh;
            min-height: 450px;
        }

        .gallery-text {
            max-width: 800px;
        }

        .gallery-text h2 {
            font-size: 2rem;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .gallery-text p {
            font-size: 1.1rem;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .portfolio-gallery {
                padding: 20px;
                gap: 60px;
            }
            .gallery-img-wrap {
                height: 40vh;
            }
        }

        /* --- INNER PAGES: ABOUT --- */
        .about-layout {
            padding: 40px 60px 120px 60px;
            display: flex;
            flex-direction: column;
            gap: 100px;
        }

        .about-block {
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .about-block:nth-child(even) {
            flex-direction: row-reverse;
        }

        .about-img {
            width: 50%;
            height: 600px;
        }

        .about-text {
            width: 50%;
        }

        .about-text h2 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .about-text p {
            font-size: 1.1rem;
            font-weight: 300;
        }

        @media (max-width: 992px) {
            .about-layout {
                padding: 20px;
                gap: 60px;
            }
            .about-block, .about-block:nth-child(even) {
                flex-direction: column;
                gap: 30px;
            }
            .about-img, .about-text {
                width: 100%;
            }
            .about-img {
                height: 400px;
            }
        }

        /* --- INNER PAGES: CONTACT --- */
        .contact-layout {
            padding: 40px 60px 60px 60px;
            display: flex;
            gap: 80px;
        }

        .contact-left {
            width: 45%;
        }

        .contact-left h2 {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .contact-left p {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .studio-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            font-size: 1rem;
            font-weight: 300;
            border-top: 1px solid rgba(245, 233, 216, 0.2);
            padding-top: 30px;
        }

        .studio-info strong {
            font-weight: 500;
            letter-spacing: 1px;
        }

        .contact-right {
            width: 55%;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
            background-color: rgba(255,255,255,0.02);
            padding: 40px;
            border: 1px solid rgba(245, 233, 216, 0.1);
        }

        .faq-section {
            padding: 60px;
            border-top: 1px solid rgba(245, 233, 216, 0.2);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .faq-item h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 1rem;
            font-weight: 300;
            opacity: 0.8;
        }

        @media (max-width: 992px) {
            .contact-layout {
                flex-direction: column;
                padding: 20px;
                gap: 40px;
            }
            .contact-left, .contact-right {
                width: 100%;
            }
            .contact-form {
                padding: 20px;
            }
            .faq-section {
                padding: 40px 20px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- STANDARD PRIVACY / TERMS PAGES --- */
        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px 120px 20px;
            font-weight: 300;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
            font-weight: 400;
        }

        .legal-content p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        /* --- GLOBAL FOOTER --- */
        footer {
            background-color: #4A3D39;
            color: #F5E9D8;
            padding: 80px 60px 40px 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-col p {
            font-size: 0.95rem;
            font-weight: 300;
            max-width: 300px;
            opacity: 0.8;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul a {
            font-size: 0.95rem;
            font-weight: 300;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-col ul a:hover {
            opacity: 1;
        }

        .footer-divider {
            border-top: 1px solid #A8BBA3;
            margin-bottom: 30px;
        }

        .footer-statement {
            text-align: center;
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        @media (max-width: 992px) {
            footer {
                padding: 60px 20px 30px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
