/* Custom CSS Variables Engine defining Apple, Aesop, and Forest design motifs */
:root {
    --primary-forest: #1B4332;
    --primary-forest-rgb: 27, 65, 50;
    --secondary-sage: #95D5B2;
    --accent-olive: #588157;
    --bg-pure-white: #FFFFFF;
    --bg-soft-green: #F7FFF8;
    --text-dark-apple: #1D1D1F;
    --text-muted-apple: #6E6E73;
    --glass-background: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --box-shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.04);
    --border-radius-luxury: 16px;
    --transition-apple-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --font-serif-luxury: 'Playfair Display', Georgia, serif;
    --font-sans-luxury: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Luxury Dark Mode State Variant Variables Overwrite definitions */
[data-theme="dark"] {
    --primary-forest: #95D5B2;
    --primary-forest-rgb: 149, 213, 178;
    --secondary-sage: #1B4332;
    --accent-olive: #A3B19B;
    --bg-pure-white: #0B1410;
    --bg-soft-green: #111E19;
    --text-dark-apple: #F5F5F7;
    --text-muted-apple: #86868B;
    --glass-background: rgba(11, 20, 16, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --box-shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Reset baseline settings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Lenis/GSAP Native handling interface ready */
    font-size: 16px;
    background-color: var(--bg-pure-white);
    color: var(--text-dark-apple);
    font-family: var(--font-sans-luxury);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background-color: var(--bg-pure-white);
    transition: background-color 0.6s var(--transition-apple-smooth), color 0.6s var(--transition-apple-smooth);
}

/* Premium Component Structural Layout Framework Blocks */
section {
    padding: 100px max(4vw, 20px);
    position: relative;
    width: 100%;
}

/* Premium Micro-interactivity Custom Cursor Templates */
.custom-cursor-dot, .custom-cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.custom-cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--primary-forest);
}
.custom-cursor-outline {
    width: 34px; height: 34px;
    border: 1.5px solid var(--primary-forest);
    transition: transform 0.15s ease-out, opacity 0.3s ease;
}

@media(max-width: 1024px) {
    .custom-cursor-dot, .custom-cursor-outline { display: none; }
}

/* Scroll Progress Header Metric Strip */
.scroll-progress-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 100000;
}
.scroll-progress-bar {
    height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-olive), var(--primary-forest));
}

/* Fullscreen Loader Shield Layer overlay */
.luxury-loader {
    position: fixed; inset: 0; background-color: #0B1410; z-index: 101000;
    display: flex; justify-content: center; align-items: center; text-align: center;
}
.loader-content { color: #FFFFFF; }
.loader-brand { font-size: 1.8rem; letter-spacing: 0.4em; font-weight: 300; display: block; margin-bottom: 12px; }
.loader-line-container { width: 160px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 12px; overflow: hidden; }
.loader-line { width: 40px; height: 100%; background: var(--secondary-sage); animation: load-loop 1.4s infinite linear; }
.loader-sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); }

@keyframes load-loop {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(180px); }
}

/* Glassmorphism Floating Fixed Header System Structure */
.luxury-header {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: min(92vw, 1300px); z-index: 90000;
    background: var(--glass-background);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 12px 32px;
    transition: all 0.4s var(--transition-apple-smooth);
}
.luxury-header.scrolled-state {
    top: 0; width: 100%; border-radius: 0; border-inline: none; border-top: none;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
    font-size: 1.25rem; font-weight: 700; letter-spacing: 0.15em; text-decoration: none; color: var(--text-dark-apple);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
    font-size: 0.88rem; font-weight: 500; text-decoration: none; color: var(--text-muted-apple);
    position: relative; transition: color 0.3s ease; padding-block: 4px;
}
.nav-link:hover, .nav-link.active-link { color: var(--text-dark-apple); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
    background-color: var(--text-dark-apple); transition: width 0.3s var(--transition-apple-smooth);
}
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

.nav-actions { display: flex; gap: 16px; align-items: center; }
.dark-mode-toggle {
    background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--text-dark-apple); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease;
}
.dark-mode-toggle:hover { background: rgba(0,0,0,0.05); }
[data-theme="dark"] .dark-mode-toggle:hover { background: rgba(255,255,255,0.08); }

.nav-cta-btn {
    background-color: var(--text-dark-apple); color: var(--bg-pure-white); text-decoration: none;
    font-size: 0.85rem; font-weight: 500; padding: 10px 22px; border-radius: 20px; transition: all 0.3s ease;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.mobile-menu-trigger {
    display: none; flex-direction: column; gap: 5px; width: 24px; background: none; border: none; cursor: pointer;
}
.mobile-menu-trigger span { width: 100%; height: 2px; background-color: var(--text-dark-apple); transition: transform 0.3s ease; }

/* Mobile Dropdown Panel */
.mobile-nav-panel {
    position: absolute; top: 100%; left: 0; width: 100%; background: var(--glass-background); backdrop-filter: blur(25px); border-radius: 24px; padding: 24px; margin-top: 10px; border: 1px solid var(--glass-border); display: none; flex-direction: column; gap: 16px; box-shadow: var(--box-shadow-premium);
}
.mobile-nav-panel.open-panel { display: flex; }
.mobile-link { font-size: 1.1rem; text-decoration: none; color: var(--text-dark-apple); font-weight: 500; }
.mobile-panel-btn { background-color: var(--text-dark-apple); color: var(--bg-pure-white); text-decoration: none; text-align: center; padding: 12px; border-radius: 12px; font-weight: 500; }

@media(max-width: 991px) {
    .nav-links, .nav-actions .nav-cta-btn { display: none; }
    .mobile-menu-trigger { display: flex; }
}

/* Full Viewport Cinematic Background Hero Frame Elements */
.hero-section {
    height: 100vh; display: flex; align-items: center; justify-content: flex-start;
    padding-left: max(8vw, 20px); padding-right: max(4vw, 20px); overflow: hidden;
}
.hero-parallax-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    z-index: 1; transform: scale(1.05); transition: transform 0.1s linear;
}
.hero-content {
    position: relative; z-index: 2; max-width: 820px; color: #FFFFFF; margin-top: 60px;
}
.google-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 30px; font-size: 0.8rem;
    font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15); color: var(--secondary-sage);
}
.hero-title {
    font-family: var(--font-serif-luxury); font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 400; line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300; line-height: 1.6;
    color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 680px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Typography Component Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 36px; font-size: 0.95rem; font-weight: 500; border-radius: 30px;
    text-decoration: none; transition: all 0.4s var(--transition-apple-smooth);
}
.btn-primary { background-color: #FFFFFF; color: #1D1D1F; }
.btn-primary:hover { background-color: var(--secondary-sage); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.btn-secondary { background-color: rgba(255,255,255,0.1); color: #FFFFFF; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); }
.btn-secondary:hover { background-color: rgba(255,255,255,0.2); transform: translateY(-3px); }

.scroll-down-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.2em; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.mouse-icon {
    width: 20px; height: 32px; border: 2px solid rgba(255,255,255,0.4); border-radius: 10px; position: relative;
}
.mouse-wheel {
    width: 4px; height: 8px; background-color: #FFFFFF; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: mouse-scroll 1.6s infinite;
}
@keyframes mouse-scroll { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* Infinite Ribbon Text Loop Track */
.ticker-section { padding-block: 30px; background-color: var(--bg-soft-green); border-y: 1px solid var(--glass-border); overflow: hidden; }
.infinite-ticker-wrapper { display: flex; overflow: hidden; width: 100%; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 28s linear infinite; gap: 60px; }
.ticker-item {
    font-family: var(--font-serif-luxury); font-size: 2rem; color: var(--text-dark-apple); opacity: 0.15; font-style: italic; display: flex; align-items: center;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Master Typographic Section Header Components */
.section-header-block {
    max-width: 750px; margin-bottom: 60px; text-align: left;
}
.section-tagline {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--accent-olive); display: block; margin-bottom: 12px;
}
.section-heading {
    font-family: var(--font-serif-luxury); font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 400; color: var(--text-dark-apple); line-height: 1.2; margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem; color: var(--text-muted-apple); line-height: 1.6; font-weight: 300;
}

/* Micro-Elevated Product Grid Layout Matrix */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 40px;
}
.product-card {
    background: var(--bg-pure-white); border-radius: var(--border-radius-luxury); overflow: hidden;
    transition: all 0.5s var(--transition-apple-smooth); border: 1px solid var(--glass-border); box-shadow: var(--box-shadow-premium);
}
.product-card:hover {
    transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.card-img-frame {
    position: relative; width: 100%; height: 360px; overflow: hidden; background-color: #F5F5F7;
}
.card-img-frame img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--transition-apple-smooth);
}
.product-card:hover .card-img-frame img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px);
    padding: 6px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dark-apple);
}
[data-theme="dark"] .product-badge { background: rgba(11,20,16,0.9); color: #FFF; }

.card-body { padding: 24px; }
.product-name { font-size: 1.25rem; font-weight: 600; color: var(--text-dark-apple); margin-bottom: 10px; }
.product-short-desc { font-size: 0.88rem; color: var(--text-muted-apple); line-height: 1.5; margin-bottom: 20px; min-height: 45px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1.2rem; font-weight: 700; color: var(--text-dark-apple); }
.card-button-group { display: flex; gap: 12px; align-items: center; }
.wishlist-btn {
    background: none; border: 1px solid var(--glass-border); width: 38px; height: 38px; border-radius: 50%;
    cursor: pointer; color: var(--text-muted-apple); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.wishlist-btn:hover { color: #E63946; border-color: #E63946; background-color: rgba(230,57,70,0.05); }
.card-action-link {
    font-size: 0.88rem; font-weight: 600; color: var(--text-dark-apple); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease;
}
.card-action-link:hover { gap: 12px; }

/* Precision Space-Comparison Slider Layer Setup */
.transformation-section { background-color: var(--bg-soft-green); }
.comparison-slider-container {
    position: relative; width: 100%; max-width: 1100px; height: 580px; margin: 0 auto;
    border-radius: var(--border-radius-luxury); overflow: hidden; box-shadow: var(--box-shadow-premium);
}
.image-wrapper { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.after-image { width: 50%; overflow: hidden; z-index: 2; }
.after-image img { width: 1100px; max-width: none; } /* Sync base dimensions layout target line scale */
.slider-label {
    position: absolute; bottom: 24px; padding: 8px 16px; background: rgba(0,0,0,0.6); color: #FFF; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 4px; backdrop-filter: blur(5px); z-index: 3;
}
.label-before { right: 24px; }
.label-after { left: 24px; }

.comparison-slider {
    position: absolute; -webkit-appearance: none; appearance: none; inset: 0; width: 100%; height: 100%;
    background: transparent; outline: none; z-index: 4; cursor: ew-resize;
}
.comparison-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 4px; height: 580px; background: #FFFFFF; cursor: ew-resize;
}
.comparison-slider::-moz-range-thumb {
    width: 4px; height: 580px; background: #FFFFFF; cursor: ew-resize; border: none;
}
.slider-line-divider {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background-color: #FFFFFF;
    pointer-events: none; z-index: 3; transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

@media(max-width: 768px) {
    .comparison-slider-container { height: 380px; }
    .comparison-slider::-webkit-slider-thumb { height: 380px; }
    .comparison-slider::-moz-range-thumb { height: 380px; }
}

/* Structural Split About Section Configuration */
.about-split-layout {
    display: flex; gap: max(6vw, 40px); align-items: center; flex-wrap: wrap;
}
.about-visual-canvas {
    flex: 1 1 450px; height: 550px; border-radius: var(--border-radius-luxury); overflow: hidden;
}
.about-parallax-img { width: 100%; height: 100%; object-fit: cover; }
.about-narrative-block { flex: 1 1 450px; }
.narrative-paragraph { font-size: 1.1rem; color: var(--text-muted-apple); line-height: 1.7; font-weight: 300; margin-bottom: 40px; }

/* Micro Counter Metrics Grid Component */
.metrics-counter-row { display: flex; gap: 40px; flex-wrap: wrap; }
.metric-box { flex: 1 1 140px; }
.metric-number { font-family: var(--font-serif-luxury); font-size: 2.8rem; font-weight: 400; color: var(--text-dark-apple); }
.metric-plus { font-size: 1.8rem; color: var(--accent-olive); vertical-align: top; margin-left: 2px; }
.metric-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted-apple); margin-top: 6px; }

/* Premium Grid Flex Containers */
.column-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-container { display: grid; gap: 30px; width: 100%; }
.pillar-card {
    background: var(--bg-pure-white); padding: 40px; border-radius: var(--border-radius-luxury);
    border: 1px solid var(--glass-border); box-shadow: var(--box-shadow-premium); transition: transform 0.3s ease;
}
.pillar-card:hover { transform: translateY(-5px); }
.pillar-icon-box { font-size: 2rem; color: var(--accent-olive); margin-bottom: 24px; }
.pillar-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: var(--text-dark-apple); }
.pillar-card p { font-size: 0.95rem; color: var(--text-muted-apple); line-height: 1.6; font-weight: 300; }

/* Luxury Filter/Tab Navigation Switch Grid Elements */
.seasonal-section { background-color: var(--bg-soft-green); }
.tabs-container { max-width: min(100%, 1100px); margin: 0 auto; }
.tabs-nav { display: flex; justify-content: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-trigger {
    background: var(--bg-pure-white); border: 1px solid var(--glass-border); padding: 12px 28px;
    font-size: 0.9rem; font-weight: 500; border-radius: 25px; cursor: pointer; color: var(--text-muted-apple);
    box-shadow: var(--box-shadow-premium); transition: all 0.3s ease;
}
.tab-trigger.active, .tab-trigger:hover {
    background-color: var(--primary-forest); color: #FFFFFF; border-color: var(--primary-forest);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in-up 0.5s ease forwards; }
.tab-panel-grid {
    display: flex; gap: 40px; align-items: center; flex-wrap: wrap; background: var(--bg-pure-white);
    padding: 32px; border-radius: var(--border-radius-luxury); border: 1px solid var(--glass-border);
}
.tab-panel-grid img { flex: 1 1 320px; height: 300px; object-fit: cover; border-radius: 12px; }
.panel-details { flex: 2 1 400px; }
.panel-details h3 { font-family: var(--font-serif-luxury); font-size: 1.6rem; margin-bottom: 16px; }
.panel-details p { color: var(--text-muted-apple); line-height: 1.6; margin-bottom: 24px; font-weight: 300; }
.panel-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.panel-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text-dark-apple); }
.panel-list li i { color: var(--accent-olive); }

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Care Grid Steps */
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.care-card {
    padding: 32px; background: var(--bg-pure-white); border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-luxury); position: relative; box-shadow: var(--box-shadow-premium);
}
.care-step-number {
    font-family: var(--font-serif-luxury); font-size: 3rem; color: var(--secondary-sage); opacity: 0.4; margin-bottom: 16px;
}
.care-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.care-card p { font-size: 0.9rem; color: var(--text-muted-apple); line-height: 1.6; font-weight: 300; }

/* Testimonials Review Matrix Slider Setup Core Styling */
.testimonial-swiper { padding-bottom: 50px !important; }
.review-glass-card {
    background: var(--glass-background); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border); padding: 48px; border-radius: var(--border-radius-luxury);
    box-shadow: var(--box-shadow-premium); max-width: 720px; margin: 0 auto; text-align: center;
}
.review-stars { color: #FFB01F; font-size: 1rem; margin-bottom: 20px; }
.review-text {
    font-family: var(--font-serif-luxury); font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6; font-style: italic; color: var(--text-dark-apple); margin-bottom: 24px;
}
.review-author { font-size: 1rem; font-weight: 600; color: var(--text-dark-apple); margin-bottom: 4px; }
.review-location { font-size: 0.8rem; color: var(--text-muted-apple); text-transform: uppercase; letter-spacing: 0.05em; }
.swiper-pagination-bullet-active { background: var(--primary-forest) !important; }

/* Pinterest Style Masonry Design Matrix Container Grid */
.masonry-gallery-grid {
    column-count: 3; column-gap: 24px; width: 100%;
}
.gallery-item-wrapper {
    break-inside: avoid; margin-bottom: 24px; border-radius: 12px; overflow: hidden;
    cursor: pointer; background-color: #F5F5F7; box-shadow: var(--box-shadow-premium);
}
.gallery-item-wrapper img {
    width: 100%; height: auto; display: block; transition: transform 0.6s var(--transition-apple-smooth);
}
.gallery-item-wrapper:hover img { transform: scale(1.05); }

@media(max-width: 991px) { .masonry-gallery-grid { column-count: 2; } }
@media(max-width: 575px) { .masonry-gallery-grid { column-count: 1; } }

/* Lightbox Modal Box Overlay styling */
.lightbox-overlay {
    position: fixed; inset: 0; background: rgba(11,20,16,0.95); backdrop-filter: blur(10px);
    z-index: 105000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox-overlay.active { display: flex; }
#lightboxImageSrc { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close-btn {
    position: absolute; top: 30px; right: 40px; background: none; border: none; color: #FFF; font-size: 3rem; cursor: pointer;
}

/* Accordion Accordion Block Panel Matrix */
.faq-accordion-wrapper { max-width: 800px; margin: 0 auto; }
.faq-node { border-bottom: 1px solid var(--glass-border); padding-block: 16px; }
.faq-trigger {
    width: 100%; background: none; border: none; padding: 16px; text-align: left;
    font-size: 1.1rem; font-weight: 500; color: var(--text-dark-apple); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-trigger i { font-size: 0.9rem; transition: transform 0.3s ease; }
.faq-panel-body { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-apple-smooth); padding-inline: 16px; }
.faq-panel-body p { padding-bottom: 16px; color: var(--text-muted-apple); font-size: 0.95rem; line-height: 1.6; font-weight: 300; }
.faq-node.active .faq-trigger i { transform: rotate(180deg); }

/* Double Column Production Layout Form Grid Matrix */
.contact-section { background-color: var(--bg-soft-green); }
.contact-dual-grid { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-details-canvas { flex: 1 1 450px; }
.contact-form-canvas {
    flex: 1 1 450px; background: var(--bg-pure-white); padding: 48px;
    border-radius: var(--border-radius-luxury); border: 1px solid var(--glass-border); box-shadow: var(--box-shadow-premium);
}
.contact-narrative { font-size: 1.05rem; color: var(--text-muted-apple); line-height: 1.6; margin-bottom: 32px; font-weight: 300; }
.contact-info-strip { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.info-node { display: flex; gap: 20px; align-items: flex-start; }
.info-node i { font-size: 1.25rem; color: var(--accent-olive); margin-top: 3px; }
.info-node h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.info-node p { font-size: 0.9rem; color: var(--text-muted-apple); line-height: 1.5; }
.map-iframe-holder { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: var(--box-shadow-premium); }

/* Floating Functional Labelling Form Fields Elements */
.form-title-text { font-family: var(--font-serif-luxury); font-size: 1.75rem; margin-bottom: 32px; font-weight: 400; }
.input-floating-group { position: relative; margin-bottom: 28px; width: 100%; }
.luxury-input {
    width: 100%; padding: 14px 16px; border: 1px solid var(--glass-border); background: var(--bg-soft-green); border-radius: 8px; font-size: 0.95rem; outline: none; color: var(--text-dark-apple); transition: border-color 0.3s ease; font-family: inherit;
}
.text-area-input { resize: vertical; }
.luxury-input:focus { border-color: var(--primary-forest); }
.luxury-label {
    position: absolute; left: 16px; top: 14px; color: var(--text-muted-apple); font-size: 0.95rem; pointer-events: none; transition: all 0.3s var(--transition-apple-smooth);
}
/* Operational Selectors handling non-empty baseline rulesets safely */
.luxury-input:focus ~ .luxury-label,
.luxury-input:not(:placeholder-shown) ~ .luxury-label {
    top: -10px; left: 10px; font-size: 0.75rem; background: var(--primary-forest); color: #FFFFFF; padding: 2px 8px; border-radius: 4px;
}

.form-submit-luxury-btn {
    width: 100%; background-color: var(--primary-forest); color: #FFFFFF; border: none;
    padding: 16px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(27, 65, 50, 0.15);
}
.form-submit-luxury-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.form-feedback-msg { display: none; margin-top: 16px; color: var(--accent-olive); font-size: 0.9rem; text-align: center; font-weight: 500; }

/* Floating Actions Node Elements Stack */
.floating-ecosystem-wrapper { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 14px; z-index: 85000; }
.floating-btn {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: #FFF; font-size: 1.4rem; cursor: pointer; border: none; box-shadow: 0 8px 25px rgba(0,0,0,0.15); transition: transform 0.3s var(--transition-apple-smooth), opacity 0.3s ease;
}
.whatsapp-sticky-trigger { background-color: #25D366; }
.back-to-top-trigger { background-color: var(--text-dark-apple); opacity: 0; pointer-events: none; }
.back-to-top-trigger.visible-state { opacity: 1; pointer-events: auto; }
.floating-btn:hover { transform: scale(1.1) translateY(-3px); }

/* Premium Editorial Multi-column Footer Layout */
.editorial-footer {
    background-color: #0B1410; color: rgba(255,255,255,0.7); padding: 80px max(4vw, 20px) 40px; border-top: 1px solid rgba(255,255,255,0.05);
}
[data-theme="dark"] .editorial-footer { background-color: #050A08; }

.footer-grid-structure {
    display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 60px; max-width: 1300px; margin: 0 auto 60px;
}
@media(max-width: 768px) { .footer-grid-structure { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em; color: #FFF; display: block; margin-bottom: 16px; }
.footer-brand-manifesto { font-size: 0.9rem; line-height: 1.6; max-width: 380px; margin-bottom: 24px; font-weight: 300; }
.footer-social-row { display: flex; gap: 16px; }
.footer-social-row a {
    color: rgba(255,255,255,0.5); width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; text-decoration: none;
}
.footer-social-row a:hover { color: #FFF; border-color: #FFF; background: rgba(255,255,255,0.05); }

.footer-links-column h4, .footer-newsletter-column h4 { color: #FFF; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.footer-links-column { display: flex; flex-direction: column; gap: 12px; }
.footer-links-column a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links-column a:hover { color: #FFF; }

.footer-newsletter-column p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; font-weight: 300; }
.footer-subscribe-form { display: flex; position: relative; }
.footer-subscribe-form input {
    width: 100%; padding: 14px 50px 14px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; color: #FFF; outline: none; font-family: inherit;
}
.footer-subscribe-form button {
    position: absolute; right: 0; top: 0; bottom: 0; width: 50px; background: none; border: none; color: var(--secondary-sage); cursor: pointer; font-size: 1rem;
}

.footer-bottom-bar {
    max-width: 1300px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}