﻿/* ==========================================================================
   Microtel Inn & Suites by Wyndham Perry - Brand Typography & Core Styles
   ========================================================================== */

/* Font Pairing: Montserrat (Logo-Matched Headings) + Inter (Clean UI Body Text) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;           /* Highly legible font for body text */
  background-color: #F5EFEB;                  /* Property exterior soft warm cream */
  color: #1A1A1A;                             /* High contrast dark slate for text readability */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings: Custom tailored to mirror the geometric weight of the Microtel Logo */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;                           /* Extra bold to emulate blocky logo font */
  color: #004182;                             /* Exact Microtel logo deep blue */
  text-transform: uppercase;
  letter-spacing: -0.01em;                    /* Tightened slightly for a structured corporate feel */
  margin-bottom: 1rem;
}

/* ==========================================================================
   THE 95PX OVERLAPPING TANGRAM MATRIX (DECOUPLED VARS)
   ========================================================================== */

.puzzle-drop-header {
    position: relative;
    width: 100%;
    z-index: 2999;
    background: transparent;
    opacity: 0;
    transform: translateY(-10px);
    animation: puzzleHeaderEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes puzzleHeaderEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.puzzle-max-width {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 1. TOP PIECE SHIELD (Grey Layer) */
.deck-top-grey {
    background: #f3f4f6;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.utility-row-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-status-node {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-ping-beacon {
    width: 6px;
    height: 6px;
    background: #76C034;
    border-radius: 50%;
    box-shadow: 0 0 8px #76C034;
    animation: beaconPulseGlow 2s infinite alternate;
}

@keyframes beaconPulseGlow {
    0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 4px #76C034; }
    100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #76C034; }
}

.status-ping-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0f172a;
}

.system-location-node a {
    text-decoration: none;
    color: #4b5563;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.system-location-node i {
    color: #0f172a;
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.system-location-node:hover i {
    transform: scale(1.2);
}

.system-location-node a:hover {
    color: #76C034;
}

.system-social-node a {
    color: #4b5563;
    font-size: 13px;
    margin-left: 16px;
    transition: color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.system-social-node a:hover {
    color: #0f172a;
    transform: translateY(-2px) rotate(8deg);
}

/* 2. GEOMETRIC INTERLOCKING SEAM LINE */
.deck-puzzle-seam {
    position: relative;
    width: 100%;
    height: 22px;
    background: #f3f4f6;
    overflow: hidden;
}

.puzzle-mesh-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.puzzle-mesh-line {
    fill: #ffffff;
    stroke: #e5e7eb;
    stroke-width: 2px;
}

/* 3. LOWER NAVIGATION BASE BAR (White Layer) */
.deck-bottom-white {
    background: #ffffff;
    padding: 10px 0 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.main-nav-split-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-segment-wing {
    display: flex;
    align-items: center;
}

.segment-left { justify-content: flex-start; }
.segment-right { justify-content: flex-end; }

.nav-puzzle-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.nav-puzzle-menu a.puzzle-nav-link {
    text-decoration: none;
    color: #4b5563;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-puzzle-menu a.puzzle-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0f172a;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-puzzle-menu a.puzzle-nav-link:hover,
.nav-puzzle-menu a.puzzle-nav-link.active {
    color: #0f172a;
}

.nav-puzzle-menu a.puzzle-nav-link:hover::after,
.nav-puzzle-menu a.puzzle-nav-link.active::after {
    width: 100%;
    left: 0;
}

/* 4. EXPLICIT 95PX OVERLAPPING PUZZLE LOCK CONTEXT */
.nav-segment-center-altar {
    padding: 0 45px;
    position: relative;
    z-index: 999;
}

/* ==========================================================================
   UPDATED: 95PX PRECISION LOGO FIXED CONTROLS
   ========================================================================== */

.puzzle-overlapping-drop-box {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 12px; /* Generous padding to create an elegant frame around the 95px logo */
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    display: block;
    overflow: hidden;
    /* Auto-calculates size: 95px logo + padding + borders */
    width: max-content; 
    height: max-content; 
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.logo-drop-anchor {
    display: block;
    text-decoration: none;
    width: 95px;
    height: 95px;
}

.logo-puzzle-img {
    width: 95px !important;  /* Hardcoded absolute sizing control */
    height: 95px !important; /* Hardcoded absolute sizing control */
    object-fit: contain;     /* Preserves logo aspect ratio completely */
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bracket Targeting Indicators */
.laser-bracket {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #e5e7eb;
    border-style: solid;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.bracket-tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; }
.bracket-tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; }
.bracket-bl { bottom: 4px; left: 4px; border-width: 0 0 2px 2px; }
.bracket-br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; }

/* Active Continuous Scanning Laser Overlay */
.puzzle-overlapping-drop-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(118, 192, 52, 0.25), transparent);
    transform: translateY(-100%);
    pointer-events: none;
    animation: puzzleLaserVerticalLoop 2.5s infinite linear;
}

@keyframes puzzleLaserVerticalLoop {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100% { transform: translateY(100%); }
}

/* Component Interactions */
.puzzle-overlapping-drop-box:hover {
    transform: translateX(-50%) translateY(3px);
    box-shadow: 0 20px 45px rgba(118, 192, 52, 0.16);
    border-color: #76C034;
}

.puzzle-overlapping-drop-box:hover .logo-puzzle-img {
    transform: scale(1.04);
}

.puzzle-overlapping-drop-box:hover .laser-bracket {
    border-color: #76C034;
    width: 14px;
    height: 14px;
}

/* 5. RESPONSIVE HARDWARE ADAPTERS */
.puzzle-grid-menu-trigger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.puzzle-grid-menu-trigger:active {
    transform: scale(0.9);
}

.puzzle-grid-menu-trigger .trigger-wire {
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: background 0.2s ease;
}

@media (max-width: 1200px) {
    .deck-top-grey,
    .deck-puzzle-seam,
    .nav-segment-wing {
        display: none !important;
    }

    .main-nav-split-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
    }

    .puzzle-grid-menu-trigger {
        display: flex;
    }

    .nav-segment-center-altar {
        padding: 0;
        width: 65px;
        height: 65px;
    }

    .puzzle-overlapping-drop-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        height: 80px !important;
        width: 95px !important;
    }

    .puzzle-overlapping-drop-box:hover {
        transform: none;
        box-shadow: none;
    }

    .laser-bracket, .puzzle-overlapping-drop-box::before {
        display: none !important;
    }
}
/* --- AERO-SPLIT MOBILE MENU V5 - ROYAL INN MONOCHROME THEME --- */
.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #111111; /* Sleek, dark monochrome background */
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.aero-mobile-overlay.active {
    visibility: visible;
    opacity: 1;
}

.aero-menu-inner {
    display: grid;
    grid-template-columns: 40% 60%;
    width: 100%;
    height: 100%;
}

/* LEFT SIDE: Info Panel (Pure Clean White to contrast image_d5e6d5.png logo block) */
.menu-blade-left {
    background: #ffffff; 
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    font-family: 'Montserrat', sans-serif;
}

.aero-mobile-overlay.active .menu-blade-left { 
    transform: translateX(0); 
}

.blade-logo { 
    width: 150px; 
    height: auto;
    margin-bottom: 40px; 
    display: block;
}

.blade-label {
    display: block;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111111; /* Pitch black headers */
    font-weight: 800;
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 16px;
    color: #444444; /* Clean dark grey text strings */
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}

.blade-phone {
    transition: color 0.25s ease;
}

.blade-phone:hover {
    color: #76C034; /* Custom Royal Inn Lime Green */
}

.license-line {
    font-size: 11px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.blade-legal { 
    font-size: 11px; 
}

.blade-legal a { 
    color: #111111; 
    text-decoration: none; 
    font-weight: 700; 
}

.blade-legal a:hover {
    color: #76C034;
    text-decoration: none;
}

.blade-legal .sep { 
    margin: 0 8px; 
    color: rgba(0, 0, 0, 0.15); 
}

/* RIGHT SIDE: Navigation Panel (Dark Premium Contrast Side) */
.menu-blade-right {
    background: #111111; 
    padding: 80px 60px;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.aero-mobile-overlay.active .menu-blade-right { 
    transform: translateX(0); 
}

/* Close Button Styling */
.aero-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: color 0.25s ease;
}

.aero-close-btn:hover {
    color: #76C034; /* Soft branding green highlight on close hover */
}

.close-text { 
    font-size: 11px; 
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px; 
    font-weight: 700; 
    opacity: 0.8; 
}

.close-icon { 
    font-size: 36px; 
    font-weight: 200; 
    line-height: 1;
}

/* Navigation Link Matrix */
.mobile-nav-v5 { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.mobile-nav-v5 a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-left: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666666; /* Muted modern gray numbering */
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.mobile-nav-v5 a:hover {
    padding-left: 65px;
    color: #76C034; /* Text shifts to signature green indicator on interaction */
}

.mobile-nav-v5 a:hover::before {
    color: #ffffff;
}



/* RESPONSIVE STACKING FOR MOBILE VIEWPORTS */
@media (max-width: 900px) {
    .aero-menu-inner { 
        grid-template-columns: 100%; 
        overflow-y: auto; 
    }
    
    .menu-blade-left { 
        order: 2; 
        padding: 40px 30px; 
        transform: translateY(100%); 
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    }
    
    .menu-blade-right { 
        order: 1; 
        padding: 100px 30px 60px 30px; 
        transform: translateY(-100%); 
        transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    }
    
    .aero-mobile-overlay.active .menu-blade-left,
    .aero-mobile-overlay.active .menu-blade-right { 
        transform: translateY(0); 
        transform: translateX(0);
    }
    
    .blade-logo { 
        width: 140px; 
    }
    
    .aero-close-btn {
        top: 30px;
        right: 30px;
    }
}

/* ==========================================================================
   THE TRUE ASYMMETRIC PUZZLE STICKY HEADER
   Matches the exact structural dark/light balance seen in image_d5e6d5.png
   ========================================================================== */

.aero-sticky-pod.asymmetric-puzzle-theme {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Scroll Vector Interaction Hooks */
.aero-sticky-pod.asymmetric-puzzle-theme.reveal-up {
    transform: translateY(0);
    opacity: 1;
}

.aero-sticky-pod.asymmetric-puzzle-theme.hide-away {
    transform: translateY(-100%);
    opacity: 0;
}

/* Main Puzzle Grid Structural Container */
.asymmetric-puzzle-theme .puzzle-grid-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    background: #ffffff;
    padding: 0;
    margin: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid #111111; /* Sharp anchor bottom border */
}

/* Base Structural Cell Rule */
.asymmetric-puzzle-theme .puzzle-cell {
    display: flex;
    align-items: center;
    height: 80px; /* Matches standard premium layout metrics */
    box-sizing: border-box;
}

/* CELL 1: The Dark Bounding Box Block */
.asymmetric-puzzle-theme .dark-logo-cell {
    background: #111111; /* Deep charcoal block directly copying the image look */
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asymmetric-puzzle-theme .puzzle-logo-img {
    height: 84px; /* Scaled precisely to fit within the 80px block container */
    width: auto;
    display: block;
}

/* CELL 2: White Desktop Navigation Segment */
.asymmetric-puzzle-theme .white-nav-cell {
    background: #ffffff;
    padding: 0 40px;
    gap: 0;
}

.asymmetric-puzzle-theme .puzzle-nav-link {
    text-decoration: none;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-right: 1px solid #f0f0f0;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.asymmetric-puzzle-theme .puzzle-nav-link:first-child {
    border-left: 1px solid #f0f0f0;
}

.asymmetric-puzzle-theme .puzzle-nav-link:hover {
    background: #f9fafb;
    color: #76C034; /* Custom logo lime green accent pulse */
}

/* CELL 3: Right-Side Action/Trigger Base Block */
.asymmetric-puzzle-theme .white-action-cell {
    background: #ffffff;
    gap: 0;
}

.asymmetric-puzzle-theme .hub-phone-icon {
    color: #111111;
    font-size: 15px;
    height: 100%;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.asymmetric-puzzle-theme .hub-phone-icon:hover {
    color: #76C034;
}

/* Rectangular Booking Slot */
.asymmetric-puzzle-theme .hub-book-action {
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    height: 100%;
    padding: 0 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.asymmetric-puzzle-theme .hub-book-action:hover {
    background: #76C034;
}

/* CELL 4: The 3-Bar Toggle (Recreated accurately from image_d5e6d5.png) */
.asymmetric-puzzle-theme .puzzle-hamburger-trigger {
    background: #ffffff;
    border: none;
    height: 100%;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #f0f0f0;
    padding: 0;
    transition: background-color 0.2s ease;
}

.asymmetric-puzzle-theme .stack-wires {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px; /* Clean, bold desktop width mirroring your screenshot lines */
}

.asymmetric-puzzle-theme .stack-wires span {
    width: 100%;
    height: 2px;
    background: #111111; /* Clean black structural bars */
    display: block;
    transition: background-color 0.2s ease;
}

.asymmetric-puzzle-theme .puzzle-hamburger-trigger:hover {
    background: #111111;
}

.asymmetric-puzzle-theme .puzzle-hamburger-trigger:hover .stack-wires span {
    background: #ffffff;
}

/* ==========================================================================
   RESPONSIVE GEOMETRIC INTERLOCK BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
    .asymmetric-puzzle-theme .white-nav-cell {
        display: none; /* Safely kills center navigation, mirroring layout priorities */
    }
    
    .asymmetric-puzzle-theme .puzzle-grid-container {
        grid-template-columns: auto 1fr;
    }
    
    .asymmetric-puzzle-theme .white-action-cell {
        justify-self: end;
    }
    
    .asymmetric-puzzle-theme .dark-logo-cell {
        padding: 0 20px;
    }
    
    .asymmetric-puzzle-theme .puzzle-logo-img {
        height: 46px;
    }
}
/* ==========================================================================
   GEOMETRIC ASYMMETRIC PUZZLE SLIDER COMPONENT
   Palette: Dark Charcoal (#111111), Pure White (#FFFFFF), Logo Lime (#76C034)
   ========================================================================== */

.puzzle-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background: #000000;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* --- INTERLOCKING MECHANICAL MATRIX TRANSITIONS --- */
.puzzle-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: visibility 0s 1.2s, opacity 0s 1.2s;
}

.puzzle-slide.active-puzzle {
    z-index: 10;
    visibility: visible;
    opacity: 1;
    transition: none;
}

/* --- THE BACKGROUND FRAME COMPONENT --- */
.puzzle-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(100% 0% 0% 0%); /* Industrial drop-gate reveal effect */
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.puzzle-slide.active-puzzle .puzzle-image-wrapper {
    clip-path: inset(0% 0% 0% 0%);
}

.puzzle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.15);
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.puzzle-slide.active-puzzle .puzzle-img {
    transform: scale(1);
}

/* --- ASYMMETRIC CONTENT BLOCK MATRIX --- */
.puzzle-content-matrix {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch; /* Forces cells to stretch into full height interlocking boxes */
}

.puzzle-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* LEFT SIDE: Typographic Header Block Shell */
.puzzle-box.text-block-left {
    padding: 0 8% 0 10%;
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, opacity 1s ease 0.4s;
}

.puzzle-slide.active-puzzle .text-block-left {
    opacity: 1;
    transform: translateX(0);
}

.puzzle-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #76C034; /* Custom Logo Lime Accent line indicator */
    margin-bottom: 20px;
}

.puzzle-heading {
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.puzzle-heading em {
    font-style: normal;
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #76C034; /* Geometric box-joint style marker accent */
}

/* RIGHT SIDE: Action Target Block Shell */
.puzzle-box.action-block-right {
    padding-right: 12%;
    opacity: 0;
    transform: translateX(50px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 1s ease 0.5s;
    align-items: flex-end;
}

.puzzle-slide.active-puzzle .action-block-right {
    opacity: 1;
    transform: translateX(0);
}

.puzzle-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 340px;
    background: rgba(17, 17, 17, 0.85); /* Solid dark translucent box block */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-top: 4px solid #76C034; /* Lime green box edge capsulation */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* BUTTONS: Solid & Angular */
.puzzle-btn-solid {
    display: block;
    background: #76C034; 
    color: #ffffff;
    padding: 18px 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.puzzle-btn-solid:hover {
    background: #ffffff;
    color: #111111;
}

.puzzle-btn-wire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.25s ease;
}

.wire-arrow {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.puzzle-btn-wire:hover {
    color: #76C034;
}

.puzzle-btn-wire:hover .wire-arrow {
    transform: translateX(6px);
}

/* --- THE GEOMETRIC HUDS AND CONSOLE INTERFACE --- */
.puzzle-hud-console {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.9);
}

.puzzle-pagination-module {
    display: flex;
    align-items: center;
    padding: 25px 0 25px 10%;
    gap: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.puzzle-index-large {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.puzzle-index-small {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.puzzle-grid-progress-track {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
}

.puzzle-grid-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20%;
    background: #76C034;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Control Arrow Cluster Blocks */
.puzzle-navigation-arrows {
    display: flex;
    justify-content: flex-end;
}

.puzzle-console-btn {
    width: 90px;
    height: 100%;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.puzzle-console-btn:hover {
    background: #76C034;
    color: #ffffff;
}

/* ==========================================================================
   MOBILE MATRIX MEDIA RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 991px) {
    .puzzle-content-matrix {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .puzzle-box.text-block-left {
        padding: 100px 6% 0 6%;
        transform: translateY(-30px);
    }
    
    .puzzle-slide.active-puzzle .text-block-left {
        transform: translateY(0);
    }

    .puzzle-box.action-block-right {
        padding: 0 6% 120px 6%;
        align-items: center;
        transform: translateY(30px);
    }
    
    .puzzle-slide.active-puzzle .action-block-right {
        transform: translateY(0);
    }

    .puzzle-cta-stack {
        max-width: 100%;
        padding: 30px;
    }

    .puzzle-hud-console {
        grid-template-columns: 1fr;
    }

    .puzzle-pagination-module {
        padding: 20px 6%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
    }

    .puzzle-grid-progress-track {
        flex-grow: 1;
        width: auto;
        max-width: 250px;
    }

    .puzzle-navigation-arrows {
        height: 60px;
    }

    .puzzle-console-btn {
        flex: 1;
        border-left: none;
    }
    
    .puzzle-console-btn:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}
/* ==========================================================================
   CINEMATIC PUZZLE-GRID WELCOME SECTION STYLE DECK
   Palette: Dark Charcoal (#111111), Pure White (#FFFFFF), Logo Lime (#76C034)
   ========================================================================== */

.matrix-welcome {
    position: relative;
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* --- STRUCTURAL TECH-GRID PLATFORM BACKGROUNDS --- */
.matrix-grid-lines {
    position: absolute;
    inset: 0;
    /* FIXED: Enhanced visibility from 0.025 to 0.08 to make lines clearly scannable */
    background-image: 
        linear-gradient(rgba(18, 18, 18, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 18, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: top left;
    /* FIXED: Adjusted gradient mask stops to let more of the tech lines reveal in the section center */
    mask-image: linear-gradient(to bottom, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 5%, #000 95%, transparent);
    pointer-events: none;
    z-index: 1;
}

.matrix-geometric-bracket {
    position: absolute;
    top: 5%;
    right: -2%;
    width: 35%;
    height: 90%;
    background: #111111;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    /* FIXED: Subtle visibility lift for the giant geometric shape mask */
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* --- NEON TECH-GRID PLATFORM BACKGROUNDS --- */

.matrix-grid-lines1 {
    position: absolute;
    inset: 0;
    /* FIXED: Swapped dark lines out for neon lime green illumination lines */
    background-image: 
        linear-gradient(rgba(118, 192, 52, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 192, 52, 0.09) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: top left;
    
    /* Radial gradient mask: Concentrates the grid brightness directly in the center panel */
    mask-image: radial-gradient(circle at center, #000 20%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, #000 20%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    
    pointer-events: none;
    z-index: 1;
}

.matrix-geometric-bracket1 {
    position: absolute;
    top: 5%;
    right: -2%;
    width: 35%;
    height: 90%;
    /* FIXED: Changed to an ultra-dark glass fill with a vibrant neon brand-colored outline */
    background: rgba(118, 192, 52, 0.015);
    border: 1px solid rgba(118, 192, 52, 0.12);
    
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1; /* Retaining visibility controls natively via RGBA channels above */
    
    /* Adds a soft, low-overhead ambient neon field glow behind the geometry layer */
    filter: drop-shadow(0 0 40px rgba(118, 192, 52, 0.08));
    
    pointer-events: none;
    z-index: 0;
}
/* --- FIXED: IMPLEMENTED SYSTEM 1400PX MAX-WIDTH CONTROLS --- */
.matrix-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
}

/* --- BLOCK 01: ASYMMETRIC PICTURE-GRID LOCKER --- */
.matrix-media-vault {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
}

.matrix-frame-primary {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    z-index: 5;
    background: #111111;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 25px 25px 60px rgba(0,0,0,0.08);
    cursor: pointer;
}

.matrix-prime-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-frame-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 280px;
    overflow: hidden;
    z-index: 12;
    background: #111111;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.matrix-second-img {
    width: 100%;
    height: -10%; /* FIXED: corrected broken negative percentage layout value to a standard 100% fill */
    object-fit: cover;
}

.matrix-industrial-anchor {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-top: 4px solid #76C034;
    border-left: 4px solid #76C034;
    z-index: 2;
    pointer-events: none;
}

/* Cinematic Video Shutter Hover Layers */
.matrix-video-shutter {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.matrix-frame-primary:hover .matrix-video-shutter {
    opacity: 1;
}

.matrix-frame-primary:hover .matrix-prime-img {
    transform: scale(1.06);
}

.matrix-lens-btn {
    text-align: center;
    color: #ffffff;
}

.matrix-lens-btn i {
    display: block;
    font-size: 24px;
    color: #76C034;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.matrix-frame-primary:hover .matrix-lens-btn i {
    transform: scale(1.1);
}

.matrix-lens-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* --- BLOCK 02: CLEAN ARCHITECTURAL TEXT SHELL --- */
.matrix-content-shell {
    padding-right: 20px;
}

.matrix-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #76C034;
    display: block;
    margin-bottom: 15px;
}

.matrix-title {
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 900;
    color: #111111;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.matrix-title span {
    display: block;
    font-weight: 400;
    color: #555555;
    font-size: 0.65em;
    letter-spacing: 0px;
    margin-top: 5px;
}

.matrix-lead {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 25px;
    border-left: 3px solid #76C034;
    padding-left: 20px;
}

.matrix-para {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-left: 23px;
}

/* --- BLOCK 03: CONSOLE TRIGGER ACTION INTERFACE --- */
.matrix-action-console {
    padding-left: 23px;
}

.matrix-console-trigger {
    background: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 0;
}

.matrix-trigger-box {
    width: 55px;
    height: 55px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.matrix-trigger-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
    position: relative;
}

.matrix-trigger-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #76C034;
    transition: width 0.25s ease;
}

.matrix-console-trigger:hover .matrix-trigger-box {
    background: #76C034;
    transform: rotate(90deg);
}

.matrix-console-trigger:hover .matrix-trigger-text::after {
    width: 100%;
}

/* --- SPLIT CANVAS DECK OVERLAY --- */
.matrix-drawer-deck {
    position: fixed;
    inset: 0;
    background: #111111;
    z-index: 9999;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-drawer-deck.active {
    transform: translateX(0);
}

/* LEFT 60%: THE PERSISTENT YOUTUBE HUB */
.matrix-drawer-video-zone {
    flex: 1.2;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.matrix-video-embed-wrapper {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #111111;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* RIGHT 40%: THE SCROLLABLE CONTENT BLOCK */
.matrix-drawer-inner {
    width: 500px;
    height: 100%;
    background: #111111;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* FIXED HEADER SEPARATOR FOR THE ACTION BUTTON */
.matrix-drawer-action-header {
    width: 100%;
    padding: 30px 40px 15px 40px;
    display: flex;
    justify-content: flex-end;
    background: #111111;
    box-sizing: border-box;
}

/* HIGH-CONTRAST ISOLATED CLOSE TRIGGER */
.matrix-drawer-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.matrix-drawer-close:hover {
    background: #76C034;
    border-color: #76C034;
    color: #ffffff;
}

/* SCROLL CONTAINER BODY LAYER */
.matrix-drawer-body-scroll {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px 40px 60px 40px;
    box-sizing: border-box;
}

.matrix-drawer-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.matrix-drawer-title span {
    color: #76C034;
    font-weight: 300;
}

/* Puzzle Column Cell Matrix Blocks */
.matrix-puzzle-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.matrix-puzzle-cell {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.matrix-cell-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.matrix-cell-num {
    font-size: 11px;
    color: #76C034;
    font-weight: 800;
}

.matrix-puzzle-cell h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.matrix-cell-dist {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 8px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.matrix-puzzle-cell p {
    font-family: 'Inter', sans-serif;
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERY RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .matrix-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .matrix-media-vault {
        height: 480px;
    }
    .matrix-frame-primary {
        height: 400px;
    }
    .matrix-frame-secondary {
        height: 220px;
    }
}
/* ==========================================================================
   MEDIA QUERY RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 1199px) {
    .matrix-drawer-deck {
        flex-direction: column;
    }
    .matrix-drawer-video-zone {
        flex: none;
        height: 45vh;
        padding: 20px;
    }
    .matrix-drawer-inner {
        width: 100%;
        height: 55vh;
    }
    .matrix-drawer-action-header {
        padding: 20px 30px 10px 30px;
    }
    .matrix-drawer-body-scroll {
        padding: 10px 30px 40px 30px;
    }
}

@media (max-width: 991px) {
    .matrix-welcome {
        padding: 60px 0;
    }
    .matrix-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .matrix-media-vault {
        height: 480px;
    }
    .matrix-frame-primary {
        width: 85%;
        height: 400px;
    }
    .matrix-frame-secondary {
        width: 45%;
        height: 180px;
    }
}

/* ==========================================================================
   PUZZLE-THEMED AMENITIES BLOCK SYSTEM
   ========================================================================== */

.matrix-amenities {
    position: relative;
    padding: 60px 0; /* Slightly optimized vertical padding */
    background: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(18, 18, 18, 0.05);
}

/* --- THE 1400PX SYSTEM CONSTRAINT WRAPPER --- */
.matrix-amenities .container {
    width: 100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
}

.matrix-amenities-header {
    margin-bottom: 50px;
}

.matrix-amenities-title {
    font-size: clamp(2rem, 3.5vw, 38px);
    font-weight: 900;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: 5px;
}

.matrix-amenities-title span {
    font-weight: 300;
    color: #76C034;
}

/* Interlocking Puzzle Layout Grid Matrix */
.matrix-amenities-puzzle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates sharp structural grid lanes separating the puzzle cells */
    gap: 1px; 
    background: rgba(18, 18, 18, 0.1); 
    border: 1px solid rgba(18, 18, 18, 0.1);
}

.matrix-amenity-card {
    background: #ffffff;
    padding: 45px 40px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Feature Badge Highlight for Popular Amenities Block */
.matrix-amenity-card.core-priority {
    background: #111111;
}

.matrix-amenity-card.core-priority .matrix-card-num {
    color: #76C034;
}

.matrix-amenity-card.core-priority h3 {
    color: #ffffff;
}

.matrix-amenity-card.core-priority .matrix-feature-list li {
    color: #cccccc;
}

.matrix-amenity-card.core-priority .matrix-feature-list i {
    color: #76C034;
}

.matrix-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    background: #76C034;
    padding: 3px 8px;
}

.matrix-card-num {
    font-size: 11px;
    font-weight: 800;
    color: #76C034;
    display: block;
    margin-bottom: 10px;
}

.matrix-amenity-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

/* Clean Structural Feature List */
.matrix-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.matrix-feature-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.matrix-feature-list i {
    color: #111111;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* Interlocking Puzzle Hover Animation Effect */
.matrix-amenity-card:not(.matrix-subpage-link-box):not(.core-priority):hover {
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    z-index: 5;
}

/* Subpage Prompt Custom Terminal Block Styling */
.matrix-subpage-link-box {
    background: rgba(118, 192, 52, 0.04);
}

.matrix-subpage-link-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.matrix-terminal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.matrix-terminal-btn i {
    color: #76C034;
    font-size: 14px;
}

.matrix-subpage-link-box:hover .matrix-terminal-btn {
    gap: 20px;
    color: #76C034;
}

/* ==========================================================================
   MEDIA QUERY RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    .matrix-amenities-puzzle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .matrix-amenities {
        padding: 40px 0;
    }
    .matrix-amenities-puzzle-grid {
        grid-template-columns: 1fr;
    }
    .matrix-amenity-card {
        padding: 35px 30px;
    }
}
/* ==========================================================================
   MATRIX PUZZLE-GRID ROOMS STYLESHEET
   ========================================================================== */

.matrix-rooms {
    position: relative;
    padding: 30px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
 
}


/* --- ADDED: GEOMETRIC PUZZLE PIECE CORNER ACCENT --- */
.matrix-rooms::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(118, 192, 52, 0.03);
    clip-path: polygon(0% 0%, 70% 0%, 100% 30%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

/* Strict 1400px Max-Width System Wrapper Constraint */
.matrix-rooms-container {
    width: 100%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 1; /* Pulls content over the background puzzle lines */
}

.matrix-rooms-header {
    margin-bottom: 60px;
    text-align: left;
}

.matrix-rooms-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #76C034;
    display: block;
    margin-bottom: 12px;
}

.matrix-rooms-title {
    font-size: clamp(2rem, 3.5vw, 38px);
    font-weight: 900;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.matrix-rooms-title span {
    font-weight: 300;
    color: #76C034;
}

/* Asymmetric Interlocking Puzzle Mesh Grid */
.matrix-rooms-puzzle-mesh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(18, 18, 18, 0.15); /* Sharpened grid lane colors */
    border: 2px solid rgba(18, 18, 18, 0.15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}

/* Individual Puzzle Cell Block Box */
.matrix-room-puzzle-cell {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Upper Vault Image Platform */
.matrix-room-image-vault {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #111111;
}

.matrix-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.matrix-room-meta-badge {
    position: absolute;
    bottom: 20px;
    left: 25px;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    background: rgba(17, 17, 17, 0.85);
    padding: 5px 10px;
    backdrop-filter: blur(5px);
    border-left: 2px solid #76C034;
}

.matrix-room-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    background: #111111;
    padding: 4px 10px;
    text-transform: uppercase;
}

.matrix-room-tag.highlight {
    background: #76C034;
}

/* Lower Architectural Shield Area */
.matrix-room-content-shield {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    transition: background-color 0.4s ease;
}

.matrix-room-name {
    font-size: 22px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.matrix-bed-config {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #76C034;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.matrix-room-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

/* Tech Spec Feature Micro Matrix */
.matrix-room-spec-list {
    list-style: none;
    padding: 0;
    margin: auto 0 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-top: 1px solid rgba(18, 18, 18, 0.06);
    padding-top: 20px;
}

.matrix-room-spec-list li {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #444444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.matrix-room-spec-list i {
    color: #76C034;
    font-size: 13px;
    width: 16px;
    text-align: center;
}

/* Console Activation Trigger Link */
.matrix-room-terminal-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 2px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.matrix-room-terminal-link i {
    color: #76C034;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   DYNAMIC INTERLOCKING PUZZLE HOVER CORE ANIMATIONS
   ========================================================================== */

.matrix-room-puzzle-cell:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(18, 18, 18, 0.12);
    z-index: 5;
    background: #fafafa;
}

.matrix-room-puzzle-cell:hover .matrix-room-content-shield {
    background: #fafafa;
}

.matrix-room-puzzle-cell:hover .matrix-room-img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.matrix-room-puzzle-cell:hover .matrix-room-terminal-link {
    color: #76C034;
    gap: 22px;
}

.matrix-room-puzzle-cell:hover .matrix-room-terminal-link i {
    transform: translateX(4px);
}

/* High Contrast Inversion Variant for Core Popular Item Blocks */
.matrix-room-puzzle-cell.core-priority {
    background: #111111;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-content-shield {
    background: #111111;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-name {
    color: #ffffff;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-desc {
    color: #aaaaaa;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-spec-list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.matrix-room-puzzle-cell.core-priority .matrix-room-spec-list li {
    color: #cccccc;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-terminal-link {
    color: #ffffff;
}

.matrix-room-puzzle-cell.core-priority .matrix-room-terminal-link:hover {
    color: #76C034;
}

.matrix-room-puzzle-cell.core-priority:hover {
    background: #151515;
}
.matrix-room-puzzle-cell.core-priority:hover .matrix-room-content-shield {
    background: #151515;
}

/* ==========================================================================
   MEDIA QUERY RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .matrix-rooms-puzzle-mesh {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .matrix-rooms {
        padding: 60px 0;
    }
    .matrix-rooms-puzzle-mesh {
        grid-template-columns: 1fr;
    }
    .matrix-room-puzzle-cell:hover {
        transform: translateY(-4px);
    }
    .matrix-room-content-shield {
        padding: 35px 25px;
    }
}
/* ==========================================================================
   KINETIC SLIT-SCAN DARK THEME STYLESHEET
   ========================================================================== */

.kinetic-dark-attractions {
    position: relative;
    padding: 30px 0;
    background: #0b0f12; /* Match obsidian signature canvas */
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Base structural layout parameters */
.matrix-attractions-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.matrix-attractions-header {
    margin-bottom: 60px;
}

.matrix-attractions-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #76C034;
    display: block;
    margin-bottom: 12px;
}

.matrix-attractions-title {
    font-size: clamp(2rem, 3.5vw, 38px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.matrix-attractions-title span {
    font-weight: 300;
    color: #76C034;
}

/* THE KINETIC SLIT ACCORDION MESH
   Collapses sibling cells to narrow strips; unlocks expansive widths natively on focus.
*/
.kinetic-puzzle-filmstrip {
    display: flex;
    width: 100%;
    height: 560px;
    gap: 10px;
    position: relative;
    box-sizing: border-box;
}

/* Individual Filmstrip Slot Base Architecture */
.kinetic-film-card {
    position: relative;
    flex: 1;
    height: 100%;
    background: #11161a;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
    cursor: pointer;
    /* Custom spring cubic-bezier for snappy, cinematic deceleration mechanics */
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.2, 1), 
                background-color 0.4s ease, 
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* Interactive Laser Scanning Tracker Line */
.kinetic-scanner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #76C034, transparent);
    opacity: 0;
    z-index: 5;
    transform: translateY(-10px);
    transition: opacity 0.3s ease;
}

/* Asset Graphic Container Layer */
.kinetic-img-vault {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.kinetic-target-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.25);
    transform: scale(1.05) translateX(0%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1), 
                filter 0.5s ease;
}

/* Deep Architectural Scrim Masking Overlay */
.kinetic-matrix-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(11, 15, 18, 0.1) 0%, 
        rgba(11, 15, 18, 0.85) 70%, 
        #11161a 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

/* Fixed Technical Node IDs */
.kinetic-node-meta {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    z-index: 3;
    transition: color 0.4s ease;
}

/* Content Information Canvas Deck */
.kinetic-info-deck {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    max-width: 600px; /* Locks prose text block from wrapping awkwardly during transitions */
    box-sizing: border-box;
    pointer-events: none; /* Passes mouse tracking straight down to standard hit-box */
}

/* Top Badge Identifiers */
.kinetic-node-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.kinetic-node-tag.highlight {
    background: rgba(118, 192, 52, 0.15);
    color: #76C034;
    border: 1px solid rgba(118, 192, 52, 0.3);
}

.kinetic-node-eyebrow {
    font-size: 10px;
    font-weight: 700;
    color: #76C034;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.5s ease 0.05s, opacity 0.5s ease 0.05s;
}

.kinetic-film-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    /* Vertically stacks text when collapsed for a dynamic architectural look */
    writing-mode: vertical-rl; 
    transform: rotate(180deg);
    white-space: nowrap;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.2, 1), 
                writing-mode 0.1s linear, 
                color 0.3s ease;
}

.kinetic-node-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #a0aab2;
    line-height: 1.6;
    margin: 15px 0 0 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: max-height 0.1s ease 0.4s, 
                opacity 0.4s ease, 
                transform 0.5s ease;
}

/* Action Trigger Module */
.kinetic-node-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    color: #76C034;
    letter-spacing: 2px;
    margin-top: 25px;
    opacity: 0;
    transform: translateX(-15px);
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease, gap 0.3s ease;
}

.kinetic-node-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}


/* ==========================================================================
   DYNAMIC INTERACTIVE ACTIVE STATE PARADIGMS
   ========================================================================== */

/* Active Expansion Paradigm Rule: Swaps flex sizing weight from 1 to 4.5 */
.kinetic-film-card:hover,
.kinetic-film-card.cell-active {
    flex: 4.5;
    background: #141b20;
    border-color: rgba(118, 192, 52, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Reset text behavior instantly back to standard horizontal typesetting orientation */
.kinetic-film-card:hover h3,
.kinetic-film-card.cell-active h3 {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: clamp(1.4rem, 2.2vw, 26px);
    white-space: normal;
}

/* Animate the internal image transformation */
.kinetic-film-card:hover .kinetic-target-img,
.kinetic-film-card.cell-active .kinetic-target-img {
    filter: grayscale(0) brightness(0.65);
    transform: scale(1) translateX(0);
}

/* Trigger Laser Line Sweep Animation Loop */
.kinetic-film-card:hover .kinetic-scanner-glow,
.kinetic-film-card.cell-active .kinetic-scanner-glow {
    opacity: 1;
    animation: laserSweep 3s infinite linear;
}

.kinetic-film-card:hover .kinetic-node-meta,
.kinetic-film-card.cell-active .kinetic-node-meta {
    color: #76C034;
}

/* Seamless staggered reveal engine of elements */
.kinetic-film-card:hover .kinetic-node-tag,
.kinetic-film-card.cell-active .kinetic-node-tag,
.kinetic-film-card:hover .kinetic-node-eyebrow,
.kinetic-film-card.cell-active .kinetic-node-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.kinetic-film-card:hover .kinetic-node-desc,
.kinetic-film-card.cell-active .kinetic-node-desc {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.6s ease 0.1s, 
                opacity 0.5s ease 0.15s, 
                transform 0.5s ease 0.15s;
}

.kinetic-film-card:hover .kinetic-node-link,
.kinetic-film-card.cell-active .kinetic-node-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}

/* Core priority fallback highlight card state styling matching global rules */
.kinetic-film-card.core-priority:not(:hover):not(.cell-active) {
    background: #1b242a;
}

/* Internal Hover Mechanics */
.kinetic-node-link:hover {
    gap: 18px;
}
.kinetic-node-link:hover i {
    transform: translateX(4px);
}

@keyframes laserSweep {
    0% { transform: translateY(-5px); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translateY(560px); opacity: 0; }
}


/* ==========================================================================
   PORTABLE SYSTEM RESPONSIVE QUERY OVERRIDES
   ========================================================================== */
@media (max-width: 1199px) {
    .kinetic-puzzle-filmstrip {
        height: 500px;
    }
}

/* Below 991px, smoothly transitions from horizontal filmstrip to vertical stacking matrix */
@media (max-width: 991px) {
    .kinetic-puzzle-filmstrip {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    
    .kinetic-film-card {
        flex: none !important;
        width: 100%;
        height: auto;
        min-height: 160px;
    }

    .kinetic-film-card h3 {
        writing-mode: horizontal-tb !important;
        transform: rotate(0deg) !important;
        font-size: 20px !important;
        white-space: normal !important;
    }

    .kinetic-info-deck {
        padding: 30px;
        max-width: 100%;
    }

    .kinetic-node-tag, .kinetic-node-eyebrow, .kinetic-node-desc, .kinetic-node-link {
        opacity: 1 !important;
        transform: none !important;
        max-height: none !important;
    }

    .kinetic-target-img {
        filter: grayscale(0.3) brightness(0.4) !important;
    }
    
    .kinetic-scanner-glow {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .kinetic-dark-attractions {
        padding: 60px 0;
    }
    .kinetic-info-deck {
        padding: 30px 20px;
    }
}
/* ==========================================================================
   UNIFIED GRID GALLERY & FAQ BLUEPRINT MATRIX INTERFACE (KINETIC COLOR SYNC)
   ========================================================================== */

.blueprint-split-terminal {
    width: 100%;
    background: #0b0f12; /* Matched to obsidian signature canvas background */
    padding: 30px 0;
    position: relative; /* REQUIRED: Anchor point for absolute background assets */
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- NEON TECH-GRID PLATFORM BACKGROUNDS --- */
.matrix-grid-lines1 {
    position: absolute;
    inset: 0;
    /* FIXED: Swapped dark lines out for neon lime green illumination lines */
    background-image: 
        linear-gradient(rgba(118, 192, 52, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 192, 52, 0.09) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: top left;
    
    /* Radial gradient mask: Concentrates the grid brightness directly in the center panel */
    mask-image: radial-gradient(circle at center, #000 20%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, #000 20%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    
    pointer-events: none;
    z-index: 1;
}

.matrix-geometric-bracket1 {
    position: absolute;
    top: 5%;
    right: -2%;
    width: 35%;
    height: 90%;
    /* FIXED: Changed to an ultra-dark glass fill with a vibrant neon brand-colored outline */
    background: rgba(118, 192, 52, 0.015);
    border: 1px solid rgba(118, 192, 52, 0.12);
    
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1; /* Retaining visibility controls natively via RGBA channels above */
    
    /* Adds a soft, low-overhead ambient neon field glow behind the geometry layer */
    filter: drop-shadow(0 0 40px rgba(118, 192, 52, 0.08));
    
    pointer-events: none;
    z-index: 0;
}

/* Base structural layout parameters */
.terminal-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 10; /* Elevates functional modules above technical grid fields */
}

/* ==========================================================================
   LEFT FLANK: TECH-COMPACT MASONRY GALLERY (STATIC NO KINETIC STRETCHING)
   ========================================================================== */
.terminal-gallery-side {
    grid-column: span 6;
    width: 100%;
}

.hud-compact-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    width: 100%;
}

.hud-mini-card {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04); /* High contrast tactical border wire */
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.85);
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

/* Base grid layout structural configurations */
.hud-mini-card.span-6 { grid-column: span 6; }
.hud-mini-card.span-12 { grid-column: span 12; height: 220px; }

.hud-mini-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, #11161a 100%); /* Match cell base fill */
    z-index: 1;
    transition: background 0.5s ease;
}

.hud-mini-meta {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

.hud-code {
    font-family: monospace;
    font-size: 10px;
    font-weight: 700;
    color: #76C034; /* Tactical signature lime indicator token */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 4px;
}

.hud-mini-meta h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Technical Target Cross-Chamber Interactivity */
.hud-mini-card:hover {
    border-color: rgba(118, 192, 52, 0.4); /* Lime glow active indicator outline */
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.hud-mini-card:hover .hud-mini-scrim {
    background: linear-gradient(180deg, rgba(118, 192, 52, 0.05) 0%, #11161a 100%);
}

/* ==========================================================================
   RIGHT FLANK: ACCORDION INTERACTION FRAMEWORK
   ========================================================================== */
.terminal-faq-side {
    grid-column: span 6;
    width: 100%;
}

.terminal-faq-header {
    margin-bottom: 35px;
}

.terminal-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #76C034; /* Lime technical subheader block */
    display: block;
    margin-bottom: 12px;
}

.terminal-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.terminal-title span {
    font-weight: 300;
    color: #76C034; /* Light contrast secondary tracking style color */
}

.terminal-laser-line {
    width: 60px;
    height: 3px;
    background: #76C034; /* Static vector signature marker block line */
}

/* ACCORDION MODULE STRUCTURES */
.terminal-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 40px;
}

.faq-accordion-item {
    background: #11161a; /* Match cell background color theme exactly */
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

.faq-number {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-right: 20px;
    transition: color 0.4s ease;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    flex: 1;
    padding-right: 15px;
    transition: color 0.4s ease;
}

.faq-icon-marker {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.2, 1), color 0.4s ease;
}

/* Open Panel Content States Matrix */
.faq-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.2, 1), opacity 0.4s ease;
}

.faq-inner-text {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #a0aab2; /* Desaturated gray copy content font */
    padding: 0 24px 24px 57px;
    box-sizing: border-box;
}
.faqlink {
    color:#ffffff;
    text-decoration: none;
}

/* ACTIVE TERMINAL ACCORDION STYLES */
.faq-accordion-item.active {
    border-color: rgba(118, 192, 52, 0.3); /* Integrated active state border line */
    background: #141b20; /* Deep active deck variation color styling */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.faq-accordion-item.active .faq-number { color: #76C034; }
.faq-accordion-item.active .faq-question-text { color: #ffffff; }
.faq-accordion-item.active .faq-icon-marker { 
    transform: rotate(135deg); 
    color: #76C034; 
}

/* ==========================================================================
   TERMINAL FOOTER ROUTING REDIRECT HUB
   ========================================================================== */
.terminal-faq-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    width: 100%;
}

.terminal-faq-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #7d878f;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.terminal-global-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    color: #76C034; /* Action link inherits signature lime token */
    letter-spacing: 2px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.terminal-global-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.terminal-global-link:hover {
    color: #ffffff;
    gap: 18px;
}
.terminal-global-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   PORTABLE SYSTEM RESPONSIVE MEDIA PLATFORMS OVERRIDES
   ========================================================================== */
@media (max-width: 1199px) {
    .terminal-container { gap: 30px; }
    .terminal-title { font-size: 28px; }
    .faq-question-text { font-size: 14px; }
}

@media (max-width: 991px) {
    .terminal-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .terminal-gallery-side, .terminal-faq-side {
        width: 100%;
    }
    .hud-mini-card.span-12 { height: 260px; }
    .hud-mini-card { height: 200px; }
}

@media (max-width: 768px) {
    .blueprint-split-terminal { padding: 60px 0; }
    .hud-compact-grid { gap: 8px; }
    .hud-mini-card.span-6, .hud-mini-card.span-12 {
        grid-column: span 12;
        height: 180px;
    }
    .faq-accordion-trigger { padding: 20px; }
    .faq-inner-text { padding: 0 20px 20px 48px; font-size: 13px; }
    .faq-question-text { font-size: 13px; }
}

/* ==========================================================================
   BRAND INTEGRATED FOOTER MASTER - NEON MATRIX BLUEPRINT DESIGN
   Property: Royal Inn Eugene - Airport
   Theme: Obsidian Velvet (#0b0f12), Tactical Grid Fill (#11161a), Neon Lime (#76C034)
   ========================================================================== */

.site-estate-footer {
    /* Rich obsidian background blending into an ultra-dark atmospheric deck */
    background: linear-gradient(180deg, #0b0f12 0%, #050709 100%); 
    position: relative;
    padding-top: 80px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(118, 192, 52, 0.08);
}

/* PUZZLE SYSTEM WATERMARK BACKDROP */
.footer-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    font-weight: 900;
    color: rgba(118, 192, 52, 0.006); /* Ultra-low opacity neon blueprint trace text */
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 5;
}

/* --- IDENTITY PLATFORM --- */
.f-logo {
    height: 85px;
    width: auto;
    display: block;
    
    /* Contrast Protection: Generates a soft dark-diffused tech glass field behind the logo */
    background: rgba(17, 22, 26, 0.85);
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid rgba(118, 192, 52, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.f-logo:hover {
    transform: scale(1.03);
    border-color: #76C034; /* Tactical illuminate sequence */
    box-shadow: 0 0 20px rgba(118, 192, 52, 0.25);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

/* --- TYPOGRAPHY & BRAND ACCENTS --- */
.f-heading {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    margin-top: 10px;
}

/* Puzzle Interlocking Component Anchor Line */
.f-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 45px;
    height: 3px;
    background: #76C034; /* Neon Lime signature line indicator */
}

.f-tagline {
    font-family: 'Inter', sans-serif;
    color: #7d878f; /* Desaturated text matching core layout typography */
    line-height: 1.8;
    font-size: 14px;
    margin: 25px 0;
}

/* --- INTERACTIVE NAV ARRAYS --- */
.link-columns { display: flex; gap: 40px; }
.f-list { list-style: none; padding: 0; }
.f-list li { margin-bottom: 14px; }

.f-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.f-list a:hover { 
    color: #76C034; /* Precision Neon Line Shift */
    padding-left: 6px; 
}

.brand-teal-cta {
    color: #76C034 !important; /* Critical action nodes override to signature line color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.f-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 4px; /* Squared to puzzle geometry profiles */
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.4s ease;
    background: rgba(118, 192, 52, 0.02);
}

.f-socials a:hover {
    border-color: #76C034;
    background: #76C034; /* Inversion to solid neon cell */
    color: #0b0f12; /* Flips active icon vector back to core contrast obsidian */
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(118, 192, 52, 0.25);
}

/* --- THE CONCIERGE CHASSIS --- */
.contact-ledger-card {
    background: #11161a; /* Exactly fits structural cell grid background */
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: 3px solid #76C034; /* Tactical Neon Top Plate Anchor Line */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.contact-row { display: flex; gap: 18px; margin-bottom: 22px; }
.contact-row:last-child { margin-bottom: 0; }

.contact-row i { 
    color: #76C034; /* Ledger inline glyph markers map to lime grid points */
    font-size: 15px; 
    margin-top: 4px; 
}

.contact-row p, .contact-row a { 
    
    color: #fdfeff; 
    text-decoration: none; 
    font-size: 18px; 
    line-height: 1.6; 
    transition: color 0.3s;
}

.contact-row a:hover {
    color: #ffffff;
}

/* --- BOTTOM LEGAL BASE ESTATE BAR --- */
.estate-bar {
    background: #050709; /* Deepest structural base anchor floor */
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bar-content .ownership {
    flex: 2;
    line-height: 1.6;
    margin: 0;
}

.bar-content .legal-links {
    flex: 1;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

.bar-content .credit {
    flex: 1;
    text-align: right;
    white-space: nowrap;
    margin: 0;
}

/* Link Interactions */
.legal-links a, .credit a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.legal-links a:hover, .credit a:hover { 
    color: #76C034;
}

.bar-sep { 
    margin: 0 12px; 
    color: #76C034; /* Lime grid separators */
    opacity: 0.4; 
}

/* RESPONSIVE SCALING ADAPTATIONS */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .estate-bar { padding: 40px 0; }
    .bar-content { flex-direction: column; gap: 20px; text-align: center; }
    .bar-content .credit { text-align: center; }
}

/* ==========================================================================
   KINETIC MATRIX BACK TO TOP COMPONENT
   Property: Royal Inn Eugene - Airport
   ========================================================================== */

.mke-back-to-top {
    position: fixed;
    right: 40px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mke-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Vertical Core Calibration Gauge Track */
.mke-gauge-track {
    width: 2px;
    height: 70px;
    background: rgba(118, 192, 52, 0.12); /* Light transparent neon line frame */
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 1px;
}

.site-estate-footer ~ .mke-back-to-top .mke-gauge-track {
    background: rgba(255, 255, 255, 0.08);
}

/* Dynamic Live Gauge Element (Linked to JS Tracker) */
.mke-gauge-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, #76C034, #11161a); /* Pulse theme gradient line track */
    transition: height 0.1s linear;
}

/* Interactive Label Content Stack */
.mke-arrow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mke-top-text {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #76C034;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
}

.site-estate-footer ~ .mke-back-to-top .mke-top-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Core Interface Key Trigger Element */
.mke-icon-box {
    width: 40px;
    height: 40px;
    background: #11161a; /* Structural block background match */
    border: 1px solid rgba(118, 192, 52, 0.25);
    border-radius: 4px; /* Geometric tech-square contour */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mke-icon-box i {
    font-size: 13px;
    color: #76C034; /* Core arrow profile maps to indicator terminal lime */
    transition: transform 0.3s ease;
}

/* --- TELEMETRY MOTION HOVER COUPLINGS --- */
.mke-back-to-top:hover .mke-top-text {
    opacity: 1;
    transform: scale(1);
    color: #76C034 !important;
}

.mke-back-to-top:hover .mke-icon-box {
    background: #76C034;
    border-color: #76C034;
    box-shadow: 0 0 18px rgba(118, 192, 52, 0.45);
    transform: translateY(-4px);
}

.mke-back-to-top:hover .mke-icon-box i {
    color: #0b0f12; /* Inverts glyph to obsidian background for high contrast */
    animation: matrixClimb 0.6s ease-in-out infinite alternate;
}

@keyframes matrixClimb {
    0% { transform: translateY(2px); }
    100% { transform: translateY(-3px); }
}

@media (max-width: 768px) {
    .mke-back-to-top { right: 20px; bottom: 20px; }
    .mke-gauge-track { display: none; }
    .mke-icon-box { 
        width: 38px; 
        height: 38px; 
        background: #11161a; 
        border-color: rgba(118, 192, 52, 0.4); 
    }
}
/* --- UNIVERSAL COOKIE BANNER --- */
.uni-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0a1111; /* Matches the dark section background from the layout */
  border-top: 2px solid #77bc1f; /* Neon/Lime Green accent border */
  z-index: 999999;
  padding: 12px 20px; /* Slim vertical profile */
  box-sizing: border-box;
  display: none; /* Controlled dynamically by JavaScript */
}

.uni-cookie-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.uni-cookie-text {
  color: #ffffff;
  font-family: inherit;
  font-size: 14px; /* Sized down slightly for a sleek profile */
  text-align: center;
  line-height: 1.4;
}

.uni-cookie-link {
  color: #77bc1f; /* Neon/Lime Green Link color to pop on dark background */
  text-decoration: underline;
  margin-left: 2px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.uni-cookie-link:hover {
  color: #ffffff;
}

.uni-cookie-btn {
  background-color: #77bc1f; /* Neon/Lime green button matching layout CTA elements */
  color: #070d0d; /* Crisp dark text for optimal legibility */
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700; /* Bold text for modern layout UI signature */
  cursor: pointer;
  border-radius: 0px; /* Kept sharp/square corners to align with your blocky layout style */
  transition: all 0.2s ease;
}

.uni-cookie-btn:hover {
  background-color: #ffffff;
  color: #070d0d;
}

/* Responsive adjustment for mobile screen breakpoints */
@media (max-width: 600px) {
  .uni-cookie-container {
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
  }
  .uni-cookie-text {
    font-size: 13px;
  }
}

/* ==========================================================================
   GEOMETRIC ASYMMETRIC INNER HERO COMPONENT
   ========================================================================== */

.inner-hero-matrix {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 0 4%;
    box-sizing: border-box;
}

/* LEFT SIDE: Typography Stack */
.inner-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-hero-tagline {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #76C034; /* Accent Logo Lime */
    margin-bottom: 15px;
}

.inner-hero-heading {
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 25px 0;
}

.inner-hero-heading em {
    font-style: normal;
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid #76C034; /* Joint style structural marker accent */
}

/* Geo-anchored physical location reference */
.inner-hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.inner-hero-location i {
    color: #76C034;
    font-size: 14px;
}

.inner-hero-location p {
    margin: 0;
}

/* RIGHT SIDE: Action Interlocking Card */
.inner-hero-action {
    display: flex;
    justify-content: flex-end;
}

.inner-cta-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 340px;
    background: rgba(10, 17, 17, 0.9); /* Dark section color block matching layout background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-top: 4px solid #76C034; /* Lime green box frame line cap */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.inner-cta-label {
    margin: 0 0 5px 0;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Buttons Engine matching your layout rules */
.inner-btn-solid {
    display: block;
    background: #76C034; 
    color: #ffffff;
    padding: 16px 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.inner-btn-solid:hover {
    background: #ffffff;
    color: #070d0d;
}

.inner-btn-wire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.25s ease;
}

.inner-btn-wire:hover {
    color: #76C034;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINT GRID FOR INNER PAGES
   ========================================================================== */
@media (max-width: 991px) {
    .inner-hero-matrix {
        height: auto;
        padding: 80px 0 60px 0;
    }

    .inner-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inner-hero-text {
        align-items: center;
        text-align: center;
    }

    .inner-hero-heading em {
        border-left: none;
        padding-left: 0;
        color: #76C034; /* Highlight alternative strategy for centered copy */
    }

    .inner-hero-action {
        justify-content: center;
    }

    .inner-cta-block {
        max-width: 100%;
    }
}

/* ==========================================================================
   AMENITIES INTEGRATION DECK - INHERITING HOMEPAGE WHITE THEME SYSTEM
   ========================================================================== */
.amenities-matrix-overhaul.matrix-welcome {
    padding: 90px 0;
}

/* CARRIER RESET: Overriding home display grid to single column row flow */
.matrix-container.amenities-layout-carrier {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

/* TWIN HEADER SPLIT ARCHITECTURE */
.amenities-twin-header {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    width: 100%;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.amenities-twin-header .matrix-title {
    /* FLUID TYPOGRAPHY: Scales naturally from a minimum of 36px on mobile to 65px maximum */
    font-size: clamp(36px, 5vw, 65px); 
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111111;
    margin: 0 0 20px 0;
    word-break: break-word; /* Prevents overflow clipping on high zoom rates */
}

.amenities-twin-header .matrix-title span {
    color: #555555;
    font-weight: 400;
}

/* ==========================================================================
   HEADER LEFT HUB - AMENITIES ICON RIBBON ENGINE
   ========================================================================== */
.header-amenities-icon-ribbon {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows wrap containment safely during extreme 200% zoom states */
    gap: clamp(15px, 2.5vw, 25px);
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed rgba(17, 17, 17, 0.15);
    width: 100%;
}

.ribbon-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Uses a highly fluid box layout strategy instead of crushing static widths */
    width: clamp(80px, 10vw, 120px);
    transition: transform 0.2s ease;
}

.ribbon-icon-item:hover {
    transform: translateY(-3px);
}

.ribbon-icon-item i {
    font-size: clamp(28px, 4vw, 44px); /* Scales cleanly across viewports */
    color: #111111;
    background: rgba(118, 192, 52, 0.08);
    width: 100%; /* Adapts fully to fluid parent element tracking bounds */
    aspect-ratio: 1 / 1; /* Maintains flawless pixel balance circles/squares dynamically */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid rgba(18, 18, 18, 0.05);
    transition: all 0.25s ease;
}

.ribbon-icon-item:hover i {
    background: #76C034;
    color: #ffffff;
    border-color: #76C034;
}

.ribbon-icon-item span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.2vw, 15px); /* Responsive typography system protection */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555555;
    text-align: center;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.ribbon-icon-item:hover span {
    color: #111111;
}

.amenities-twin-header .matrix-lead {
    border-left: 3px solid #76C034;
    padding-left: 25px;
    margin-bottom: 0;
}

/* Typography control for the expanded descriptive data stream */
.amenities-twin-header .matrix-lead p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.5vw, 19px); /* Fluid body scaling setup protect mode */
    color: #555555;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.amenities-twin-header .matrix-lead p:last-child {
    margin-bottom: 0;
}

/* RATINGS BADGE UTILITY */
.amenities-rating-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-left: 3px solid #76C034;
    padding: 8px 16px;
}

.badge-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #555555;
    letter-spacing: 1px;
    margin-right: 12px;
}

.badge-score {
    font-size: 12px;
    font-weight: 900;
    color: #76C034;
}

/* POPULAR PILL SEGMENT PANEL */
.amenities-highlights-panel {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-top: 3px solid #76C034;
    padding: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.panel-eyebrow {
    font-size: clamp(20px, 2.5vw, 25px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111111;
    margin: 0 0 25px 0;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight-pill {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    color: #111111;
    padding: 14px 28px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-dot {
    width: 5px;
    height: 5px;
    background: #76C034;
    display: inline-block;
}

/* INTERLOCKING AMENITIES BLOCK BLOCKS SYSTEM */
.amenities-master-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(18, 18, 18, 0.08);
    border: 1px solid rgba(18, 18, 18, 0.08);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.amenities-cat-card {
    background: #ffffff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.25s ease;
}

.amenities-cat-card:hover {
    background: rgba(118, 192, 52, 0.015);
}

.cat-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cat-index {
    font-size: 16px;
    font-weight: 900;
    color: #76C034;
    background: rgba(118, 192, 52, 0.1);
    padding: 3px 7px;
    font-family: monospace;
}

.cat-card-header h4 {
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
    color: #111111;
}

.cat-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    color: #555555;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cat-list li {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 600;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-list li i.fa-square {
    color: #76C034;
    font-size: 7px;
}

.cat-list.raw-list li i.fa-minus {
    color: rgba(18, 18, 18, 0.2);
    font-size: 10px;
}

/* CONSOLE TRIGGER ALIGNMENT CODES */
.amenities-action-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.matrix-console-trigger-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.matrix-console-trigger-link .matrix-trigger-box {
    width: 55px;
    height: 55px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.matrix-console-trigger-link .matrix-trigger-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
    position: relative;
}

.matrix-console-trigger-link .matrix-trigger-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #76C034;
    transition: width 0.25s ease;
}

.matrix-console-trigger-link:hover .matrix-trigger-box {
    background: #76C034;
    transform: rotate(90deg);
}

.matrix-console-trigger-link:hover .matrix-trigger-text::after {
    width: 100%;
}

/* RESPONSIVE LAYOUT ENGINE ENGINE BREAKPOINTS OVERHAUL */
@media (max-width: 1199px) {
    .amenities-master-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    /* Converts split view layout deck into stacked block columns for tablet/iPad */
    .amenities-twin-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .header-amenities-icon-ribbon {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .amenities-matrix-overhaul.matrix-welcome {
        padding: 60px 0;
    }
    .amenities-twin-header {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }
    .header-amenities-icon-ribbon {
        margin-top: 25px;
        padding-top: 20px;
        justify-content: space-between; /* Spreads components symmetrically across modern smartphone UI grids */
    }
    .ribbon-icon-item {
        width: 22%; /* Keeps 4 icons neatly on a single line on mobile layout runs */
    }
    .amenities-highlights-panel {
        padding: 25px;
    }
    .amenities-master-grid {
        grid-template-columns: 1fr;
    }
    .amenities-cat-card {
        padding: 35px 25px;
    }
    .matrix-container.amenities-layout-carrier {
        padding-right: 16px;
        padding-left: 16px;
    }
}
/* --- EDITORIAL INTERACTION CANVAS --- */
.mke-todo-section {
  position: relative;
  padding:30px 0;
  /* SAFE GRID MATRIX EFFECT: Rendered inline directly on the background canvas */
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: top left;
  
}

.mke-todo-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 4%;
}

/* --- HEADER AREA --- */
.mke-todo-intro {
  margin-bottom: 80px;
  max-width: 1280px;
}

.mke-todo-intro h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 25px 0;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mke-todo-intro h2 .primary {
  color: #111111; /* Brand Dark Charcoal */
}

.mke-todo-intro h2 .accent {
  color: #76C034; /* Brand Logo Lime */
  font-weight: 700;
}

.mke-todo-lead {
  font-size: 17.5px;
  line-height: 1.75;
  color: #555555;
  margin: 0;
}

/* --- INTERACTIVE SPLIT WORKSPACE --- */
.mke-todo-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

/* STICKY LEFT SIDE: Frame Frame & Counter Tracking */
.mke-todo-sticky-left {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  height: calc(85vh - 100px);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mke-todo-image-frame {
  position: relative;
  width: 100%;
  height: 82%;
  background-color: #faf9f6;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.mke-todo-img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.mke-todo-img-layer.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.mke-todo-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #111111; /* Charcoal rule */
}

.mke-todo-brand-label {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  color: #76C034; /* Logo Lime Accent */
}

.mke-todo-counter {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  letter-spacing: 1px;
}

/* SCROLLABLE RIGHT SIDE: Luxury Content Blocks */
.mke-todo-scroll-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mke-attraction-card {
  display: block; /* Makes the entire anchor area block-level */
  text-decoration: none; /* Removes the default hyperlink underline */
  background-color: #faf9f6;
  padding: 50px 45px;
  border-left: 0px solid #76C034;
  transition: border-left 0.4s ease, background-color 0.4s ease;
}

/* Focused Interactive State using Royal Inn Palette */
.mke-attraction-card.is-focused,
.mke-attraction-card:hover { /* Added hover state for better user experience */
  border-left: 5px solid #76C034; /* Logo Lime Focus Line */
  background-color: #f4f9ee;     /* Soft Light Lime background card tint */
}

.mke-card-tag {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: #76C034; /* Logo Lime Tag */
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.mke-attraction-card h3 {
  font-size: 26px;
  color: #111111; /* Charcoal Text */
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.mke-attraction-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555555;
  margin: 0;
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports Re-Architected)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-todo-section {
    padding: 60px 0;
  }
  
  .mke-todo-split-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  .mke-todo-sticky-left {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    height: calc(70vh - 100px);
    min-height: 380px;
  }

  .mke-todo-image-frame {
    height: 85%;
  }

  .mke-todo-meta-footer {
    padding: 12px 0;
  }
  
  .mke-todo-scroll-right {
    gap: 30px;
  }
  
  .mke-attraction-card {
    padding: 35px 30px;
  }

  .mke-attraction-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .mke-todo-section {
    padding: 50px 0;
    background-size: 40px 40px; /* Snugger technical matrix lines layout for mobile devices */
  }

  .mke-todo-intro h2 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .mke-todo-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .mke-todo-split-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .mke-todo-sticky-left {
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    width: 100%;
    height: 260px;
    min-height: auto;
    z-index: 10;
    background-color: #ffffff;
    padding-bottom: 15px;
  }

  .mke-todo-image-frame {
    height: 100%;
    border-bottom: 2px solid #76C034; /* Baseline bridge using Logo Lime */
  }

  .mke-todo-meta-footer {
    display: none;
  }

  .mke-todo-scroll-right {
    position: relative;
    z-index: 5;
    gap: 20px;
    padding-top: 25px;
  }

  .mke-attraction-card {
    padding: 30px 20px;
    border-left: 4px solid transparent;
  }

  .mke-attraction-card.is-focused {
    border-left: 4px solid #76C034;
  }

  .mke-attraction-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .mke-attraction-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* --- DEEP SLATE PREMIUM EDITORIAL CATALOG --- */
.mke-catalog-section {
  padding: 40px 0;
  font-family: inherit;
  color: #ffffff;
  
  /* Sticky Background Image Configurations */
  position: relative;
  background-image:linear-gradient(180deg, #0b0f12 0%, #050709c1 100%),
    url('../images/echo-hollow.jpg'); /* Replace with your actual background image file path */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Fallback fix for iOS Safari/Mobile Webkit browsers where fixed attachments glitch */
@supports (-webkit-overflow-scrolling: touch) {
  .mke-catalog-section {
    background-attachment: scroll;
  }
}

.mke-catalog-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 4%;
}

/* --- VERTICAL CONTINUOUS CATALOG WRAP --- */
.mke-catalog-block {
  margin-bottom: 70px;
}

.mke-catalog-block:last-child {
  margin-bottom: 0;
}

/* Category Large Headings */
.mke-catalog-category-title {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: #76C034; /* Branded Logo Lime */
  letter-spacing: 2px;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mke-catalog-category-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 192, 52, 0.4), transparent); /* Logo Lime Gradient */
}

/* Flex Masonry Layout List */
.mke-catalog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px 40px;
  padding-left: 15px;
  border-left: 2px solid rgba(118, 192, 52, 0.2); /* Left-anchored Logo Lime timeline line */
}

/* INDIVIDUAL MINIMAL CARD */
.mke-catalog-item {
  position: relative;
  transition: transform 0.3s ease;
}

.mke-catalog-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #76C034; /* Branded Logo Lime */
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mke-catalog-item:hover {
  transform: translateX(5px);
}

.mke-catalog-item:hover::before {
  opacity: 1;
}

/* Inline Dynamic Metadata Layout Elements */
.mke-item-meta-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.mke-item-distance {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #76C034; /* Branded Logo Lime */
  letter-spacing: 0.5px;
  background: rgba(118, 192, 52, 0.12); /* Balanced background tint */
  padding: 2px 6px;
}

.mke-item-name {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.mke-item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-catalog-section {
    padding: 80px 0;
  }
  
  .mke-catalog-list {
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
  }
}

@media (max-width: 767px) {
  .mke-catalog-section {
    padding: 60px 0;
  }

  .mke-catalog-list {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 10px;
  }
  
  .mke-catalog-item:hover {
    transform: none;
  }

  .mke-catalog-category-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* --- PREMIUM LOCATION CORE CANVAS --- */
.mke-location-section {
 position: relative;
  padding:40px 0;
  /* SAFE GRID MATRIX EFFECT: Rendered inline directly on the background canvas */
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: top left;
}

.mke-location-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}

/* NEW FULL-WIDTH HEADING CLASS */
.mke-location-header {
  width: 100%;
  margin-bottom: 50px;
}

.mke-location-header h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.5px;
}

.mke-location-header h2 .primary {
  color: #111111; /* Brand Dark Charcoal */
}

.mke-location-header h2 .accent {
  color: #76C034; /* Brand Logo Lime */
  font-weight: 700;
}

/* Master Asymmetric Structural Grid (Heading Removed from Here) */
.mke-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start; /* Switched to top alignment for asymmetric aesthetic */
}

/* LEFT COLUMN: Content Spacing */
.mke-location-lead {
  font-size: 16.5px;
  line-height: 1.75;
  color: #555555;
  margin: 0 0 40px 0;
}

/* --- PREMIUM INTERACTIVE DIRECTIONS FORM --- */
.route-form {
  width: 100%;
  max-width: 520px;
}

.route-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.route-form input[type="text"] {
  width: 100%;
  padding: 18px 25px;
  font-size: 15px;
  font-family: inherit;
  color: #111111;
  background-color: #faf9f6;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

.route-form input[type="text"]:focus {
  border-color: #76C034;
  background-color: #ffffff;
}

.route-form input[type="text"]::placeholder {
  color: rgba(17, 17, 17, 0.5);
}

.route-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #111111;
  color: #ffffff;
  border: none;
  padding: 18px 35px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.route-submit-btn svg {
  transition: transform 0.3s ease;
}

.route-submit-btn:hover {
  background-color: #76C034;
  color: #ffffff;
}

.route-submit-btn:hover svg {
  transform: translateX(4px);
}

/* RIGHT COLUMN: Modern Floating Map Card Element */
.mke-location-map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  height: 0;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.mke-location-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-location-section {
    padding: 80px 0;
  }

  .mke-location-header {
    margin-bottom: 35px;
  }

  .mke-location-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .mke-location-map-wrapper {
    padding-bottom: 55%;
  }
}

@media (max-width: 767px) {
  .mke-location-section {
    padding: 60px 0;
  }

  .mke-location-header {
    margin-bottom: 25px;
  }

  .mke-location-header h2 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .mke-location-lead {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 30px;
  }

  .route-form input[type="text"],
  .route-submit-btn {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .mke-location-map-wrapper {
    padding-bottom: 75%;
  }
}

/* --- PREMIUM CONTACT CORE SECTION --- */
.mke-contact-section {
  position: relative;
  padding: 40px 0;
  /* SAFE GRID MATRIX EFFECT: Rendered inline directly on the background canvas */
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: top left;
  font-family: inherit;
}

.mke-contact-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Main Split Grid Workspace */
.mke-contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: start;
}

/* LEFT SIDE: Narrative Information Hub */
.mke-contact-info h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 30px 0;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mke-contact-info h2 .primary {
  color: #111111; /* Brand Dark Charcoal */
}

.mke-contact-info h2 .accent {
  color: #76C034; /* Brand Logo Lime */
  font-weight: 700;
}

.mke-contact-desc {
  font-size: 17.5px;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

/* RIGHT SIDE: Luxury Content Information Cards */
.mke-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mke-meta-card {
  background-color: #faf9f6;
  padding: 40px 45px;
  border-left: 4px solid #111111; /* Brand Dark Charcoal Line */
  transition: border-left-color 0.3s ease;
}

.mke-meta-card.accent-card {
  border-left-color: #76C034; /* Brand Logo Lime Line */
}

.mke-meta-card label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #76C034; /* Brand Logo Lime */
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.mke-meta-card address {
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  color: #111111; /* Brand Dark Charcoal */
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mke-contact-link {
  font-size: 24px;
  font-weight: 800;
  color: #111111; /* Brand Dark Charcoal */
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.mke-contact-link:hover {
  color: #76C034; /* Hover to Logo Lime */
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-contact-section {
    padding: 80px 0;
  }

  .mke-contact-split {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .mke-meta-card {
    padding: 35px 35px;
  }
}

@media (max-width: 767px) {
  .mke-contact-section {
    padding: 60px 0;
    background-size: 40px 40px; /* Tighter matrix pattern structure on small mobile displays */
  }

  .mke-contact-info h2 {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .mke-contact-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .mke-meta-card {
    padding: 30px 25px;
  }

  .mke-meta-card address {
    font-size: 17px;
  }

  .mke-contact-link {
    font-size: 20px;
  }
}

/* --- PREMIUM SITEMAP CORE SECTION --- */
.mke-sitemap-section {
  position: relative;
  padding: 40px 0;
  /* SAFE GRID MATRIX EFFECT: Rendered inline directly on the background canvas */
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: top left;
  font-family: inherit;
}

.mke-sitemap-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}

/* --- EDITORIAL HEADER --- */
.mke-sitemap-header {
  margin-bottom: 60px;
  max-width: 1280px;
}

.mke-sitemap-header h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.mke-sitemap-header h2 .primary {
  color: #111111; /* Brand Dark Charcoal */
  display: block;
}

.mke-sitemap-header h2 .accent {
  color: #76C034; /* Brand Logo Lime */
  font-weight: 700;
  display: block;
}

.mke-sitemap-desc {
  font-size: 18px;
  line-height: 1.75;
  color: #555555;
  margin: 0;
}

/* --- THE INDEX GRID MATRIX --- */
.mke-sitemap-matrix {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.15); /* Soft Charcoal Top Border */
  padding-top: 40px;
}

.mke-sitemap-matrix li {
  position: relative;
}

.mke-sitemap-matrix li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  background-color: #faf9f6;
  color: #111111; /* Brand Dark Charcoal Text */
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-left: 0px solid #76C034; /* Initial hidden state for Logo Lime Line */
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Luxury Interactive Hover State */
.mke-sitemap-matrix li a:hover {
  background-color: #111111; /* Swaps to Dark Charcoal Canvas */
  color: #ffffff;
  border-left: 4px solid #76C034; /* Reveals Logo Lime Left Border Accent */
  padding-left: 30px;
}

/* Micro-indicator Arrow Icon inside links */
.mke-sitemap-matrix li a::after {
  content: "→";
  font-size: 16px;
  font-weight: 300;
  color: #76C034; /* Logo Lime Default Arrow Tint */
  transition: transform 0.3s ease, color 0.3s ease;
}

.mke-sitemap-matrix li a:hover::after {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-sitemap-section {
    padding: 80px 0;
  }
  
  .mke-sitemap-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .mke-sitemap-section {
    padding: 60px 0;
    background-size: 40px 40px; /* Tighter matrix pattern structure on small mobile displays */
  }

  .mke-sitemap-header h2 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .mke-sitemap-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .mke-sitemap-matrix {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 30px;
  }

  .mke-sitemap-matrix li a {
    padding: 18px 20px;
    font-size: 15px;
  }
}

/* --- MODERN ASYMMETRIC EDITORIAL FAQ --- */
.mke-faq-section {
  position: relative;
  padding: 40px 0;
  /* SAFE GRID MATRIX EFFECT: Rendered inline directly on the background canvas */
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: top left;
  font-family: inherit;
  color: #111111; /* Brand Dark Charcoal Text */
}

.mke-faq-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 4%;
}

/* Master Grid Structure */
.mke-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

/* LEFT SIDE: Clean Sticky Branding Block */
.mke-faq-sticky-side {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.mke-faq-sticky-side h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.mke-faq-sticky-side h2 .primary {
  color: #111111; /* Brand Dark Charcoal */
  display: block;
}

.mke-faq-sticky-side h2 .accent {
  color: #76C034; /* Brand Logo Lime */
  font-weight: 700;
  display: block;
}

.mke-faq-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #76C034; /* Brand Logo Lime */
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}

/* RIGHT SIDE: Smooth Flowing Q&A Index */
.mke-faq-index-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mke-faq-row {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1); /* Soft Dark Charcoal Border */
  padding-bottom: 50px;
  transition: border-color 0.3s ease;
}

.mke-faq-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mke-faq-row:hover {
  border-color: #76C034; /* Border transforms to Logo Lime on row hover */
}

.mke-faq-question {
  font-size: 20px;
  font-weight: 800;
  color: #111111; /* Brand Dark Charcoal */
  margin: 0 0 20px 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
  position: relative;
}

.mke-faq-answer {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

/* Premium Link Typographic Treatment */
.mke-faq-answer a {
  color: #111111; /* Brand Dark Charcoal */
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.mke-faq-answer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #76C034; /* Sliding Anchor Line in Logo Lime */
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mke-faq-answer a:hover {
  color: #76C034; /* Text turns to Logo Lime */
}

.mke-faq-answer a:hover::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Responsive Adaptations (Tablets & Mobile Viewports)
   ========================================================================== */
@media (max-width: 1024px) {
  .mke-faq-section {
    padding: 80px 0;
  }

  .mke-faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mke-faq-sticky-side {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .mke-faq-section {
    padding: 60px 0;
    background-size: 40px 40px; /* Tighter matrix pattern structure on small mobile displays */
  }

  .mke-faq-index-stack {
    gap: 40px;
  }

  .mke-faq-row {
    padding-bottom: 35px;
  }

  .mke-faq-question {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .mke-faq-answer {
    font-size: 14.5px;
    line-height: 1.7;
  }
}
/* =====================================================
   ROYAL INN - PREMIUM RESERVATION SECTION
   MATRIX TECH BACKGROUND THEME
===================================================== */


.below-section {

    position: relative;
    padding: 28px 0;

    background: #0b0d0c;

    text-align: center;

    overflow: hidden;

    z-index: 2;

}



/* =====================================================
   MATRIX GRID BACKGROUND
===================================================== */

.below-section::before {

    content:"";

    position:absolute;

    inset:0;


    background-image:

        linear-gradient(
            rgba(120,214,59,0.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(120,214,59,0.06) 1px,
            transparent 1px
        );


    background-size:60px 60px;

    background-position:top left;


    mask-image:linear-gradient(
        to bottom,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );


    -webkit-mask-image:linear-gradient(
        to bottom,
        transparent,
        #000 8%,
        #000 92%,
        transparent
    );


    pointer-events:none;

    z-index:0;

}



/* =====================================================
   LARGE GEOMETRIC SHAPE
===================================================== */

.below-section::after {


    content:"";


    position:absolute;


    top:5%;

    right:-5%;


    width:40%;

    height:90%;


    background:#111111;


    clip-path:polygon(
        30% 0%,
        100% 0%,
        100% 100%,
        0% 100%
    );


    opacity:0.04;


    pointer-events:none;


    z-index:0;

}





/* =====================================================
   RESERVATION WRAPPER
===================================================== */


.reservation-box {

    position:relative;

    z-index:2;

    display:flex;

    justify-content:center;

    width:100%;

}





/* =====================================================
   GLASS RESERVATION CONTAINER
===================================================== */


.reservation-container {


    width:92%;

    max-width:1220px;


    background:

    linear-gradient(
        135deg,
        rgba(25,29,27,0.96),
        rgba(12,14,13,0.97)
    );


    border:1px solid rgba(120,214,59,0.35);


    box-shadow:

    0 20px 50px rgba(0,0,0,0.65),

    inset 0 0 30px rgba(120,214,59,0.04);


    backdrop-filter:blur(8px);


    overflow:hidden;

}






.reservation-container form {

    width:100%;

}





/* =====================================================
   FLEX LAYOUT
===================================================== */


.res-flex {


    display:flex;

    align-items:stretch;

    width:100%;


}





/* =====================================================
   RESERVATION ITEMS
===================================================== */


.res-item {


    flex:1;


    padding:22px 24px;


    text-align:left;


    background:

    rgba(22,25,24,0.75);


    border-right:

    1px solid rgba(255,255,255,0.08);


}




.res-item.small {


    flex:0.6;

    min-width:115px;


    text-align:center;


}







/* =====================================================
   LABELS
===================================================== */


.res-item label {


    display:block;


    margin-bottom:9px;


    font-size:11px;


    color:#78d63c;


    font-weight:800;


    letter-spacing:1.5px;


    text-transform:uppercase;


}







/* =====================================================
   INPUT AREA
===================================================== */


.res-content {


    display:flex;


    align-items:center;


    justify-content:space-between;


}



.res-content.center {


    justify-content:center;


}





.res-input,
.res-select {


    width:100%;


    background:transparent;


    border:none;


    outline:none;


    color:#ffffff;


    font-size:18px;


    font-weight:700;


    cursor:pointer;


}





.res-input::placeholder {


    color:#b7b7b7;


}





.res-select {


    text-align:center;


    appearance:none;


}





.res-select option {


    color:#111;


}







/* =====================================================
   CALENDAR ICON
===================================================== */


.calendar-icon {


    color:#78d63c;


    font-size:18px;


    margin-left:12px;


    cursor:pointer;


    transition:0.3s;


}



.calendar-icon:hover {


    color:#ffffff;


}







/* =====================================================
   CHECK AVAILABILITY BUTTON
===================================================== */


.res-button {


    min-width:240px;


    background:#78d63c;


    display:flex;


    align-items:center;


    justify-content:center;


    transition:0.3s;


}





.res-button button {


    width:100%;


    height:100%;


    border:none;


    background:transparent;


    color:#111;


    font-size:13px;


    font-weight:900;


    letter-spacing:1.2px;


    text-transform:uppercase;


    cursor:pointer;


}





.res-button:hover {


    background:#ffffff;


}





.res-button:hover button {


    color:#111;


}








/* =====================================================
   DATE PICKER THEME
===================================================== */


.ui-datepicker {


    z-index:99999!important;


    background:#141716;


    border:

    1px solid #78d63c;


    color:white;


    box-shadow:

    0 15px 40px rgba(0,0,0,.5);


}





.ui-datepicker-header {


    background:#78d63c;


    color:#111;


    border:none;


}





.ui-datepicker-calendar th {


    color:#78d63c;


}





.ui-datepicker .ui-state-default {


    background:#202321;


    border:

    1px solid rgba(255,255,255,.08);


    color:white;


}





.ui-datepicker .ui-state-hover,

.ui-datepicker .ui-state-active {


    background:#78d63c;


    color:#111;


}








/* =====================================================
   MOBILE RESPONSIVE
===================================================== */


@media(max-width:992px){


    .res-flex {


        flex-direction:column;


    }



    .reservation-container {


        width:94%;


    }



    .res-item {


        border-right:none;


        border-bottom:

        1px solid rgba(255,255,255,.08);


        padding:16px 18px;


    }



    .res-item.small {


        width:100%;


        text-align:left;


    }




    .res-content.center {


        justify-content:flex-start;


    }



    .res-select {


        text-align:left;


    }



    .res-button {


        width:100%;


        min-width:auto;


    }



    .res-button button {


        padding:18px 20px;


    }



}





@media(max-width:480px){


    .res-input,
    .res-select {


        font-size:16px;


    }


    .res-item label {


        font-size:10px;


    }


}