        /* ==========================================================================
           1. ROOT SYSTEM ARCHITECTURE & BRAND VARIABLES
           ========================================================================== */
        :root {
            --sand-white: #EAEAEA;
            --coastal-taupe: #706D54;
            --white: #FFFFFF;
            --soft-cream: #F6F4F1;
            --dark-brown: #4D4938;
            
            --font-editorial: "Cormorant Garamond", serif;
            --transition-fluid: all 0.9s cubic-bezier(0.25, 1, 0.3, 1);
            --transition-snappy: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--soft-cream);
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-editorial);
            color: var(--dark-brown);
            background-color: var(--soft-cream);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* Editorial Hierarchy Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 300;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            line-height: 1.15;
            color: var(--dark-brown);
        }

        p {
            font-size: 1.25rem;
            line-height: 1.8;
            font-weight: 300;
            letter-spacing: 0.01em;
            color: var(--dark-brown);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-snappy);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Luxury Interactive Elements */
        .luxury-cta-button {
            display: inline-block;
            padding: 16px 40px;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            border: 1px solid var(--dark-brown);
            background: transparent;
            color: var(--dark-brown);
            cursor: pointer;
            transition: var(--transition-fluid);
        }

        .luxury-cta-button:hover {
            background-color: var(--dark-brown);
            color: var(--sand-white);
            transform: translateY(-3px);
        }

        /* Single Page Routing Architectural Wrappers */
        .spa-view-panel {
            display: none;
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .spa-view-panel.active-viewport {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* ==========================================================================
           2. EXCLUSIVE NAVIGATION HEADER LAYOUT
           ========================================================================== */
        .editorial-header-container {
            margin: 30px 40px 0 40px;
            height: 90px;
            background-color: var(--coastal-taupe);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 50px;
            position: relative;
            z-index: 2000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }
.hotel-monogram-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--sand-white);
}

.hotel-monogram-logo img {
    height: 240px;
    width: auto;
    display: block;
    object-fit: contain;
}

.hotel-monogram-logo:hover {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
        .center-nav-links-deck {
            display: flex;
            gap: 2rem;
        }

        .center-nav-links-deck a {
            font-size: 1.01rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--sand-white);
            position: relative;
            padding: 8px 0;
            font-weight: 300;
        }

        .center-nav-links-deck a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 1px;
            background-color: var(--sand-white);
            transition: var(--transition-fluid);
        }

        .center-nav-links-deck a:hover::after {
            width: 100%;
        }

        .right-header-action-node .contact-link-button {
            border: 1px solid var(--sand-white);
            color: var(--sand-white);
            padding: 12px 32px;
            background: transparent;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition-fluid);
        }

        .right-header-action-node .contact-link-button:hover {
            background-color: var(--sand-white);
            color: var(--coastal-taupe);
        }

        /* Responsive Mobile Drawer Navigation Controls */
        .mobile-hamburger-trigger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 2500;
        }

        .mobile-hamburger-trigger span {
            width: 100%;
            height: 1px;
            background-color: var(--sand-white);
            transition: var(--transition-snappy);
        }

        .mobile-drawer-overlay-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--coastal-taupe);
            z-index: 2200;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            transition: var(--transition-fluid);
        }

        .mobile-drawer-overlay-menu.drawer-active {
            right: 0;
        }

        .mobile-drawer-overlay-menu a {
            font-size: 2.2rem;
            color: var(--sand-white);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 300;
        }

        /* ==========================================================================
           3. HOME PAGE VISUAL MATRIX (SECTIONS 01 — 09)
           ========================================================================== */
        
        /* SECTION 01 — HERO OCEAN RETREAT */
        .hero-ocean-retreat-section {
            height: 100vh;
            margin: 0 40px;
            position: relative;
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.25)), url('https://i.pinimg.com/736x/0d/47/70/0d47704b4b60d2ff86ae5b62021d130f.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .hero-ocean-retreat-section h1 {
            font-size: clamp(3.2rem, 7.5vw, 6rem);
            color: var(--white);
            font-weight: 300;
            margin-bottom: 2.5rem;
            line-height: 1.1;
        }

        .hero-ocean-retreat-section p.hero-italic-quote {
            font-size: clamp(1.3rem, 3vw, 1.75rem);
            font-style: italic;
            max-width: 800px;
            color: var(--sand-white);
            font-weight: 300;
        }

        /* SECTION 02 — RESORT STORY */
        .resort-story-section {
            background-color: var(--sand-white);
            padding: 12rem 6rem;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 6rem;
            align-items: start;
        }

        .resort-story-section h2 {
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            color: var(--coastal-taupe);
        }

        .resort-story-section .editorial-longform-text {
            color: var(--coastal-taupe);
            max-width: 750px;
        }

        /* SECTION 03 — FEATURED EXPERIENCES */
        .featured-experiences-section {
            background-color: var(--sand-white);
            padding: 0 6rem 12rem 6rem;
        }

        .experiences-top-layout-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid rgba(112, 109, 84, 0.25);
            padding-bottom: 3rem;
            margin-bottom: 6rem;
        }

        .experiences-top-layout-row h2 {
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            color: var(--coastal-taupe);
        }

        .experiences-top-layout-row p.luxury-top-quote {
            font-style: italic;
            font-size: 1.45rem;
            max-width: 450px;
            text-align: right;
            color: var(--coastal-taupe);
        }

        .experiences-bottom-cards-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .tall-editorial-image-card {
            background: transparent;
            cursor: pointer;
        }

        .tall-editorial-image-card .card-image-overflow-container {
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .tall-editorial-image-card .card-image-overflow-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-fluid);
        }

        .tall-editorial-image-card:hover .card-image-overflow-container img {
            transform: scale(1.06);
        }

        .tall-editorial-image-card h3 {
            font-size: 1.9rem;
            color: var(--coastal-taupe);
            margin-bottom: 0.6rem;
        }

        .tall-editorial-image-card p {
            font-size: 1.2rem;
            color: var(--coastal-taupe);
            opacity: 0.9;
        }

        /* SECTION 04 — HOSPITALITY PHILOSOPHY */
        .hospitality-philosophy-section {
            background-color: var(--sand-white);
            padding: 0 6rem 12rem 6rem;
        }

        .hospitality-philosophy-section h2 {
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            color: var(--coastal-taupe);
            margin-bottom: 6rem;
            max-width: 700px;
        }

        .philosophy-editorial-blocks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5rem;
        }

        .philosophy-editorial-block h3 {
            font-size: 1.65rem;
            color: var(--coastal-taupe);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(112, 109, 84, 0.2);
            padding-bottom: 1.2rem;
        }

        .philosophy-editorial-block p {
            color: var(--coastal-taupe);
        }

        /* SECTION 05 — GUEST JOURNAL */
        .guest-journal-section {
            background-color: var(--sand-white);
            padding: 0 6rem 12rem 6rem;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 7rem;
        }

        .guest-journal-section h2 {
            font-size: 3rem;
            color: var(--coastal-taupe);
            margin-bottom: 3.5rem;
        }

        .journal-form-block-unit {
            margin-bottom: 4rem;
            max-width: 550px;
        }

        .journal-form-block-unit h4 {
            font-size: 1.25rem;
            margin-bottom: 1.2rem;
            color: var(--coastal-taupe);
            letter-spacing: 0.15em;
        }

        .journal-inline-input-group {
            display: flex;
            border-bottom: 1px solid var(--coastal-taupe);
            padding-bottom: 8px;
        }

        .journal-inline-input-group input {
            background: transparent;
            border: none;
            font-family: var(--font-editorial);
            font-size: 1.3rem;
            color: var(--dark-brown);
            flex: 1;
            padding: 8px 0;
        }

        .journal-inline-input-group button {
            background: transparent;
            border: none;
            font-family: var(--font-editorial);
            text-transform: uppercase;
            font-size: 1.1rem;
            letter-spacing: 0.15em;
            color: var(--coastal-taupe);
            cursor: pointer;
            padding: 0 15px;
            transition: var(--transition-snappy);
        }

        .journal-inline-input-group button:hover {
            color: var(--dark-brown);
            transform: translateX(3px);
        }

        .journal-state-notification-msg {
            margin-top: 15px;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--dark-brown);
            display: none;
        }

        .guest-journal-section .right-narrative-block p {
            color: var(--coastal-taupe);
        }

        /* SECTION 06 — CINEMATIC DESTINATION FEATURE */
        .cinematic-destination-parallax-strip {
            height: 900px;
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://i.pinimg.com/736x/43/f3/83/43f383b09e9d2766d9b3b9bb64425a06.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-align: center;
            padding: 0 20px;
        }

        .cinematic-destination-parallax-strip span {
            font-size: 1.35rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: var(--sand-white);
        }

        .cinematic-destination-parallax-strip h2 {
            font-size: clamp(2.8rem, 6.5vw, 4.8rem);
            color: var(--white);
            max-width: 1100px;
            line-height: 1.2;
        }

        /* SECTION 07 — ACCOMMODATION SHOWCASE */
        .accommodation-showcase-section {
            background-color: var(--soft-cream);
            padding: 12rem 6rem;
            color: var(--coastal-taupe);
        }

        .accommodation-showcase-section h2 {
            font-size: clamp(2.8rem, 5vw, 4rem);
            color: var(--coastal-taupe);
            margin-bottom: 6rem;
            text-align: center;
        }

        .suite-showcase-editorial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .suite-showcase-card {
            background-color: var(--white);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(112, 109, 84, 0.08);
            transition: var(--transition-fluid);
        }

        .suite-showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
        }

        .suite-card-image-box {
            width: 100%;
            aspect-ratio: 16/11;
            overflow: hidden;
        }

        .suite-card-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-fluid);
        }

        .suite-showcase-card:hover .suite-card-image-box img {
            transform: scale(1.04);
        }

        .suite-card-text-padding {
            padding: 3rem 2.5rem;
        }

        .suite-card-text-padding h3 {
            font-size: 2rem;
            color: var(--coastal-taupe);
            margin-bottom: 1.2rem;
        }

        .suite-card-text-padding p {
            font-size: 1.15rem;
            color: var(--coastal-taupe);
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        /* SECTION 08 — DINING EXPERIENCE */
        .dining-experience-poster-split {
            background-color: var(--sand-white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 85vh;
        }

        .dining-poster-visual-frame {
            background-image: url('https://i.pinimg.com/736x/40/be/ed/40beed34090a2826ef8f1cd1a2cf1d0f.jpg');
            background-size: cover;
            background-position: center;
            min-height: 550px;
        }

        .dining-poster-narrative-frame {
            padding: 10rem 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--coastal-taupe);
        }

        .dining-poster-narrative-frame h2 {
            font-size: clamp(2.5rem, 4vw, 3.8rem);
            color: var(--coastal-taupe);
            margin-bottom: 2rem;
        }

        .dining-poster-narrative-frame p {
            color: var(--coastal-taupe);
            max-width: 650px;
            margin-bottom: 3.5rem;
        }

        /* SECTION 09 — FINAL DESTINATION STATEMENT */
        .final-destination-statement-section {
            height: 100vh;
            background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url('https://i.pinimg.com/736x/4d/e0/11/4de011316192df27ed6f2c4a3183393c.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .final-destination-statement-section h2 {
            font-size: clamp(3rem, 6.5vw, 5.2rem);
            color: var(--white);
            margin-bottom: 3.5rem;
        }

        .final-destination-statement-section .luxury-cta-button {
            border-color: var(--white);
            color: var(--white);
        }

        .final-destination-statement-section .luxury-cta-button:hover {
            background-color: var(--white);
            color: var(--dark-brown);
        }

        /* ==========================================================================
           4. INNER SUB-PAGES SYSTEM (EDITORIAL ROW TEMPLATES)
           ========================================================================== */
        .subpage-hero-magazine-banner {
            height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin: 0 40px;
            position: relative;
        }

        .subpage-hero-magazine-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0,0,0,0.25);
        }

        .subpage-hero-magazine-banner h1 {
            font-size: clamp(3.2rem, 6.5vw, 5rem);
            color: var(--white);
            position: relative;
            z-index: 10;
        }

        .subpage-row-editorial-container {
            padding: 12rem 6rem;
            background-color: var(--soft-cream);
        }

        .subpage-presentation-editorial-row {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 7rem;
            margin-bottom: 12rem;
            align-items: center;
        }

        .subpage-presentation-editorial-row:last-child {
            margin-bottom: 0;
        }

        .subpage-presentation-editorial-row:nth-child(even) {
            grid-template-columns: 0.9fr 1.1fr;
        }

        .subpage-presentation-editorial-row:nth-child(even) .row-image-frame-holder {
            grid-column: 2;
        }

        .subpage-presentation-editorial-row:nth-child(even) .row-narrative-frame-holder {
            grid-column: 1;
        }

        .row-image-frame-holder {
            width: 100%;
            aspect-ratio: 16/11;
            overflow: hidden;
            box-shadow: 0 35px 70px rgba(0,0,0,0.03);
        }

        .row-image-frame-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .row-narrative-frame-holder h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: var(--dark-brown);
            margin-bottom: 1.8rem;
        }

        .row-narrative-frame-holder p {
            margin-bottom: 2rem;
        }

        .row-amenity-fineprint-list {
            margin-top: 2rem;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            font-size: 1.2rem;
            border-top: 1px solid rgba(112,109,84,0.2);
            padding-top: 2rem;
        }

        /* CONTACT SUBPAGE SPLIT SCHEMATIC */
        .contact-page-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 95vh;
            background-color: var(--soft-cream);
        }

        .contact-page-left-scenic-image {
            background-image: url('https://i.pinimg.com/736x/8a/10/3f/8a103f9e694f1be362acdab34077447c.jpg');
            background-size: cover;
            background-position: center;
        }

        .contact-page-right-inquiry-box {
            padding: 10rem 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-page-right-inquiry-box h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .contact-page-right-inquiry-box p {
            margin-bottom: 4rem;
        }

        .luxury-booking-inquiry-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .luxury-booking-inquiry-form .form-cell-span-all {
            grid-column: span 2;
        }

        .luxury-booking-inquiry-form .input-group-element-node {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid var(--coastal-taupe);
            padding-bottom: 8px;
        }

        .luxury-booking-inquiry-form .input-group-element-node label {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 6px;
            opacity: 0.8;
            color: var(--coastal-taupe);
        }

        .luxury-booking-inquiry-form .input-group-element-node input,
        .luxury-booking-inquiry-form .input-group-element-node textarea {
            background: transparent;
            border: none;
            font-family: var(--font-editorial);
            font-size: 1.3rem;
            color: var(--dark-brown);
            padding: 6px 0;
        }

        /* ==========================================================================
           5. EDITORIAL ARCHITECTURAL FOOTER
           ========================================================================== */
        footer {
            background-color: var(--sand-white);
            color: var(--coastal-taupe);
            padding: 12rem 6rem 4rem 6rem;
            border-top: 1px solid rgba(112, 109, 84, 0.15);
        }

        .footer-brand-monolith-block {
            margin-bottom: 7rem;
        }

        .footer-brand-monolith-block h2 {
            font-size: clamp(3.2rem, 8vw, 7rem);
            color: var(--dark-brown);
            line-height: 0.9;
            margin-bottom: 0.8rem;
            cursor: pointer;
        }

        .footer-brand-monolith-block p {
            font-size: 1.45rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            font-style: italic;
            color: var(--coastal-taupe);
        }

        .footer-links-directory-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 4rem;
            margin-bottom: 7rem;
        }

        .footer-directory-column h4 {
            font-size: 1.25rem;
            color: var(--dark-brown);
            margin-bottom: 2rem;
            letter-spacing: 0.12em;
        }

        .footer-directory-column ul {
            list-style: none;
        }

        .footer-directory-column ul li {
            margin-bottom: 1.2rem;
        }

        .footer-directory-column ul li a {
            font-size: 1.2rem;
            color: var(--coastal-taupe);
        }

        .footer-directory-column ul li a:hover {
            color: var(--dark-brown);
            padding-left: 6px;
        }

        .footer-newsletter-signup-box p {
            font-size: 1.15rem;
            margin-bottom: 1.8rem;
            line-height: 1.6;
        }

        .footer-social-links-strip {
            display: flex;
            gap: 3rem;
            border-top: 1px solid rgba(112, 109, 84, 0.2);
            border-bottom: 1px solid rgba(112, 109, 84, 0.2);
            padding: 3rem 0;
            margin-bottom: 4rem;
            justify-content: center;
        }

        .footer-social-links-strip a {
            font-size: 1.25rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--coastal-taupe);
        }

        .footer-social-links-strip a:hover {
            color: var(--dark-brown);
        }

        .footer-copyright-fineprint {
            text-align: center;
            font-size: 1.15rem;
            opacity: 0.8;
            color: var(--coastal-taupe);
        }

        /* ==========================================================================
           6. RESPONSIVE BREAKPOINTS DESIGN MEDIA QUERIES
           ========================================================================== */
        @media (max-width: 1300px) {
            .resort-story-section, 
            .philosophy-editorial-blocks-grid, 
            .suite-showcase-editorial-grid, 
            .experiences-bottom-cards-matrix {
                grid-template-columns: 1fr;
                gap: 5rem;
            }
            .experiences-top-layout-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .experiences-top-layout-row p.luxury-top-quote {
                text-align: left;
            }
            .subpage-presentation-editorial-row, 
            .subpage-presentation-editorial-row:nth-child(even) {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .subpage-presentation-editorial-row:nth-child(even) .row-image-frame-holder, 
            .subpage-presentation-editorial-row:nth-child(even) .row-narrative-frame-holder {
                grid-column: unset;
            }
            .footer-links-directory-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .center-nav-links-deck, .right-header-action-node {
                display: none;
            }
            .mobile-hamburger-trigger {
                display: flex;
            }
            .editorial-header-container {
                margin: 15px 15px 0 15px;
                padding: 0 25px;
                height: 80px;
            }
            .hero-ocean-retreat-section {
                margin: 0 15px;
                height: calc(100vh - 95px);
            }
            .subpage-hero-magazine-banner {
                margin: 0 15px;
            }
            .resort-story-section, 
            .featured-experiences-section, 
            .hospitality-philosophy-section, 
            .guest-journal-section, 
            .accommodation-showcase-section, 
            .subpage-row-editorial-container, 
            footer {
                padding: 7rem 2rem;
            }
            .dining-experience-poster-split, 
            .contact-page-split-grid, 
            .guest-journal-section {
                grid-template-columns: 1fr;
            }
            .luxury-booking-inquiry-form {
                grid-template-columns: 1fr;
            }
            .luxury-booking-inquiry-form .form-cell-span-all {
                grid-column: span 1;
            }
        }
        /* --- FOOTER STYLES --- */
footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Monolith */
.footer-brand-monolith-block {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.footer-brand-monolith-block h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-brand-monolith-block h2:hover {
    opacity: 0.8;
}

.footer-brand-monolith-block p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 8px;
    letter-spacing: 0.15em;
}

/* Links Directory Grid */
.footer-links-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-directory-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 16px;
}

.footer-directory-column ul {
    list-style: none;
    padding: 0;
}

.footer-directory-column ul li {
    margin-bottom: 10px;
}

.footer-directory-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-directory-column ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Newsletter Signup */
.footer-newsletter-signup {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}

.footer-newsletter-signup h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.footer-newsletter-signup p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 16px;
}

.footer-input-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 8px;
}

.footer-input-group input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-input-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.footer-input-group input:focus {
    border-color: rgba(255,255,255,0.3);
}

.footer-input-group button {
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-input-group button:hover {
    background: #ffffff;
    color: #1a1a2e;
}

/* Social & Copyright */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.footer-social-links-strip {
    display: flex;
    gap: 24px;
}

.footer-social-links-strip a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-social-links-strip a i {
    font-size: 0.9rem;
}

.footer-social-links-strip a:hover {
    opacity: 1;
}

.footer-copyright-fineprint {
    font-size: 0.7rem;
    opacity: 0.4;
    text-align: right;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .footer-links-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-links-directory-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright-fineprint {
        text-align: center;
    }
    
    .footer-social-links-strip {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-input-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .footer-brand-monolith-block h2 {
        font-size: 1.6rem;
    }
}


/* --- ABOUT PAGE STYLES --- */
.subpage-hero-magazine-banner {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.banner-overlay-content .banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.banner-overlay-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
}

.banner-overlay-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Subpage Row Container */
.subpage-row-editorial-container {
    padding: 80px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.subpage-presentation-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subpage-presentation-editorial-row.reverse-order {
    direction: rtl;
}

.subpage-presentation-editorial-row.reverse-order .row-narrative-frame-holder {
    direction: ltr;
}

.row-image-frame-holder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.row-image-frame-holder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.row-image-frame-holder:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    padding: 30px 20px 15px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.row-narrative-frame-holder .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.row-narrative-frame-holder h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.row-narrative-frame-holder p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.narrative-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #C9A96E;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sustainability Pillars */
.sustainability-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.pillar {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pillar h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.pillar p {
    font-size: 0.75rem;
    color: #888;
}

/* Heritage Timeline */
.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-centered .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-header-centered p {
    color: #666;
    font-size: 1rem;
}

.heritage-timeline {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.heritage-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #C9A96E;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -40px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #C9A96E;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.06);
}

.timeline-content {
    padding-left: 40px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1rem;
    font-weight: 600;
}

.team-info span {
    display: block;
    font-size: 0.75rem;
    color: #C9A96E;
    margin-top: 3px;
}

.team-info p {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    line-height: 1.5;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: #C9A96E;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.award-icon {
    font-size: 2rem;
}

.award-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.award-details p {
    font-size: 0.75rem;
    color: #888;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-top: 3px solid #C9A96E;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
    border-radius: 0;
}

.cta-overlay {
    padding: 100px 20px;
    text-align: center;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    border-radius: 0;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-overlay p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 15px 0 30px;
}

.btn-primary {
    padding: 14px 40px;
    background: #C9A96E;
    color: white;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b8975a;
}

/* Responsive */
@media (max-width: 1100px) {
    .subpage-presentation-editorial-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subpage-presentation-editorial-row.reverse-order {
        direction: ltr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .awards-grid {
        grid-template-columns: 1fr;
    }
    .sustainability-pillars {
        grid-template-columns: 1fr;
    }
    .narrative-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .row-image-frame-holder img {
        height: 300px;
    }
    .subpage-row-editorial-container {
        padding: 50px 5%;
    }
    .heritage-timeline {
        padding-left: 20px;
    }
    .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 8px;
        display: inline-block;
    }
    .timeline-content {
        padding-left: 0;
    }
    .cta-overlay h2 {
        font-size: 1.8rem;
    }
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item span {
    font-size: 1.5rem;
}

.highlight-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Service Menu */
.service-menu-section {
    margin-top: 60px;
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.service-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-menu-card {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.service-menu-card:hover {
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-menu-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-menu-card ul {
    list-style: none;
    padding: 0;
}

.service-menu-card ul li {
    font-size: 0.85rem;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.service-menu-card ul li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .subpage-presentation-editorial-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subpage-presentation-editorial-row.reverse-order {
        direction: ltr;
    }
    .service-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .service-menu-grid {
        grid-template-columns: 1fr;
    }
    .highlight-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    .service-highlights {
        gap: 10px;
    }
    .row-image-frame-holder img {
        height: 300px;
    }
}

/* --- ACM STYLES --- */
.subpage-hero-magazine-banner {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.banner-overlay-content .banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.banner-overlay-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
}

.banner-overlay-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 15px;
}

.subpage-row-editorial-container {
    padding: 80px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.subpage-presentation-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.subpage-presentation-editorial-row.reverse-order {
    direction: rtl;
}

.subpage-presentation-editorial-row.reverse-order .row-narrative-frame-holder {
    direction: ltr;
}

.row-image-frame-holder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.row-image-frame-holder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.row-image-frame-holder:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    padding: 30px 20px 15px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.row-narrative-frame-holder .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.row-narrative-frame-holder h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.row-narrative-frame-holder p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.row-amenity-fineprint-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.row-amenity-fineprint-list li {
    font-size: 0.9rem;
    color: #666;
    padding: 5px 0;
}

/* Comparison Section */
.comparison-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin: 40px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-centered .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-header-centered p {
    color: #666;
    font-size: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.comparison-card.featured {
    border-color: #C9A96E;
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #C9A96E;
    color: white;
    padding: 4px 16px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    border-radius: 20px;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.comparison-price {
    font-size: 2rem;
    font-weight: 300;
    color: #C9A96E;
    margin-bottom: 20px;
}

.comparison-price span {
    font-size: 0.8rem;
    color: #888;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.comparison-card ul li {
    font-size: 0.85rem;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.btn-secondary {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid #1a1a2e;
    color: #1a1a2e;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: white;
}

/* Amenities Grid */
.amenities-section {
    padding: 60px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: border-color 0.3s ease;
}

.amenity-item:hover {
    border-color: #C9A96E;
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.amenity-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.amenity-item p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border-top: 3px solid #C9A96E;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    margin-top: 40px;
    overflow: hidden;
}

.cta-overlay {
    padding: 80px 20px;
    text-align: center;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(4px);
    color: white;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-overlay p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 15px 0 30px;
}

.btn-primary {
    padding: 14px 40px;
    background: #C9A96E;
    color: white;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b8975a;
}

/* Responsive */
@media (max-width: 1100px) {
    .subpage-presentation-editorial-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subpage-presentation-editorial-row.reverse-order {
        direction: ltr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .row-amenity-fineprint-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .row-image-frame-holder img {
        height: 300px;
    }
    .comparison-card {
        padding: 20px;
    }
    .cta-overlay h2 {
        font-size: 1.8rem;
    }
    .banner-overlay-content h1 {
        font-size: 2rem;
    }
}

/* --- EXPERIENCE STYLES --- */
.subpage-hero-magazine-banner {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.banner-overlay-content .banner-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.banner-overlay-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
}

.banner-overlay-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 15px;
}

.subpage-row-editorial-container {
    padding: 80px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.subpage-presentation-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.subpage-presentation-editorial-row.reverse-order {
    direction: rtl;
}

.subpage-presentation-editorial-row.reverse-order .row-narrative-frame-holder {
    direction: ltr;
}

.row-image-frame-holder {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.row-image-frame-holder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.row-image-frame-holder:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    padding: 30px 20px 15px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.row-narrative-frame-holder .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.row-narrative-frame-holder h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.row-narrative-frame-holder p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item span {
    font-size: 1.5rem;
}

.highlight-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Experience Menu */
.experience-menu-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin: 40px 0;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-centered .section-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #C9A96E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header-centered h2 {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-header-centered p {
    color: #666;
    font-size: 1rem;
}

.experience-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.experience-menu-card {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.experience-menu-card:hover {
    transform: translateY(-3px);
}

.exp-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.experience-menu-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.experience-menu-card ul {
    list-style: none;
    padding: 0;
}

.experience-menu-card ul li {
    font-size: 0.85rem;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.experience-menu-card ul li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border-top: 3px solid #C9A96E;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a2e;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 8px;
    margin-top: 40px;
    overflow: hidden;
}

.cta-overlay {
    padding: 80px 20px;
    text-align: center;
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(4px);
    color: white;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-overlay p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 15px 0 30px;
}

.btn-primary {
    padding: 14px 40px;
    background: #C9A96E;
    color: white;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #b8975a;
}

/* Responsive */
@media (max-width: 1100px) {
    .subpage-presentation-editorial-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .subpage-presentation-editorial-row.reverse-order {
        direction: ltr;
    }
    .experience-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .experience-menu-grid {
        grid-template-columns: 1fr;
    }
    .highlight-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    .row-image-frame-holder img {
        height: 300px;
    }
    .cta-overlay h2 {
        font-size: 1.8rem;
    }
    .banner-overlay-content h1 {
        font-size: 2rem;
    }
}


