/* ==========================================================================
   RETREAT MATRIX - CORE LUXURY DESIGN SYSTEM
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--rm-font-sans);
    background-color: var(--rm-bg-sand);
    color: var(--rm-color-text-main);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

#page, .site {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow-x: hidden;
    box-sizing: border-box;
}

.site-content, main, 
.rm-site-header, .rm-site-footer, .rm-section, 
.rm-reassurance-bar, .rm-prefooter-cta {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    box-sizing: border-box;
    position: relative;
}

@supports not (overflow-x: clip) {
    .site-content, main, 
    .rm-site-header, .rm-site-footer, .rm-section, 
    .rm-reassurance-bar, .rm-prefooter-cta {
        overflow-x: hidden;
    }
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--rm-font-serif);
    color: var(--rm-color-text-main);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p, a, span, li, label, input, textarea {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p {
    margin-bottom: 1.2rem;
    color: var(--rm-color-text-muted);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--rm-transition-smooth);
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Universal Grid & Flex Child Min-Width Reset to Prevent Overflow on All Pages */
.rm-hero-grid > *,
.rm-reassurance-grid > *,
.rm-diff-grid > *,
.rm-dual-offerings-grid > *,
.rm-process-grid > *,
.rm-commitment-grid > *,
.rm-journal-grid > *,
.rm-footer-grid > *,
.rm-sitemap-grid > *,
.rm-sitemap-monographs-grid > *,
.rm-two-col-layout > *,
.rm-split-feature-layout > *,
.rm-founders-grid > *,
.rm-founder-card > *,
.rm-corporate-cards-grid > *,
.rm-corp-hero-grid > *,
.rm-corp-outcomes-header > *,
.rm-corp-outcomes-grid > *,
.rm-corp-process-grid > *,
.rm-corp-partner-grid > *,
.rm-corp-ind-header > *,
.rm-corp-industries-row > *,
.rm-corp-brief-split > *,
.rm-celeb-hero-grid > *,
.rm-celeb-ms-header > *,
.rm-celeb-milestones-grid > *,
.rm-celeb-process-3col > *,
.rm-celeb-expect-grid > *,
.rm-celeb-testimonials-grid > *,
.rm-celeb-brief-split > *,
.rm-form-row-3col > *,
.rm-contact-split-grid > *,
.rm-contact-trust-pillars > *,
.rm-hubs-grid > *,
.rm-radio-cards-grid > *,
.rm-form-row > *,
.rm-about-origin-layout > *,
.rm-about-callout-grid > *,
.rm-horizon-grid > *,
.rm-values-grid > *,
.rm-value-card > *,
.rm-featured-monograph-card > *,
.rm-publications-grid > *,
.rm-single-grid-layout > *,
.rm-single-sidebar > *,
.rm-single-post-navigation > *,
.rm-comment-form-row > *,
.rm-milestones-grid > *,
.rm-testimonials-grid > * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Containers */
.rm-container {
    width: 100%;
    max-width: var(--rm-container-max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.rm-container-narrow {
    max-width: var(--rm-container-narrow, 1140px);
}

.rm-container-text {
    max-width: var(--rm-container-text, 1140px);
}

/* Background Utility Classes */
.rm-bg-sand { background-color: var(--rm-bg-sand); }
.rm-bg-sand-warm { background-color: var(--rm-bg-sand-warm); }
.rm-bg-dark { background-color: var(--rm-bg-dark-emerald); color: var(--rm-color-text-inverse); }

/* Spacing Utilities */
.rm-section { padding: 96px 0; }
.rm-pt-lg { padding-top: 64px; }
.rm-pb-lg { padding-bottom: 64px; }
.rm-pb-xl { padding-bottom: 96px; }
.rm-mb-sm { margin-bottom: 16px; }
.rm-mb-md { margin-bottom: 32px; }
.rm-mb-lg { margin-bottom: 48px; }
.rm-mt-sm { margin-top: 16px; }
.rm-mt-md { margin-top: 24px; }
.rm-mt-lg { margin-top: 48px; }
.rm-text-center { text-align: center; }

/* Pill Badges */
.rm-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rm-font-sans);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--rm-radius-pill);
    margin-bottom: 20px;
}

.rm-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--rm-color-gold);
}

.rm-pill-gold {
    background-color: var(--rm-color-gold-light);
    color: var(--rm-color-gold-hover);
    border: 1px solid rgba(185, 142, 78, 0.25);
}

