        :root {
            --primary-cream: #F6F09F;
            --accent-teal: #3F9AAE;
            --soft-sage: #CADCAE;
            --white: #FFFFFF;
            --black: #111111;
            
            --font-heading: "Playfair Display", serif;
            --font-quote: "Barlow Condensed", sans-serif;
            --font-para: "Roboto", sans-serif;
            
            --transition-smooth: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-fast: all 0.3s ease;
        }

        /* --- STYLING BASICS & RESETS --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-para);
            background-color: var(--white);
            color: var(--black);
            line-height: 1.9;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- SCROLL REVEAL PROPULSION ENGINE --- */
        .fade-up-element {
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition-smooth);
        }

        .fade-up-element.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- GLOBAL EDITORIAL ARCHITECTURE --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--black);
        }

        p {
            font-family: var(--font-para);
            font-weight: 400;
            font-size: 1.05rem;
            color: var(--black);
        }

        .section-padding {
            padding: 120px 4%;
            position: relative;
            background-color: var(--white);
        }

        .container-wide {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .editorial-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .btn-luxury {
            display: inline-block;
            font-family: var(--font-quote);
            letter-spacing: 3px;
            text-transform: uppercase;
            background-color: var(--black);
            color: var(--white);
            padding: 18px 45px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-fast);
            border: 1px solid var(--black);
            cursor: pointer;
            border-radius: 0;
            font-size: 1rem;
        }

        .btn-luxury:hover {
            background-color: transparent;
            color: var(--black);
            transform: translateY(-3px);
        }

        /* --- SPA VIEW ROUTING ENGINE COMPONENT --- */
        .app-view {
            display: none;
        }

        .app-view.active-route {
            display: block;
            animation: routeFadeIn 0.8s forwards ease;
        }

        @keyframes routeFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        header {
    background: var(--white);
    padding: 15px 40px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.logo-area {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.navigation-links {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-left: auto;
}

.social-links {
    display: flex;
    gap: 20px;
    border-left: 1px solid #E5E5E5;
    padding-left: 25px;
    align-items: center;
}

        /* --- FLOATING STICKY HEADER COMPONENT --- */
        .header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            z-index: 1000;
            transition: var(--transition-fast);
        }

        .header-wrapper.scrolled-state {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
        }

        .header-wrapper.scrolled-state nav {
            margin: 15px auto;
            padding: 15px 40px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.04);
        }

        header nav {
            background: var(--white);
            border-radius: 100px;
            padding: 20px 40px;
            margin: 30px auto;
            width: 92%;
            max-width: 1400px;
            box-shadow: 0 10px 40px rgba(0,0,0,.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .logo-area {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .logo-image {
            height: 28px;
            object-fit: contain;
        }

        .navigation-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-item {
            font-family: var(--font-para);
            font-weight: 500;
            font-size: 1rem;
            color: var(--black);
            text-decoration: none;
            transition: var(--transition-fast);
            cursor: pointer;
        }

        .nav-item:hover, .nav-item.active-nav {
            color: var(--accent-teal);
        }

        .social-links {
            display: flex;
            gap: 20px;
            border-left: 1px solid #E5E5E5;
            padding-left: 25px;
            align-items: center;
        }

        .social-icon-svg {
            width: 18px;
            height: 18px;
            fill: var(--black);
            transition: var(--transition-fast);
            cursor: pointer;
        }

        .social-icon-svg:hover {
            fill: var(--accent-teal);
            transform: translateY(-2px);
        }

        /* MOBILE NAVIGATION INTERFACE */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 5px;
            z-index: 1100;
        }

        .mobile-toggle span {
            width: 26px;
            height: 2px;
            background-color: var(--black);
            transition: var(--transition-fast);
        }

        /* Hamburger Animation Transforms */
        .mobile-toggle.open-menu span:nth-child(1) {
            transform: rotate(45px) translate(6px, 5px);
        }
        .mobile-toggle.open-menu span:nth-child(2) {
            opacity: 0;
        }
        .mobile-toggle.open-menu span:nth-child(3) {
            transform: rotate(-45px) translate(6px, -5px);
        }

        /* --- SECTION 1: HERO SPLIT ARCHITECTURE --- */
        .hero-split {
            display: flex;
            min-height: 100vh;
            width: 100%;
            padding: 130px 4% 40px 4%;
            background-color: var(--white);
            gap: 30px;
        }

        .hero-left {
            flex: 1.1;
            background-color: var(--primary-cream);
            padding: 80px 6%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .hero-quote {
            font-family: var(--font-quote);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--black);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

        .hero-heading {
            font-family: var(--font-heading);
            font-size: 3.8rem;
            line-height: 1.2;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .hero-paragraph {
            max-width: 600px;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .hero-right {
            flex: 0.9;
            background-size: cover;
            background-position: center;
            min-height: 75vh;
        }

        /* --- SECTION 2: EDITORIAL CENTERED TEXT PANELS --- */
        .centered-layout-s2 {
            text-align: center;
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .wide-editorial-container {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.3rem;
            line-height: 2.1;
            font-weight: 400;
        }

        /* --- SECTION 3: CONDENSED SHORT TEAL FEATURE CARDS --- */
        .feature-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 20px;
        }

        .feature-card {
            background-color: var(--accent-teal);
            color: var(--black);
            padding: 45px 40px;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 320px;
        }

        .feature-card:hover {
            transform: translateY(-15px);
        }

        .feature-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .feature-card p {
            font-size: 1rem;
            line-height: 1.8;
        }

        /* --- SECTION 4: ASYMMETRICAL COLUMN GALLERY GRID --- */
        .gallery-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 20px;
        }

        .inspiration-gallery-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            align-items: center;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
            transition: var(--transition-smooth);
            width: 100%;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-smooth);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-standard {
            height: 400px;
        }

        .gallery-taller {
            height: 520px;
        }

        /* --- SECTION 5: LARGE SQUARE SAGE CARDS --- */
        .collections-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 20px;
        }

        .collection-card {
            background-color: var(--soft-sage);
            padding: 40px;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            aspect-ratio: 1 / 1;
        }

        .collection-card:hover {
            transform: translateY(-15px);
        }

        .collection-img-wrapper {
            width: 100%;
            height: 50%;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .collection-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .collection-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .collection-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: auto;
        }

        .collection-label {
            font-family: var(--font-quote);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 0.95rem;
            font-weight: 700;
            padding-top: 20px;
            border-top: 1px solid rgba(17,17,17,0.15);
        }

        /* --- SECTION 6: MAGNIFIED EDITORIAL STATEMENT PANELS --- */
        .editorial-reflection-block {
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .reflection-heading {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            margin-bottom: 35px;
            font-weight: 800;
        }

        .reflection-quote {
            font-family: var(--font-quote);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 40px;
        }

        /* --- SECTION 7: SUBSCRIPTION & REMOVAL PROCESSING ENGINES --- */
        .newsletter-section {
            background-color: var(--white);
            border-top: 1px solid #ECECEC;
        }

        .newsletter-wrapper {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .newsletter-wrapper h2 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            margin-bottom: 45px;
            font-weight: 700;
        }

        .newsletter-form {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            max-width: 750px;
            margin: 0 auto 30px auto;
        }

        .form-input-element {
            flex: 1;
            padding: 20px 25px;
            border: 1px solid #BBBBBB;
            font-family: var(--font-para);
            font-size: 1rem;
            outline: none;
            border-radius: 0;
            transition: var(--transition-fast);
        }

        .form-input-element:focus {
            border-color: var(--black);
        }

        .unsub-link-trigger {
            font-family: var(--font-para);
            font-size: 0.95rem;
            color: #666666;
            cursor: pointer;
            text-decoration: underline;
            transition: var(--transition-fast);
        }

        .unsub-link-trigger:hover {
            color: var(--black);
        }

        .status-message-box {
            margin-top: 30px;
            padding: 20px;
            font-size: 1rem;
            display: none;
            font-weight: 500;
            text-align: center;
        }

        .status-success {
            display: block;
            background-color: #F4F9F4;
            color: #2E7D32;
            border: 1px solid #C8E6C9;
        }

        .status-unsub {
            display: block;
            background-color: #FFF5F5;
            color: #C62828;
            border: 1px solid #FFCDD2;
        }

        /* --- SUB-PAGE STRUCTURAL ADDITIONS & ADAPTATIONS --- */
        /* Book Online Interactive Tiers */
        .services-interactive-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .booking-service-card {
            border: 1px solid #DDDDDD;
            padding: 40px 25px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .booking-service-card:hover, .booking-service-card.selected-tier {
            border-color: var(--black);
            background-color: var(--primary-cream);
        }

        .booking-service-card h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .interactive-booking-container {
            max-width: 900px;
            margin: 0 auto 100px auto;
            background-color: #FDFDFD;
            border: 1px solid #EAEAEA;
            padding: 60px 50px;
        }

        .form-structural-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 35px;
        }

        .input-wrapper-block {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .input-wrapper-block label {
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: var(--font-quote);
        }

        .span-full-columns {
            grid-column: span 2;
        }

        .input-wrapper-block input, .input-wrapper-block textarea {
            padding: 18px;
            border: 1px solid #CCCCCC;
            font-family: var(--font-para);
            font-size: 1rem;
            outline: none;
        }

        /* FAQ Framework Component */
        .faq-accordion-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-node {
            border-bottom: 1px solid #EAEAEA;
            padding: 30px 0;
        }

        .faq-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            cursor: pointer;
        }

        .faq-content-panel {
            margin-top: 20px;
            display: none;
            color: #333333;
        }

        /* Tips 12-Card Magazine Framework Grid */
        .magazine-insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 100px;
        }

        .editorial-insight-card {
            border: 1px solid #EEEEEE;
            background-color: var(--white);
            transition: var(--transition-smooth);
        }

        .editorial-insight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        .card-photo-vault {
            width: 100%;
            height: 260px;
            overflow: hidden;
        }

        .card-photo-vault img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-narrative-frame {
            padding: 35px 30px;
        }

        .card-narrative-frame h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .card-narrative-frame p {
            font-size: 0.95rem;
            color: #444444;
        }

        /* Operational Blocks Framework */
        .operational-block-matrix {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-bottom: 60px;
        }

        .operational-row {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .operational-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .operational-graphic {
            flex: 1;
            height: 480px;
            overflow: hidden;
        }

        .operational-graphic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .operational-copy {
            flex: 1;
        }

        .operational-copy h3 {
            font-size: 2.4rem;
            margin-bottom: 25px;
        }

        /* Contact Visual Alignment Panels */
        .contact-alignment-matrix {
            display: flex;
            gap: 60px;
            margin-bottom: 40px;
        }

        .contact-details-vault {
            flex: 0.8;
            background-color: #F9F9F9;
            padding: 50px;
        }

        .contact-details-vault h3 {
            font-size: 2rem;
            margin-bottom: 35px;
        }

        .detail-vector-row {
            margin-bottom: 35px;
        }

        .detail-vector-row h5 {
            font-family: var(--font-quote);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 1rem;
            color: #555555;
            margin-bottom: 8px;
        }

        .detail-vector-row p {
            font-size: 1.1rem;
        }

        .contact-transmission-panel {
            flex: 1.2;
        }

        /* --- HORIZONTAL ULTRA-THIN FOOTER --- */
        footer {
            background-color: var(--primary-cream);
            color: var(--black);
            height: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4%;
            font-size: 0.9rem;
            border-top: 1px solid rgba(17,17,17,0.05);
            position: relative;
            z-index: 10;
        }

        .footer-left-anchors {
            display: flex;
            gap: 30px;
        }

        .footer-legal-link {
            color: var(--black);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-fast);
            font-weight: 500;
        }

        .footer-legal-link:hover {
            color: var(--accent-teal);
        }

        .footer-center-copyright {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 400;
        }

        /* --- ACCESSIBILITY OVERLAY DIALOGUES (MODALS) --- */
        .modal-overlay-shroud {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(17,17,17,0.6);
            backdrop-filter: blur(8px);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-body-scaffold {
            background: var(--white);
            padding: 60px;
            max-width: 800px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-body-scaffold h3 {
            font-size: 2.4rem;
            margin-bottom: 25px;
        }

        .modal-body-scaffold p {
            margin-bottom: 20px;
            color: #222222;
        }

        .modal-terminate-trigger {
            position: absolute;
            top: 30px; right: 35px;
            font-size: 2.5rem;
            cursor: pointer;
            line-height: 1;
            transition: var(--transition-fast);
        }

        .modal-terminate-trigger:hover {
            color: var(--accent-teal);
        }

        /* --- SYSTEM RESPONSIVENESS AND BREAKPOINTS --- */
        @media (max-width: 1120px) {
            .hero-split { flex-direction: column; padding-top: 140px; }
            .hero-left { padding: 60px 6%; }
            .hero-right { min-height: 55vh; }
            .feature-cards-grid { grid-template-columns: 1fr; gap: 25px; }
            .inspiration-gallery-row { grid-template-columns: 1fr; gap: 25px; }
            .gallery-standard, .gallery-taller { height: 450px; }
            .collections-grid { grid-template-columns: 1fr; gap: 25px; }
            .collection-card { aspect-ratio: auto; min-height: 400px; }
            .services-interactive-grid { grid-template-columns: 1fr 1fr; }
            .magazine-insights-grid { grid-template-columns: 1fr 1fr; }
            .operational-row, .operational-row:nth-child(even) { flex-direction: column; gap: 30px; }
            .contact-alignment-matrix { flex-direction: column; gap: 40px; }
        }

        @media (max-width: 768px) {
            header nav {
                padding: 15px 30px;
                border-radius: 40px;
                margin: 20px auto;
            }
            .navigation-links {
                display: none;
                position: absolute;
                top: 95px; left: 4%; width: 92%;
                background: var(--white);
                flex-direction: column;
                padding: 40px;
                border-radius: 24px;
                box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                gap: 25px;
                z-index: 1000;
            }
            .navigation-links.mobile-open {
                display: flex;
            }
            .social-links {
                border-left: none;
                padding-left: 0;
                margin-top: 15px;
                justify-content: center;
                width: 100%;
            }
            .mobile-toggle {
                display: flex;
            }
            .hero-heading { font-size: 2.6rem; }
            .reflection-heading { font-size: 2.8rem; }
            .newsletter-form { flex-direction: column; gap: 15px; }
            .form-input-element { width: 100%; }
            .form-structural-grid { grid-template-columns: 1fr; }
            .span-full-columns { grid-column: span 1; }
            .services-interactive-grid { grid-template-columns: 1fr; }
            .magazine-insights-grid { grid-template-columns: 1fr; }
            footer {
                flex-direction: column;
                height: auto;
                padding: 30px 20px;
                gap: 20px;
            }
            .footer-center-copyright {
                position: relative;
                left: 0;
                transform: none;
            }
        }

          .status-message-box {
        margin-top: 20px;
        padding: 15px 20px;
        font-size: 1rem;
        text-align: center;
        display: none;
        border-radius: 4px;
        line-height: 1.6;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
    }

    .status-message-box.status-success {
        display: block;
        background-color: #E6F4EA;
        color: #137333;
        border: 1px solid #C1E7C4;
    }

    .status-message-box.status-error {
        display: block;
        background-color: #FCE8E6;
        color: #C5221F;
        border: 1px solid #FAD2CF;
    }

    .status-message-box.status-unsub {
        display: block;
        background-color: #FCE8E6;
        color: #C5221F;
        border: 1px solid #FAD2CF;
    }

    .status-message-box.status-warning {
        display: block;
        background-color: #FFF8E1;
        color: #E65100;
        border: 1px solid #FFE082;
    }

    .toggle-btn {
        transition: all 0.3s ease;
    }

    .toggle-btn:hover {
        opacity: 0.8;
    }

    #newsletterSubscribeContainer,
    #newsletterUnsubscribeContainer {
        animation: fadeSlideIn 0.4s ease;
    }

    @keyframes fadeSlideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-input-element:focus {
        border-color: var(--black);
        background-color: #fafafa;
    }

    .btn-luxury {
        transition: all 0.3s ease;
    }

    .btn-luxury:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }