   /* CSS Core Resets & Architectural Theme Engine */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg-primary: #F7F0F0;
            --color-green: #25671E;
            --color-dark-olive: #41431B;
            --color-text-dark: #1C1D17;
            --font-editorial: 'Cinzel', serif; /* Substituting localized heading font elegantly for global modern luxury execution */
            --font-body: 'Inter', sans-serif;
            --transition-luxury: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-snap: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            background-color: var(--bg-primary);
            color: var(--color-text-dark);
            font-family: var(--font-body);
            overflow-x: hidden;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography Global Hierarchy */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-editorial);
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.01em;
            color: var(--color-dark-olive);
        }

        p {
            font-size: 1.05rem;
            color: rgba(28, 29, 23, 0.8);
            font-weight: 300;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-snap);
        }

        img {
            width: 100%;
            display: block;
            object-fit: cover;
            transition: var(--transition-luxury);
        }

        button, input, textarea {
            font-family: var(--font-body);
            background: none;
            border: none;
            outline: none;
        }

        /* Luxury Framework UI Elements */
        .btn-editorial-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2.2rem;
            border: 1px solid var(--color-green);
            border-radius: 0px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 500;
            transition: var(--transition-luxury);
            cursor: pointer;
        }

        .btn-editorial-outline:hover {
            background-color: var(--color-green);
            color: var(--bg-primary) !important;
        }

        .btn-editorial-outline.dark {
            border-color: var(--color-dark-olive);
            color: var(--color-dark-olive);
        }

        /* Universal Sticky Editorial Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 110px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4rem;
            transition: var(--transition-luxury);
        }

        header.scrolled {
            height: 85px;
            background-color: var(--bg-primary);
            box-shadow: 0 10px 40px rgba(65, 67, 27, 0.05);
            border-bottom: 1px solid rgba(65, 67, 27, 0.05);
        }

        header .logo-frame {
            font-family: var(--font-editorial);
            font-size: 2.4rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
            color:aquamarine; 
            background-color: brown;
        }

        header.scrolled .logo-frame {
            color:aquamarine; 
        }

        header nav {
            display: flex;
            gap: 3rem;
        }

        header nav a {
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--bg-primary);
            position: relative;
            padding: 0.5rem 0;
        }

        header.scrolled nav a {
            color: var(--color-text-dark);
        }

        header nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color-green);
            transition: var(--transition-snap);
        }

        header nav a:hover::after, header nav a.active::after {
            width: 100%;
        }

        header .right-action-cluster {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        header .right-action-cluster .btn-editorial-outline {
            color: var(--bg-primary);
            border-color: var(--bg-primary);
        }

        header.scrolled .right-action-cluster .btn-editorial-outline {
            color: var(--color-green);
            border-color: var(--color-green);
        }

        /* Responsive Adaptive Hamburger Architecture */
        .menu-hamburger-trigger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1002;
        }

        .menu-hamburger-trigger span {
            width: 28px;
            height: 1px;
            background-color: var(--bg-primary);
            transition: var(--transition-snap);
        }

        header.scrolled .menu-hamburger-trigger span {
            background-color: var(--color-dark-olive);
        }

        .mobile-magazine-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--bg-primary);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 6rem 4rem;
            gap: 2rem;
            transition: var(--transition-luxury);
        }

        .mobile-magazine-overlay.open {
            left: 0;
        }

        .mobile-magazine-overlay a {
            font-family: var(--font-editorial);
            font-size: 2.5rem;
            color: var(--color-dark-olive);
            border-bottom: 1px solid rgba(65, 67, 27, 0.1);
            padding-bottom: 0.5rem;
        }

        /* Main Structural Core viewport */
        main {
            position: relative;
            width: 100%;
        }

        section {
            position: relative;
            padding: 10rem 4rem;
            overflow: hidden;
        }

        /* SECTION 1 — Cinematic Editorial Hero */
        #editorial-hero {
            height: 100vh;
            padding: 0;
            display: flex;
            align-items: center;
        }

        .hero-cinematic-video-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-cinematic-video-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(65, 67, 27, 0.75) 30%, rgba(65, 67, 27, 0.4) 100%);
        }

        .hero-cinematic-video-wrap video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-editorial-statement {
            position: relative;
            z-index: 2;
            padding: 0 4rem;
            max-width: 900px;
            color: var(--bg-primary);
        }

        .hero-editorial-statement h1 {
            font-size: 5.5rem;
            color: var(--bg-primary);
            margin-bottom: 2rem;
            line-height: 1.05;
        }

        .hero-editorial-statement p {
            color: rgba(247, 240, 240, 0.9);
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 3rem;
        }

        .hero-floating-tags {
            display: flex;
            gap: 1.5rem;
        }

        .hero-tag-node {
            padding: 0.5rem 1.5rem;
            border: 1px solid rgba(247, 240, 240, 0.3);
            border-radius: 30px;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            background: rgba(257, 240, 240, 0.05);
        }

        .scrolling-ribbon-track {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-dark-olive);
            color: var(--bg-primary);
            padding: 1.2rem 0;
            overflow: hidden;
            z-index: 2;
            white-space: nowrap;
            border-top: 1px solid rgba(247, 240, 240, 0.1);
        }

        .ribbon-marquee-content {
            display: inline-block;
            font-family: var(--font-editorial);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            animation: marqueeSequence 25s linear infinite;
        }

        @keyframes marqueeSequence {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* SECTION 2 — Editorial Welcome Asymmetry */
        #editorial-welcome {
            background-color: var(--bg-primary);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .welcome-composition-frame {
            position: relative;
            height: 650px;
        }

        .welcome-img-tall {
            width: 75%;
            height: 85%;
            object-fit: cover;
            border-radius: 8px;
        }

        .welcome-img-overlap {
            position: absolute;
            width: 50%;
            height: 45%;
            bottom: 0;
            right: 0;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 30px 60px rgba(65, 67, 27, 0.15);
            border: 12px solid var(--bg-primary);
        }

        .welcome-editorial-copy h2 {
            font-size: 3.8rem;
            margin-bottom: 2rem;
        }

        .welcome-editorial-copy p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            text-align: justify;
        }

        .welcome-bordered-quote {
            border-left: 2px solid var(--color-green);
            padding-left: 2rem;
            margin-top: 2rem;
            font-family: var(--font-editorial);
            font-size: 1.4rem;
            font-style: italic;
            color: var(--color-dark-olive);
        }

        /* SECTION 3 — Living Spaces Gallery Mosaic */
        #living-spaces-mosaic {
            background-color: var(--color-dark-olive);
            color: var(--bg-primary);
        }

        #living-spaces-mosaic h2 {
            color: var(--bg-primary);
            font-size: 3.5rem;
            margin-bottom: 4rem;
        }

        .mosaic-structural-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem;
        }

        .mosaic-node-item {
            position: relative;
            cursor: pointer;
        }

        .mosaic-node-item .img-container {
            overflow: hidden;
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }

        .mosaic-node-item:nth-child(odd) .img-container { height: 450px; }
        .mosaic-node-item:nth-child(even) .img-container { height: 320px; }

        .mosaic-node-item:hover img {
            transform: scale(1.05);
        }

        .mosaic-node-item h3 {
            color: var(--bg-primary);
            font-size: 1.4rem;
            margin-bottom: 0.25rem;
        }

        .mosaic-node-item span {
            color: var(--color-green);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            font-weight: 600;
        }

        .mosaic-node-item p {
            color: rgba(247, 240, 240, 0.7);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* SECTION 4 — Philosophy Wall Floating Panel */
        #philosophy-blur-wall {
            background: linear-gradient(rgba(28,29,23,0.4), rgba(28,29,23,0.4)), url('https://media.architonic.com/m-on/3100400/product/20330929/antoniolupi_fortepiano_437f8a14.jpeg?format=webp&quality=75') center center no-repeat;
            background-size: cover;
            padding: 12rem 4rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .philosophy-floating-panel {
            background: rgba(247, 240, 240, 0.85);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(247, 240, 240, 0.2);
            padding: 5rem;
            max-width: 1100px;
            width: 100%;
            text-align: center;
            border-radius: 16px;
        }

        .philosophy-floating-panel h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .philosophy-floating-panel p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0 auto 4rem auto;
        }

        .pull-quotes-horizontal-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            border-top: 1px solid rgba(65, 67, 27, 0.1);
            padding-top: 3rem;
        }

        .pull-quote-item-box h4 {
            font-size: 1.25rem;
            font-style: italic;
            line-height: 1.5;
            color: var(--color-dark-olive);
        }

        /* SECTION 5 — Service Essays Alignment Sequence */
        .service-essay-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8rem;
            align-items: center;
            margin-bottom: 10rem;
        }

        .service-essay-block:last-child { margin-bottom: 0; }

        .service-essay-block.reverse {
            direction: rtl;
        }
        .service-essay-block.reverse * { direction: ltr; }

        .essay-content-zone .index-num {
            font-family: var(--font-editorial);
            font-size: 1.2rem;
            color: var(--color-green);
            display: block;
            margin-bottom: 1rem;
        }

        .essay-content-zone h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .essay-image-zone img {
            border-radius: 8px;
            height: 550px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* SECTION 6 — Transformation Stories */
        .transformation-layout-wrap {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .transformation-images-layered {
            position: relative;
            height: 500px;
        }

        .trans-panel {
            position: absolute;
            width: 65%;
            height: 80%;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .trans-panel.before-state {
            top: 0; left: 0; z-index: 1; filter: grayscale(1);
        }
        .trans-panel.after-state {
            bottom: 0; right: 0; z-index: 2; border: 8px solid var(--bg-primary);
        }

        .trans-panel span {
            position: absolute;
            top: 1rem; left: 1rem;
            background-color: var(--color-dark-olive);
            color: var(--bg-primary);
            padding: 0.3rem 1rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* SECTION 7 — Materials & Care Dynamic Matrix */
        #materials-care-matrix {
            background-color: var(--color-green);
            color: var(--bg-primary);
            text-align: center;
        }

        #materials-care-matrix h2 {
            color: var(--bg-primary);
            font-size: 3.5rem;
            margin-bottom: 5rem;
        }

        .materials-circle-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 3rem;
            position: relative;
        }

        .material-circle-node {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 1px dashed rgba(247, 240, 240, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: var(--transition-luxury);
            cursor: pointer;
        }

        .material-circle-node:hover {
            background-color: var(--bg-primary);
            color: var(--color-green);
            transform: translateY(-5px);
            border-style: solid;
        }

        .material-circle-node h3 {
            color: inherit;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .material-circle-node p {
            color: inherit;
            font-size: 0.75rem;
            opacity: 0.8;
        }

        /* SECTION 8 — Signature Homes Horizontal Track */
        .horizontal-scroll-viewport {
            overflow-x: auto;
            display: flex;
            gap: 4rem;
            padding: 4rem 0;
            scrollbar-width: none;
        }

        .horizontal-scroll-viewport::-webkit-scrollbar { display: none; }

        .signature-home-card {
            flex: 0 0 500px;
        }

        .signature-home-card img {
            height: 350px;
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }

        /* SECTION 9 — Reading Room Columnized Layout */
        .reading-room-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5rem;
            margin-top: 4rem;
        }

        .reading-column-essay h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(65, 67, 27, 0.1);
            padding-bottom: 1rem;
        }

        .reading-column-essay p {
            font-size: 1.05rem;
            text-align: justify;
        }

        /* SECTION 10 — Home Rituals Custom Accordion */
        .split-rituals-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: center;
        }

        .rituals-accordion-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .ritual-accordion-node {
            border-bottom: 1px solid rgba(65, 67, 27, 0.1);
            padding-bottom: 1.5rem;
        }

        .ritual-header-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            font-family: var(--font-editorial);
            font-size: 1.6rem;
            cursor: pointer;
            text-align: left;
            color: var(--color-dark-olive);
        }

        .ritual-panel-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .ritual-panel-content p {
            padding-top: 1rem;
            font-size: 1.05rem;
        }

        /* SECTION 11 — Client Reflections Glassmorphism Track */
        #client-reflections-section {
            background-color: var(--color-dark-olive);
        }

        .glass-drag-track {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            padding: 2rem 0;
            scrollbar-width: none;
        }

        .glass-drag-track::-webkit-scrollbar { display: none; }

        .glass-reflection-card {
            flex: 0 0 480px;
            background: rgba(247, 240, 240, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(247, 240, 240, 0.1);
            padding: 3.5rem;
            border-radius: 12px;
            color: var(--bg-primary);
        }

        .glass-reflection-card p {
            color: rgba(247, 240, 240, 0.9);
            font-style: italic;
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .glass-profile-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .glass-profile-meta img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

        .glass-profile-meta h4 {
            color: var(--bg-primary);
            font-size: 1.1rem;
        }

        .glass-profile-meta span {
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* SECTION 14 — Booking Lounge Form States */
        .booking-lounge-split {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 6rem;
            align-items: center;
        }

        .floating-cream-panel {
            background-color: #FFFDFD;
            padding: 5rem;
            border-radius: 16px;
            box-shadow: 0 40px 80px rgba(65, 67, 27, 0.04);
        }

        .editorial-field-frame {
            margin-bottom: 2rem;
            position: relative;
        }

        .editorial-field-frame input, .editorial-field-frame select {
            width: 100%;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(65, 67, 27, 0.2);
            font-size: 1rem;
            color: var(--color-text-dark);
            background: transparent;
            border-top: none; border-left: none; border-right: none;
            transition: var(--transition-snap);
        }

        .editorial-field-frame input:focus, .editorial-field-frame select:focus {
            border-bottom-color: var(--color-green);
        }

        .state-notice-container {
            margin-top: 2rem;
            padding: 1.2rem;
            border-radius: 4px;
            font-weight: 500;
            display: none;
        }

        /* SECTION 15 — Sustainability Manifesto Long Form */
        #sustainability-manifesto {
            background-color: var(--color-green);
            color: var(--bg-primary);
            text-align: center;
            padding: 14rem 4rem;
        }

        #sustainability-manifesto max-wrapper {
            max-width: 900px;
            display: block;
            margin: 0 auto;
        }

        #sustainability-manifesto h2 {
            color: var(--bg-primary);
            font-size: 4rem;
            margin-bottom: 2.5rem;
        }

        #sustainability-manifesto p {
            color: rgba(247, 240, 240, 0.9);
            font-size: 1.3rem;
            line-height: 2;
            text-align: justify;
        }

        /* INNER PAGES GENERIC ELEMENTS */
        .inner-page-hero-dossier {
            padding: 14rem 4rem 6rem 4rem;
            background-color: #F0E8E8;
            border-bottom: 1px solid rgba(65, 67, 27, 0.05);
        }

        .inner-page-hero-dossier h1 {
            font-size: 5rem;
            max-width: 1100px;
            color: var(--color-dark-olive);
        }

        .inner-page-body-container {
            padding: 6rem 4rem;
        }

        /* PREMIUM COMPREHENSIVE FOOTER */
        footer {
            background-color: #1C1D17;
            color: var(--bg-primary);
            padding: 8rem 4rem 3rem 4rem;
        }

        .footer-four-column-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .footer-matrix-column h4 {
            color: var(--bg-primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 2rem;
            opacity: 0.4;
        }

        .footer-matrix-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-matrix-column ul a {
            color: rgba(247, 240, 240, 0.7);
            font-size: 0.95rem;
        }

        .footer-matrix-column ul a:hover {
            color: var(--bg-primary);
            padding-left: 6px;
        }

        .footer-base-legal-row {
            border-top: 1px solid rgba(247, 240, 240, 0.08);
            padding-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(247, 240, 240, 0.4);
        }

        /* RESPONSIVE LAYOUT BREAKPOINTS */
        @media (max-width: 1200px) {
            header nav { display: none; }
            .menu-hamburger-trigger { display: flex; }
            #editorial-welcome, .mosaic-structural-grid, .service-essay-block, .transformation-layout-wrap, .reading-room-columns, .split-rituals-layout, .booking-lounge-split, .footer-four-column-matrix {
                grid-template-columns: 1fr;
            }
            .service-essay-block.reverse { direction: ltr; }
            .welcome-composition-frame { height: 450px; }
            header { padding: 0 2rem; }
            section { padding: 6rem 2rem; }
        }

        /* Unsubscribe form styling */
#lounge-unsubscribe-email:focus {
  border-bottom-color: var(--color-green) !important;
}

#lounge-unsubscribe-email::placeholder {
  color: rgba(65,67,27,0.3);
  font-weight: 300;
}

/* Feedback animation */
.state-notice-container {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 400;
  display: none;
  animation: fadeInUp 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}