.rm-pill-gold-outline {
    background-color: transparent;
    color: var(--rm-color-gold);
    border: 1px solid var(--rm-color-gold-border);
}

.rm-pill-dark-badge {
    background-color: rgba(255, 255, 255, 0.12);
    color: #E2EAE7;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* SEO Breadcrumbs Styling */
.rm-seo-breadcrumbs {
    font-size: 0.8125rem;
    color: var(--rm-color-text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
}

.rm-seo-breadcrumbs a {
    color: var(--rm-color-gold);
    font-weight: 500;
}

.rm-seo-breadcrumbs a:hover {
    color: var(--rm-color-gold-hover);
    text-decoration: underline;
}

/* Buttons */
.rm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--rm-font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: var(--rm-radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--rm-transition-smooth);
    text-align: center;
}

.rm-btn-sm {
    padding: 9px 18px;
    font-size: 0.8125rem;
}

.rm-btn-block {
    width: 100%;
}

.rm-btn-gold {
    background-color: var(--rm-color-gold);
    color: #FFFFFF;
    border-color: var(--rm-color-gold);
}

.rm-btn-gold:hover {
    background-color: var(--rm-color-gold-hover);
    border-color: var(--rm-color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 142, 78, 0.25);
}

.rm-btn-dark {
    background-color: var(--rm-bg-dark-emerald);
    color: #FFFFFF;
}

.rm-btn-dark:hover {
    background-color: var(--rm-bg-dark-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 40, 35, 0.2);
}

.rm-btn-outline {
    background-color: transparent;
    color: var(--rm-color-text-main);
    border-color: rgba(28, 36, 33, 0.25);
}

.rm-btn-outline:hover {
    border-color: var(--rm-color-text-main);
    background-color: rgba(28, 36, 33, 0.04);
}

.rm-btn-outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.35);
}

.rm-btn-outline-white:hover {
    background-color: #FFFFFF;
    color: var(--rm-bg-dark-emerald);
}

/* Links with Arrow */
.rm-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rm-font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rm-color-gold);
}

.rm-link-arrow:hover {
    color: var(--rm-color-gold-hover);
    gap: 12px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.rm-site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rm-border-light);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rm-site-header.rm-header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 24px rgba(13, 30, 26, 0.08);
    border-bottom: 1px solid rgba(185, 142, 78, 0.22);
}

.rm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s ease;
}

.rm-site-header.rm-header-scrolled .rm-header-inner {
    height: 68px;
}

@media (max-width: 768px) {
    .rm-header-inner {
        height: 70px;
    }
    .rm-site-header.rm-header-scrolled .rm-header-inner {
        height: 60px;
    }
}

.rm-site-branding {
    display: flex;
    align-items: center;
    max-height: 100%;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.custom-logo,
.rm-site-branding img {
    max-height: var(--rm-logo-max-height, 52px);
    max-width: var(--rm-logo-max-width, 180px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: max-width 0.2s ease, max-height 0.2s ease;
}

@media (max-width: 768px) {
    .custom-logo,
    .rm-site-branding img {
        max-height: var(--rm-logo-mobile-max-height, 38px);
        max-width: var(--rm-logo-mobile-max-width, 140px);
    }
}

.rm-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--rm-font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--rm-color-text-main);
}

.rm-logo-dot {
    color: var(--rm-color-gold);
}

.rm-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.rm-nav-list > li {
    position: relative;
    padding: 24px 0;
}

.rm-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--rm-font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rm-color-text-main);
    position: relative;
    transition: var(--rm-transition-smooth);
}

.rm-nav-list > li > a:hover {
    color: var(--rm-color-gold);
}

/* Active State with Underline as in UI */
.rm-nav-list > li.current-menu-item > a,
.rm-nav-list > li.current-menu-parent > a,
.rm-nav-list > li.current-menu-ancestor > a,
.rm-nav-list > li.current_page_parent > a,
.rm-nav-list > li.active > a {
    color: var(--rm-color-gold);
    font-weight: 600;
}

.rm-nav-list > li.current-menu-item > a::after,
.rm-nav-list > li.current-menu-parent > a::after,
.rm-nav-list > li.current-menu-ancestor > a::after,
.rm-nav-list > li.current_page_parent > a::after,
.rm-nav-list > li.active > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--rm-color-gold);
    border-radius: 2px;
}

/* Pill Badge in Nav (e.g. "Corporate") */
.rm-nav-badge {
    font-size: 0.72rem;
    font-weight: 500;
    background-color: #FDF3E3;
    color: #B98E4E;
    border: 1px solid rgba(185, 142, 78, 0.28);
    padding: 2px 9px;
    border-radius: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
}

/* Chevron Arrow */
.rm-menu-chevron {
    color: var(--rm-color-text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

.rm-nav-list > li:hover .rm-menu-chevron,
.rm-nav-list > li.active .rm-menu-chevron {
    color: var(--rm-color-gold);
}

.rm-nav-list > li:hover .rm-menu-chevron {
    transform: rotate(180deg);
}

/* Dropdown Sub-menu */
.rm-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    background-color: #FFFFFF;
    border: 1px solid var(--rm-border-light);
    border-radius: var(--rm-radius-md);
    box-shadow: 0 16px 36px rgba(20, 40, 35, 0.08);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
}

.rm-nav-list > li:hover > .sub-menu,
.rm-nav-list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rm-nav-list .sub-menu li {
    padding: 0;
    position: relative;
}

.rm-nav-list .sub-menu li a {
    display: block;
    padding: 11px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rm-color-text-main);
    transition: all 0.2s ease;
}

.rm-nav-list .sub-menu li a:hover,
.rm-nav-list .sub-menu li.current-menu-item > a {
    background-color: var(--rm-bg-sand);
    color: var(--rm-color-gold);
    padding-left: 26px;
}

.rm-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rm-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.rm-hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--rm-color-text-main);
    margin: 5px 0;
    transition: var(--rm-transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.rm-hero-section {
    padding: 72px 0 96px 0;
    background-color: var(--rm-bg-sand);
}

.rm-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.rm-hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--rm-color-text-main);
}

.rm-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--rm-color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.rm-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.rm-hero-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.86rem;
    color: #4a5568;
}

.rm-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.01em;
}

.rm-hero-trust-item svg,
.rm-hero-trust-item .rm-trust-icon {
    width: 17px;
    height: 17px;
    stroke: var(--rm-color-gold);
    stroke-width: 2;
    flex-shrink: 0;
}

.rm-hero-trust-bar strong {
    color: var(--rm-color-text-main);
}

.rm-trust-sep {
    color: var(--rm-color-gold);
}

/* Hero Visual & Quote Overlay */
.rm-hero-visual-wrapper {
    position: relative;
    padding-bottom: 16px;
}

.rm-hero-image-box {
    border-radius: var(--rm-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(28, 36, 33, 0.08);
}

.rm-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.rm-hero-image-box:hover .rm-hero-img {
    transform: scale(1.02);
}

.rm-hero-quote-card {
    position: absolute;
    bottom: -10px;
    left: -28px;
    background-color: #FFFFFF;
    padding: 22px 26px;
    border-radius: var(--rm-radius-md);
    box-shadow: 0 16px 36px rgba(28, 36, 33, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.07);
    max-width: 360px;
    width: auto;
    box-sizing: border-box;
    z-index: 2;
}

.rm-quote-icon-small {
    font-family: var(--rm-font-serif);
    font-size: 2.2rem;
    color: var(--rm-color-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.rm-hero-quote-text {
    font-family: var(--rm-font-serif);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: var(--rm-color-text-main);
    line-height: 1.42;
    margin-bottom: 10px;
}

.rm-hero-quote-author {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--rm-color-gold);
}

/* ==========================================================================
   REASSURANCE STRIP (4 COLUMNS)
   ========================================================================== */
.rm-reassurance-bar {
    padding: 40px 0;
    background-color: var(--rm-bg-sand-warm);
    border-top: 1px solid var(--rm-border-light);
    border-bottom: 1px solid var(--rm-border-light);
}

.rm-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.rm-reassurance-item {
    border-left: 1px solid rgba(185, 142, 78, 0.35);
    padding: 4px 28px;
}

.rm-reassurance-item:first-child {
    border-left: none;
    padding-left: 0;
}

.rm-reassurance-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rm-reassurance-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--rm-color-gold);
    flex-shrink: 0;
}

.rm-reassurance-icon-box svg,
.rm-reassurance-icon {
    width: 17px;
    height: 17px;
    stroke: var(--rm-color-gold);
    stroke-width: 2;
}

.rm-reassurance-num {
    font-family: var(--rm-font-serif);
    font-size: 1.05rem;
    color: var(--rm-color-gold);
    font-weight: 600;
}

.rm-reassurance-title {
    font-family: var(--rm-font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--rm-color-text-main);
    margin: 0;
}

.rm-reassurance-item p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--rm-color-text-muted);
    margin: 0;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.rm-section-header {
    margin-bottom: 56px;
}

.rm-flex-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.rm-section-title {
    font-size: 2.75rem;
    color: var(--rm-color-text-main);
    line-height: 1.2;
}

.rm-section-subtitle-aside {
    max-width: 440px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rm-color-text-muted);
    margin: 0;
}

.rm-section-subtitle {
    font-size: 1.05rem;
    color: var(--rm-color-text-muted);
    max-width: 640px;
    margin: 12px auto 0 auto;
}

/* ==========================================================================
   THE RETREAT MATRIX DIFFERENCE (6 CARDS)
   ========================================================================== */
.rm-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.rm-diff-card {
    background-color: var(--rm-bg-sand-card);
    padding: 36px 32px;
    border-radius: var(--rm-radius-md);
    border: 1px solid var(--rm-border-light);
    border-top: 3px solid var(--rm-color-gold);
    transition: var(--rm-transition-smooth);
}

.rm-diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(28, 36, 33, 0.06);
    border-color: rgba(185, 142, 78, 0.35);
}

.rm-diff-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.rm-diff-icon {
    color: var(--rm-color-gold);
}

.rm-diff-tag {
    font-family: var(--rm-font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rm-color-gold);
}

.rm-diff-card-title {
    font-family: var(--rm-font-serif);
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--rm-color-text-main);
}

.rm-diff-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--rm-color-text-muted);
    margin: 0;
}

/* ==========================================================================
   DUAL OFFERINGS (EXECUTIVE OFFSITES VS CELEBRATIONS)
   ========================================================================== */
.rm-dual-offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.rm-offering-card {
    padding: 56px 48px;
    border-radius: var(--rm-radius-lg);
    display: flex;
    flex-direction: column;
}

.rm-offering-dark {
    background-color: var(--rm-bg-dark-emerald);
    color: var(--rm-color-text-inverse);
}

.rm-offering-dark h3 {
    color: #FFFFFF;
}

.rm-offering-dark p {
    color: var(--rm-color-text-inverse-muted);
}

.rm-offering-light {
    background-color: var(--rm-bg-sand-card);
    border: 1px solid var(--rm-border-light);
}

.rm-offering-title {
    font-size: 2.15rem;
    line-height: 1.25;
    margin: 20px 0 16px 0;
}

.rm-offering-desc {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 32px;
}

.rm-offering-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rm-offering-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.925rem;
}

.rm-offering-dark .rm-offering-list li svg {
    color: var(--rm-color-gold);
}

.rm-offering-light .rm-offering-list li svg {
    color: var(--rm-color-gold);
}

.rm-offering-footer {
    margin-top: auto;
}

/* ==========================================================================
   PROCESS STEPS (4 COLUMNS)
   ========================================================================== */
.rm-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
}

.rm-process-3col {
    grid-template-columns: repeat(3, 1fr);
}

.rm-process-step {
    position: relative;
}

.rm-step-number {
    font-family: var(--rm-font-serif);
    font-size: 2.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--rm-color-gold);
    line-height: 1;
    display: block;
    padding-bottom: 16px;
    margin-bottom: 22px;
    border-bottom: 1.5px solid rgba(185, 142, 78, 0.45);
    opacity: 0.95;
}

.rm-step-title {
    font-family: var(--rm-font-serif);
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--rm-color-text-main);
}

.rm-step-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--rm-color-text-muted);
}

/* ==========================================================================
   OUR COMMITMENT MANIFESTO CARD
   ========================================================================== */
.rm-commitment-card {
    background-color: var(--rm-bg-sand-card);
    border-radius: var(--rm-radius-lg);
    border: 1px solid var(--rm-border-light);
    padding: 64px;
    box-shadow: 0 20px 48px rgba(28, 36, 33, 0.05);
}

.rm-commitment-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.rm-commitment-quote {
    font-family: var(--rm-font-serif);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--rm-color-text-main);
    line-height: 1.5;
    max-width: 820px;
    margin: 0 auto 48px auto;
}

.rm-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
    border-top: 1px solid var(--rm-border-light);
    padding-top: 48px;
}

.rm-commitment-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.rm-commitment-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 168, 106, 0.12);
    border: 1px solid rgba(201, 168, 106, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rm-commitment-icon-wrap svg,
.rm-commitment-icon {
    width: 18px;
    height: 18px;
    stroke: var(--rm-color-gold);
    color: var(--rm-color-gold);
    stroke-width: 2;
}

.rm-commitment-content {
    flex: 1;
}

.rm-commitment-item-title {
    font-family: var(--rm-font-serif);
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--rm-color-text-main);
    font-weight: 600;
}

.rm-commitment-item p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--rm-color-text-muted);
    margin: 0;
}

/* ==========================================================================
   JOURNAL & ARTICLES GRID
   ========================================================================== */
.rm-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rm-journal-card {
    display: flex;
    flex-direction: column;
}

.rm-publications-count {
    font-size: 0.85rem;
    color: var(--rm-color-text-muted);
    font-weight: 500;
}

.rm-journal-thumb-box {
    position: relative;
    border-radius: var(--rm-radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 10;
    background-color: #E6E0D8;
}

.rm-journal-img-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--rm-color-text-main);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.rm-journal-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rm-journal-card:hover .rm-journal-thumb-img {
    transform: scale(1.04);
}

.rm-journal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--rm-color-gold);
    margin-bottom: 10px;
}

.rm-journal-meta-dot {
    color: rgba(28, 36, 33, 0.2);
}

.rm-journal-time {
    color: var(--rm-color-text-muted);
}

.rm-journal-title {
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.rm-journal-title a:hover {
    color: var(--rm-color-gold);
}

.rm-journal-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--rm-color-text-muted);
    margin-bottom: 18px;
}

.rm-journal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

.rm-journal-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--rm-color-text-main);
    transition: color 0.2s ease, gap 0.2s ease;
}

.rm-journal-read-link:hover {
    color: var(--rm-color-gold);
    gap: 10px;
}

.rm-journal-bookmark {
    color: var(--rm-color-text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rm-journal-bookmark:hover {
    color: var(--rm-color-gold);
}

/* ==========================================================================
   PRE-FOOTER CTA BANNER & MAIN FOOTER
   ========================================================================== */
.rm-prefooter-cta {
    background-color: var(--rm-bg-dark-emerald);
    color: #FFFFFF;
    padding: 96px 0;
}

.rm-cta-content-box {
    max-width: 680px;
    margin: 0 auto;
}

.rm-cta-title {
    font-size: 3.25rem;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 20px;
}

.rm-cta-desc {
    font-size: 1.1rem;
    color: var(--rm-color-text-inverse-muted);
    line-height: 1.65;
    margin-bottom: 36px;
}

.rm-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.rm-site-footer {
    background-color: var(--rm-bg-dark-deep);
    color: var(--rm-color-text-inverse-muted);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--rm-border-dark);
}

.rm-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1.15fr 1.35fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--rm-border-dark);
    align-items: start;
}

.rm-footer-grid.rm-no-newsletter {
    grid-template-columns: 1.5fr 1fr 1.2fr;
}

.rm-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--rm-font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.rm-footer-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--rm-color-gold);
    margin-bottom: 14px;
}

.rm-footer-bio {
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 24px;
}

.rm-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.775rem;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: var(--rm-radius-sm);
}

.rm-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--rm-color-gold);
}

.rm-footer-heading {
    font-family: var(--rm-font-sans);
    font-size: 0.775rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--rm-color-gold-light, #C5A880);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    width: 100%;
}

.rm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rm-footer-links > li > a {
    font-size: 0.95rem;
    font-weight: 400;
    color: #CCD8D6;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.rm-footer-links > li > a:hover {
    color: #FFFFFF;
}

/* Hierarchical Sub-Menu under Retreats with vertical accent line */
.rm-footer-links .sub-menu {
    list-style: none;
    padding: 0 0 0 16px;
    margin: 12px 0 4px 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rm-footer-links .sub-menu li a {
    font-size: 0.875rem;
    color: #8C9F9D;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-footer-links .sub-menu li a::before {
    content: "—";
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 0.85rem;
}

.rm-footer-links .sub-menu li a:hover {
    color: #FFFFFF;
}

.rm-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rm-footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.rm-footer-contact-link {
    color: #CCD8D6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-footer-contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.rm-footer-icon {
    color: var(--rm-color-gold-light, #C5A880);
    flex-shrink: 0;
}

.rm-footer-note {
    font-size: 0.775rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.rm-footer-enquire-wrap {
    margin-top: 14px;
}

.rm-footer-enquire-btn {
    background: linear-gradient(135deg, #7E5F2D 0%, #684C20 100%);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.rm-footer-enquire-btn:hover {
    background: linear-gradient(135deg, #916E34 0%, #7A5B27 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    color: #FFFFFF !important;
}

.rm-footer-newsletter-col {
    display: flex;
    flex-direction: column;
}

.rm-footer-newsletter-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #CCD8D6;
    margin-bottom: 18px;
}

.rm-footer-newsletter-form {
    margin-bottom: 8px;
}

.rm-footer-input-group {
    display: flex !important;
    align-items: stretch !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease !important;
    height: 44px !important;
    box-sizing: border-box !important;
}

.rm-footer-input-group:focus-within {
    border-color: #d4af37 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25) !important;
}

.rm-footer-email-input,
input.rm-footer-email-input,
form.rm-footer-newsletter-form input[type="email"] {
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    color: #FFFFFF !important;
    font-size: 0.875rem !important;
    padding: 10px 14px !important;
    font-family: inherit !important;
    box-shadow: none !important;
    margin: 0 !important;
    height: 100% !important;
    line-height: normal !important;
}

.rm-footer-email-input::placeholder,
form.rm-footer-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.rm-footer-subscribe-btn,
button.rm-footer-subscribe-btn {
    background: #c9a86a !important;
    background: linear-gradient(135deg, #d4af37 0%, #b39255 100%) !important;
    border: none !important;
    color: #0d1b18 !important;
    padding: 0 16px !important;
    font-size: 0.775rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    border-radius: 0 3px 3px 0 !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.rm-footer-subscribe-btn:hover,
button.rm-footer-subscribe-btn:hover {
    background: #e2be4c !important;
    color: #000000 !important;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4) !important;
}

.rm-footer-privacy-note {
    font-size: 0.725rem;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-top: 6px;
}

.rm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    font-size: 0.825rem;
    color: #8C9F9D;
    flex-wrap: wrap;
    gap: 20px;
}

.rm-footer-copy p {
    margin: 0;
    color: #8C9F9D;
}

.rm-footer-copy .rm-footer-main-copy {
    font-size: 0.825rem;
    color: #8C9F9D;
    line-height: 1.5;
}

.rm-footer-copy .rm-dev-credit-micro {
    font-size: 0.675rem;
    color: rgba(140, 159, 157, 0.55);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.rm-dev-credit-link {
    color: rgba(185, 142, 78, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: var(--rm-transition-smooth);
}

.rm-dev-credit-link:hover {
    color: var(--rm-color-gold);
    text-decoration: underline;
}

.rm-footer-bottom-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rm-footer-bottom-icon {
    color: #8C9F9D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.22s ease;
    text-decoration: none;
}

.rm-footer-bottom-icon svg {
    width: 17px;
    height: 17px;
    display: block;
}

.rm-footer-bottom-icon:hover {
    color: #c9a86a;
    background: rgba(201, 168, 106, 0.14);
    border-color: rgba(201, 168, 106, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rm-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: #8C9F9D;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rm-footer-legal-links a {
    color: #8C9F9D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rm-footer-legal-links a:hover {
    color: #FFFFFF;
}

.rm-footer-legal-links span {
    opacity: 0.4;
}

/* Floating Side Action Pill */
.rm-floating-side-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--rm-bg-dark-emerald);
    color: #FFFFFF;
    padding: 16px 10px;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    transition: var(--rm-transition-smooth);
}

.rm-floating-side-badge:hover {
    background-color: var(--rm-color-gold);
    transform: translateY(-50%) translateX(-4px);
}

.rm-side-badge-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rm-side-badge-icon {
    color: var(--rm-color-gold);
}

.rm-floating-side-badge:hover .rm-side-badge-icon {
    color: #FFFFFF;
}

/* Micro Trust & Commitment Footer Accents */
.rm-cta-micro-trust {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.rm-commitment-card-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    font-size: 0.88rem;
    color: var(--rm-color-text-muted);
    font-style: italic;
    letter-spacing: 0.02em;
}

