﻿@import url('https://fonts.googleapis.com/css2?family=Yellowtail&family=Alfa+Slab+One&family=Montserrat:wght@400;700&display=swap');
/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Inter is the 'Gold Standard' for modern UI readability */
 font-family: 'Montserrat', sans-serif; 
  /* Solid brand background or a very subtle clean gradient */
  background: #000; 
  color: #333;
  line-height: 1.6;
}

/* Headings: Using Montserrat to match the 'Clarion' logo weight */
h1, h2, h3, h4 {
  
  font-weight: 800; /* Extra bold for a premium feel */
  color: #003859;   /* Your Logo Navy */
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Subtle accent for sub-headings or labels */
.sub-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #00ACC1;   /* Your Logo Cyan */
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Buttons: Matching the 'e' icon's roundness */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  background-color: #00ACC1;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 50px; /* Pill shape for modern look */
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
}

.btn-primary:hover {
  background-color: #003859;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 89, 0.4);
}

/* ==========================================================================
   AERO-GLIDE V4 - FULL ARCHITECTURAL HEADER
   Property: Clarion Pointe Milwaukee Airport
   Colors: Navy (#003859), Cyan (#00ACC1)
   ========================================================================== 
*/


/* 1. CORE WRAPPER & CONTAINER */
.aero-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding-top: 10px;
}

.aero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 2. TOP UTILITY BAR */
.aero-top-bar {
    padding: 10px 0;
    border-bottom: 1px solid rgba(245, 232, 199, 0.2); /* Cream transparent border */
}

.aero-top-bar .aero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aero-info { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}

/* Status Indicator (Updated to Logo Red/Cream) */
.status-indicator {
    display: flex;
    align-items: center;
    background: rgba(166, 11, 18, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(166, 11, 18, 0.3);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #A60B12; /* Logo Crimson */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px #A60B12;
    animation: pulse-cp 2.5s infinite;
}

@keyframes pulse-cp { 
    0% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.3; transform: scale(1.3); } 
    100% { opacity: 1; transform: scale(1); } 
}

.status-text { 
    color: #F5E8C7; /* Logo Cream */
    
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.aero-address a { 
    color: #F5E8C7; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 400; 
    transition: 0.3s;
}

.aero-address a:hover { 
    color: #A60B12; 
}

.aero-socials { 
    display: flex; 
    gap: 18px; 
}

.aero-socials a { 
    color: #F5E8C7; 
    font-size: 15px; 
    opacity: 0.7; 
    transition: all 0.3s ease; 
}

.aero-socials a:hover { 
    opacity: 1; 
    color: #A60B12; 
    transform: translateY(-2px);
}

/* 3. MAIN NAVIGATION WING (ASYMMETRIC DESIGN) */
.aero-main-nav {
    margin: 15px 20px;
    background: #ffffff;
    border: 2px solid #F5E8C7; /* Logo Frame Ivory */
    border-radius: 100px 100px 100px 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    transition: all 0.4s ease;
}

.wing-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aero-logo img { 
    height: 60px; 
    width: auto; 
    display: block;
    margin-left: 10px;
}

/* Navigation Links (Stacked Reveal Effect) */
.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 38px; 
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #222222; /* Charcoal */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    height: 20px;
    display: block;
    position: relative;
}

.nav-list a span { 
    display: block; 
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1); 
}

.nav-list a::after {
    content: attr(data-hover);
    display: block;
    color: #A60B12; /* Logo Crimson on Hover */
    /* Script touch on hover */
    text-transform: capitalize;
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-list a:hover span { transform: translateY(-100%); }
.nav-list a:hover::after { transform: translateY(-100%); }

/* 4. ACTION HUB */
.aero-actions { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
    padding-right: 15px;
}

.aero-contact-stack { 
    display: flex; 
    flex-direction: column; 
    text-align: right; 
}

.aero-contact-stack .label { 
    
    font-size: 8px; 
    color: #A60B12; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.aero-contact-stack a { 
    color: #222222; 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 15px; 
}

/* Unique Book Button (Matching the Logo Shield) */
.aero-book-btn {
    background: #A60B12; /* Primary Red */
    color: #F5E8C7; /* Cream Text */
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 4px; /* Squared-off like the logo shield corners */
    border: 2px solid #F5E8C7;
    
    font-size: 11px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(166, 11, 18, 0.25);
}

.aero-book-btn:hover { 
    background: #222222; 
    border-color: #A60B12;
    color: #ffffff;
    transform: translateY(-2px); 
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* 5. MOBILE & RESPONSIVE */
.aero-mobile-trigger { 
    display: none; 
    background: none; 
    border: none; 
    flex-direction: column; 
    gap: 7px; 
    cursor: pointer;
    padding: 10px;
    margin-right: 15px;
}

.aero-mobile-trigger span { 
    width: 30px; 
    height: 3px; 
    background: #A60B12; 
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .aero-top-bar, 
    .aero-menu-desktop, 
    .aero-contact-stack, 
    .aero-actions { 
        display: none !important; 
    }

    .aero-mobile-trigger { 
        display: flex; 
    }

    .aero-main-nav { 
        border-radius: 50px; 
        margin: 10px 15px; 
    }
}
/* --- AERO-SPLIT MOBILE MENU V5 (Valu Inn Sea Tac Edition) --- */
.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #A60B12; /* Logo Crimson Base */
    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 (Ivory/Cream) */
.menu-blade-left {
    background: #F5E8C7; /* Logo Cream */
    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);
    border-right: 2px solid #A60B12;
}

.aero-mobile-overlay.active .menu-blade-left { transform: translateX(0); }

.blade-logo { width: 180px; margin-bottom: 40px; }

.blade-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A60B12; /* Logo Red */
    
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 18px;
    color: #222; /* Charcoal */
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.blade-phone:hover {
    color: #A60B12;
}

.license-line {
    font-size: 12px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid rgba(166, 11, 18, 0.2);
    padding-top: 20px;
}

.blade-legal { font-size: 11px; font-family: 'Montserrat', sans-serif; }
.blade-legal a { color: #A60B12; text-decoration: none; font-weight: 700; }
.blade-legal .sep { margin: 0 8px; color: rgba(0,0,0,0.1); }

/* RIGHT SIDE: Navigation Panel (Crimson) */
.menu-blade-right {
    background: #A60B12;
    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 */
.aero-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #F5E8C7; /* Cream Close Button */
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.close-text { font-size: 12px; letter-spacing: 3px; font-weight: 800;  }
.close-icon { font-size: 40px; font-weight: 200; line-height: 1; }

/* Nav V5 Typography */
.mobile-nav-v5 { display: flex; flex-direction: column; gap: 30px; }

.mobile-nav-v5 a {
    color: #F5E8C7; /* Cream Text */
    text-decoration: none;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 400;
    /* Logo Script Style */
    position: relative;
    padding-left: 50px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(245, 232, 199, 0.5);
    
}

.mobile-nav-v5 a:hover {
    padding-left: 70px;
    color: #fff;
    transform: skewX(-5deg);
}

/* RESPONSIVE STACKING FOR MOBILE */
@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%); border-right: none; border-top: 5px solid #F5E8C7; }
    .menu-blade-right { order: 1; padding: 80px 30px 40px; transform: translateY(-100%); }
    .aero-mobile-overlay.active .menu-blade-left,
    .aero-mobile-overlay.active .menu-blade-right { transform: translateY(0); }
    .blade-logo { width: 140px; }
}


/* --- VALU INN STICKY POD (BRANDED REFINEMENT) --- */
.aero-sticky-pod {
    position: fixed;
    top: 25px; 
    left: 50%;
    transform: translateX(-50%) translateY(-160%); /* Hidden state */
    z-index: 9000;
    width: 92%;
    max-width: 1100px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

/* State: User scrolls UP */
.aero-sticky-pod.reveal-up {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* State: User scrolls DOWN / Inactive */
.aero-sticky-pod.hide-away {
    transform: translateX(-50%) translateY(-160%);
    opacity: 0;
}

.pod-wrapper {
    background: rgba(255, 255, 255, 0.98); /* Clean White for contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #F5E8C7; /* Logo Ivory Frame */
    border-bottom: 3px solid #A60B12; /* Brand Crimson Base */
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(166, 11, 18, 0.12);
}

/* Left Logo Area */
.pod-logo-area {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(166, 11, 18, 0.1);
    padding-right: 25px;
}

.pod-logo {
    height: 38px;
    width: auto;
    display: block;
}

/* Center Nav */
.pod-nav { 
    display: flex; 
    gap: 35px; 
}

.pod-nav a {
    text-decoration: none;
    color: #222222; /* Charcoal */
    font-weight: 800; /* Heavier weight to match 'SEA TAC' */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.pod-nav a:hover {
    color: #A60B12; /* Brand Crimson */
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* Right Actions */
.pod-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.pod-icon-link { 
    color: #A60B12; 
    font-size: 16px; 
    transition: 0.3s; 
}

.pod-icon-link:hover { 
    color: #222222; 
    transform: scale(1.1);
}

.pod-book-btn {
    background: #A60B12; /* Brand Crimson */
    color: #F5E8C7;    /* Logo Ivory Text */
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.pod-book-btn:hover { 
    background: #222222; /* Charcoal on hover */
    color: #ffffff;
    border-color: #A60B12;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Hamburger (Dots) - Crimson Style */
.pod-trigger {
    display: none; 
    background: #F5E8C7; /* Ivory background */
    border: 2px solid #A60B12; 
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.dots span { 
    width: 5px; 
    height: 5px; 
    background: #A60B12; /* Crimson Dots */
    border-radius: 50%; 
}

.pod-trigger:hover {
    background: #A60B12;
}

.pod-trigger:hover .dots span {
    background: #F5E8C7; /* Dots turn Ivory on hover */
}

/* --- MOBILE/IPAD VISIBILITY --- */
@media (max-width: 991px) {
    .pod-trigger { 
        display: flex; 
    }
    
    .pod-nav { 
        display: none; 
    }
    
    .pod-wrapper {
        padding-right: 15px; 
    }
}

/* --- SECTION BASE --- */
.expert-hero {
    position: relative;
    width: 100%;
    height: 110vh;
    /* LIGHTENED: Swapped deep charcoal for your signature Stone Grey */
    background: #7d726d; 
    overflow: hidden;
}

/* --- SLIDE POSITIONING --- */
.ex-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: visibility 0s 1.2s, opacity 0s 1.2s;
}

.ex-slide.active {
    visibility: visible;
    opacity: 1;
    z-index: 10;
    transition: none;
}

/* --- BACKGROUND IMAGES --- */
.ex-bg-wrap {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.ex-slide.active .ex-bg-wrap {
    clip-path: inset(0 0 0 0);
}

.ex-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* LIGHTENED: Increased brightness from 0.3 to 0.6 for a fresher look */
    filter: brightness(0.6) contrast(1.05); 
    transform: scale(1.1);
    transition: transform 10s linear;
}

.ex-slide.active .ex-img-bg {
    transform: scale(1);
}

/* --- OVERLAY FRAME (The Branded Shield) --- */
.ex-overlay-frame {
    position: absolute;
    top: 55%;
    right: 8%;
    width: 28vw;
    height: 38vw;
    max-height: 520px;
    z-index: 15;
    border: 3px solid #F5E8C7; 
    padding: 10px;
    /* ADJUSTED: Lighter, more transparent Crimson glass for a modern feel */
    background: rgba(166, 11, 18, 0.65); 
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(-40%) translateX(50px);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, opacity 1s ease 0.6s;
}

.ex-slide.active .ex-overlay-frame {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.ex-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CONTENT ALIGNMENT --- */
.ex-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
}

.ex-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

.ex-text-wrap {
    max-width: 650px;
    padding-top: 60px;
}

/* --- TYPOGRAPHY --- */
.ex-subtitle {
    display: block;
    /* Swapped to pure White for high visibility on the lighter background */
    color: #ffffff; 
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    text-transform: uppercase;
}

.ex-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 5.5vw, 6rem);
    color: #F5E8C7; /* Logo Ivory stands out beautifully on Stone Grey */
    line-height: 1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ex-title span { 
    /* Brighter Red for the script touch to keep it from looking dull */
    color: #ff3b3b; 
    font-weight: 400; 
    font-size: 1.1em;
}

.ex-desc {
    /* Ivory with higher opacity for crisp reading */
    color: rgba(255, 255, 255, 0.95); 
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
}

.ex-slide.active .ex-subtitle,
.ex-slide.active .ex-title,
.ex-slide.active .ex-desc {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.ex-slide.active .ex-subtitle { transition-delay: 0.7s; }
.ex-slide.active .ex-title { transition-delay: 0.8s; }
.ex-slide.active .ex-desc { transition-delay: 0.9s; }

/* --- BUTTONS --- */
.ex-cta {
    display: flex;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transition: opacity 1s ease 1.1s;
}

.ex-slide.active .ex-cta { opacity: 1; }

.ex-btn-main {
    background: #A60B12; 
    color: #ffffff; 
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 11px;
    transition: 0.4s;
    border: 2px solid #A60B12;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(166, 11, 18, 0.3);
}

.ex-btn-main:hover { 
    background: #ffffff; 
    color: #A60B12; 
    border-color: #ffffff; 
}

.ex-btn-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ex-btn-link:hover { color: #F5E8C7; }

/* --- CONTROLS --- */
.ex-controls {
    position: absolute;
    bottom: 50px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 100;
}

.ex-nav-nums { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    color: #F5E8C7; 
    font-size: 14px; 
    font-weight: 700;
}

.num-progress { width: 100px; height: 2px; background: rgba(255,255,255,0.2); position: relative; }
.num-bar { position: absolute; left: 0; top: 0; height: 100%; width: 25%; background: #A60B12; transition: 0.8s; }

.ex-arrow-btn {
    width: 50px; height: 50px;
    border: 2px solid #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.ex-arrow-btn:hover { 
    background: #A60B12; 
    border-color: #A60B12; 
}
/* ============================================================
   2. IPAD / TABLET OVERRIDES (992px to 1024px)
   ============================================================ */
@media (max-width: 1024px) {
	.expert-hero {
   
    height: 80vh;
   
}
    .ex-overlay-frame {
        width: 35vw;
        height: 45vw;
        right: 4%;
    }
    
    .ex-text-wrap {
        max-width: 500px;
    }

    .ex-title {
        font-size: 3.5rem;
    }
}

/* ============================================================
   3. MOBILE & SMALL TABLET (UP TO 991px)
   ============================================================ */
@media (max-width: 991px) {
	
    .ex-overlay-frame {
        display: none; /* Hide frame to focus on text and background */
    }

    .ex-content-wrapper {
        align-items: flex-end; /* Push text toward bottom-middle */
        padding-bottom: 120px;
    }

    .ex-text-wrap {
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .ex-desc {
        margin: 0 auto 35px;
        font-size: 16px;
    }

    .ex-cta {
        justify-content: center;
    }

    .ex-controls {
        left: 50%;
        transform: translateX(-50%); /* Center controls */
        bottom: 30px;
        width: 90%;
        justify-content: center;
    }
    
    .ex-title {
        font-size: 2.8rem;
    }
}

/* ============================================================
   4. SMALL MOBILE (UP TO 480px)
   ============================================================ */
@media (max-width: 480px) {
    .ex-title {
        font-size: 2.2rem;
    }

    .ex-subtitle {
        letter-spacing: 3px;
    }

    .ex-cta {
        flex-direction: column; /* Stack buttons for easy tapping */
        gap: 15px;
    }

    .ex-btn-main {
        width: 100%;
        text-align: center;
    }

    .ex-nav-nums {
        display: none; /* Simplify UI for tiny screens */
    }
}


/* --- SECTION WRAPPER --- */
.expert-welcome {
    position: relative;
    padding: 40px 0;
    background: #fdfaf5; /* Subtle Warm White/Ivory Base */
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Background Texture Decor */
.ew-bg-accent {
    position: absolute;
    top: 10%; right: -5%;
    width: 40%; height: 80%;
    background: #f5f2ed; /* Deeper Ivory tone */
    z-index: 1;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.ew-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- LEFT SIDE: MEDIA --- */
.ew-media-group {
    flex: 1.2;
    position: relative;
}

.ew-image-canvas {
    position: relative;
    height: 650px;
    width: 80%;
    z-index: 5;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    cursor: pointer;
    left: 50px;
    border-radius: 4px;
}

.ew-main-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ew-image-canvas:hover .ew-main-img { transform: scale(1.08); }

.ew-outline-frame {
    position: absolute;
    bottom: -30px; left: 3%;
    width: 85%; height: 100%;
    border: 3px solid #A60B12; /* Brand Crimson Frame */
    z-index: 2;
}

/* Play Button Styling */
.ew-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(166, 11, 18, 0.25); /* Tinted Crimson Overlay */
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.5s;
}

.ew-image-canvas:hover .ew-play-overlay { opacity: 1; }

.ew-play-btn { text-align: center; color: #fff; }
.play-icon-wrap {
    width: 85px; height: 85px;
    background: #F5E8C7; color: #A60B12; /* Ivory and Crimson */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; font-size: 22px;
    box-shadow: 0 10px 30px rgba(166, 11, 18, 0.3);
}

/* --- RIGHT SIDE: CONTENT CARD --- */
.ew-content-group {
    flex: 1;
    margin-left: -100px; 
}

.ew-text-card {
    background: #fff;
    padding: 85px 75px;
    box-shadow: 30px 40px 100px rgba(34, 34, 34, 0.08);
    border-bottom: 4px solid #A60B12; /* Brand Anchor */
}

.ew-eyebrow {
    font-size: 12px; font-weight: 800; letter-spacing: 5px; color: #A60B12;
    display: block; margin-bottom: 25px; text-align: left;
    text-transform: uppercase;
}

.ew-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #222222; /* Charcoal */
    line-height: 1.1; margin-bottom: 30px;
    text-transform: uppercase;
}

.ew-title span { color: #A60B12; }

.ew-lead { font-size: 20px; font-weight: 600; color: #222222; margin-bottom: 25px; line-height: 1.5; }

/* SCROLLER UPDATES FOR THE PARAGRAPH */
.ew-para { 
    font-size: 16px; 
    color: #555; 
    line-height: 1.8; 
    margin-bottom: 45px; 
    max-height: 280px;        /* Controls the visibility height before scrolling */
    overflow-y: auto;         /* Triggers vertical scrollbar when content overflows */
    padding-right: 20px;      /* Prevents text from crowding the scrollbar */
}

/* Custom modern scrollbar design for WebKit browsers (Chrome, Safari, Edge) */
.ew-para::-webkit-scrollbar {
    width: 6px;
}

.ew-para::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.ew-para::-webkit-scrollbar-thumb {
    background: #A60B12;      /* Matches your red brand color */
    border-radius: 10px;
}

.ew-para::-webkit-scrollbar-thumb:hover {
    background: #82080e;      /* Slightly darker red on hover */
}
/* Discovery Button */
.ew-btn-discover {
    background: none; border: none; display: flex; align-items: center;
    gap: 20px; cursor: pointer; padding: 0;
}

.btn-circle {
    width: 65px; height: 65px; border: 2px solid #A60B12; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.4s; color: #A60B12;
}

.btn-text {
    font-weight: 800; font-size: 12px; letter-spacing: 2px; color: #222222;
}
.btn-text1 {
    font-weight: 800; font-size: 12px; letter-spacing: 2px; color: #fff;
}

.ew-btn-discover:hover .btn-circle { background: #A60B12; color: #F5E8C7; }
.ew-btn-discover:hover .btn-text { color: #A60B12; }

/* --- DEPTH PANEL --- */
.ew-depth-panel {
    position: fixed; 
    inset: 0; 
    background: #1a1a1a; /* Dark sleek base */
    z-index: 999;
    display: flex; 
    align-items: center;
    justify-content: center;
    transform: translateX(100%); 
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
    padding: 40px 20px;
}

.ew-depth-panel.active { 
    transform: translateX(0); 
}

.ew-panel-close {
    position: absolute; 
    top: 40px; 
    right: 60px; 
    background: none; 
    border: 1px solid #F5E8C7;
    color: #F5E8C7; 
    padding: 14px 30px; 
    cursor: pointer;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.ew-panel-close:hover {
    background: #A60B12;
    border-color: #A60B12;
    color: #fff;
}

/* --- NEW TWO-COLUMN ABOUT US FLEX LAYOUT --- */
.ew-about-panel-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ew-panel-header-column {
    flex: 0 0 35%;
    text-align: left;
}

.panel-main-title { 
    color: #F5E8C7; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px; 
    text-transform: uppercase;
}

.panel-main-title span { 
    color: #A60B12; 
}

.ew-panel-accent-line {
    width: 60px;
    height: 4px;
    background: #A60B12;
}

/* --- TEXT AREA WITH INTEGRATED SCROLLER --- */
.ew-about-story-column {
    flex: 0 0 65%;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 30px;
}

.ew-about-story-column p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.ew-about-story-column p:last-child {
    margin-bottom: 0;
}

/* Custom Scrollbar for the text box inside the dark panel */
.ew-about-story-column::-webkit-scrollbar {
    width: 5px;
}
.ew-about-story-column::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.ew-about-story-column::-webkit-scrollbar-thumb {
    background: #A60B12;
    border-radius: 10px;
}

/* ==========================================================================
   PRODUCTION REFIX: IPAD, TABLET & MOBILE MEDIA QUERIES
   ========================================================================== */

/* iPad Pro / Large Tablets (Under 1024px) */
@media (max-width: 1024px) {
    .ew-depth-panel {
        padding: 140px 40px 40px 40px; /* Protects space around header components */
    }
    .ew-about-panel-layout {
        gap: 40px;
    }
    .ew-panel-header-column {
        flex: 0 0 40%;
    }
    .ew-about-story-column {
        flex: 0 0 60%;
        max-height: 65vh;
    }
}

/* iPads & Standard Mobile Layouts (Under 991px) */
@media (max-width: 991px) {
    .ew-depth-panel {
        align-items: flex-start;  /* Allows elements to scroll downward layout-wise */
        overflow-y: auto;         /* Full overlay container now acts as the scrollbox */
        padding: 120px 30px 50px 30px;
        display: block;           /* Switches away from center flex to allow native scroll */
    }
    
    .ew-panel-close {
        position: fixed;          /* Keeps button cleanly pinned to top-right when scrolling */
        top: 25px;
        right: 25px;
        padding: 10px 22px;
        font-size: 11px;
        background-color: #1a1a1a; /* solid background matches backdrop so text won't leak under it */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .ew-about-panel-layout {
        flex-direction: column;   /* Completely stack text items vertically */
        gap: 20px;
        width: 100%;
    }
    
    .ew-panel-header-column, 
    .ew-about-story-column {
        flex: none;
        width: 100%;
    }
    
    .ew-panel-header-column {
        margin-bottom: 10px;
    }

    .panel-main-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    /* FIX FOR CUT-OFF TEXT: Remove the restrictive inner height constraint completely */
    .ew-about-story-column {
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 0;
    }
    
    .ew-about-story-column p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: #e0e0e0;
    }
}

/* Small Smartphone Viewports (Under 600px) */
@media (max-width: 600px) {
    .ew-depth-panel {
        padding: 100px 20px 40px 20px;
    }
    
    .ew-panel-close {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .panel-main-title {
        font-size: 2.2rem;
    }
    
    .ew-about-story-column p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
}

/* Fixed the grid to center correctly */
.ew-grid-details { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px 80px; 
    width: 100%; 
}

.ew-detail-item { 
    color: #fff; 
    border-left: 3px solid #A60B12; /* Bold Crimson Accent */
    padding-left: 25px;
}

.ew-num { 
    color: #A60B12; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900;
    font-size: 32px; 
    display: block; 
    margin-bottom: 10px; 
}

.ew-detail-item h4 { 
    font-size: 24px; 
    font-weight: 800;
    margin-bottom: 15px; 
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F5E8C7;
}

.ew-detail-item p { 
    color: rgba(255,255,255,0.8); 
    line-height: 1.8; 
    font-size: 16px;
}

/* --- VIDEO OVERLAY --- */
.ew-video-overlay {
    position: fixed; inset: 0; background: #000; z-index: 1000;
    display: none; flex-direction: column;
}

.ew-video-close {
    background: #A60B12; color: #fff; border: none; padding: 20px; font-weight: 900; cursor: pointer;
    font-size: 12px; letter-spacing: 2px;
}
/* --- RESPONSIVE ADAPTATIONS --- */

/* 1. Tablet & Small Laptops (Max 1100px) */
@media (max-width: 1100px) {
    .ew-wrapper {
        flex-direction: column;
        padding: 40px 5%;
    }

    .ew-media-group {
        width: 100%;
        margin-bottom: 60px;
    }

    .ew-image-canvas {
        width: 100%;
        left: 0;
        height: 500px;
    }

    .ew-content-group {
        width: 100%;
        margin-left: 0; /* Remove the overlap */
    }

    .ew-text-card {
        padding: 60px 40px;
    }

    .ew-grid-details {
        gap: 40px;
    }
}

/* 2. Mobile Devices (Max 768px) */
@media (max-width: 768px) {
    .expert-welcome {
        padding: 60px 0;
    }

    .ew-image-canvas {
        height: 350px;
        clip-path: none; /* Simplify shape for mobile */
    }

    .ew-outline-frame {
        left: 0;
        width: 100%;
        bottom: -15px;
    }

    .ew-title {
        font-size: 32px; /* Scales down huge titles */
    }

    .ew-lead {
        font-size: 18px;
    }

    .ew-text-card {
        padding: 40px 25px;
    }

    /* Depth Panel Grid Fix */
    .ew-grid-details {
        grid-template-columns: 1fr; /* Stack details vertically */
        gap: 30px;
        overflow-y: auto; /* Ensure scrolling if content is long */
        padding-bottom: 100px;
    }

    .panel-main-title {
        font-size: 32px;
        margin-top: 80px;
        margin-bottom: 40px;
    }

    .ew-panel-close {
        top: 20px;
        right: 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .play-icon-wrap {
        width: 65px;
        height: 65px;
        font-size: 18px;
    }
}

/* --- SECTION WRAPPER --- */
.kinetic-amenities {
    position: relative;
    padding: 100px 0;
    /* CHANGED: Warm Linen background for a high-end, hospitable feel */
    background: #F4EDE2; 
    overflow: hidden;
    height: 700px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.ka-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14vw;
    font-weight: 500;
    /* CHANGED: Soft dark watermark overlaying the light linen background */
    color: rgba(45, 41, 38, 0.04); 
    z-index: 1;
    letter-spacing: 15px;
    pointer-events: none;
    text-transform: uppercase;
}

.ka-container {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- COLUMN TRACKS --- */
.ka-column {
    height: 600px;
    width: 380px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.ka-track {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.ka-node {
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    /* CHANGED: Softened Deep Text for high readability on light linen */
    color: rgba(45, 41, 38, 0.8); 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.ka-node i {
    font-size: 26px;
    /* CHANGED: Primary Brand Red */
    color: #A6192E; 
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.ka-node.ka-outline {
    color: transparent;
    /* CHANGED: Clearer stroke overlay for light background */
    -webkit-text-stroke: 1px rgba(45, 41, 38, 0.3);
}

/* --- CENTER HERO --- */
.ka-hero { 
    text-align: center; 
    flex: 1; 
    /* CHANGED: Subtle dark radial gradient to softly highlight the center content over linen */
    background: radial-gradient(circle, rgba(45, 41, 38, 0.03) 0%, transparent 70%);
    padding: 60px 20px;
}

.ka-eyebrow {
    font-size: 13px; 
    letter-spacing: 5px; 
    /* CHANGED: Primary Brand Red for an attention-grabbing eyebrow */
    color: #A6192E; 
    font-weight: 800; 
    display: block; 
    margin-bottom: 25px;
    text-transform: uppercase;
}

.ka-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 54px; 
    /* CHANGED: Strong Deep Text for core branding phrase */
    color: #2D2926; 
    line-height: 1.1; 
    margin-bottom: 40px;
    text-transform: uppercase;
}

.ka-title span { 
    /* CHANGED: Primary Brand Red for targeted word emphasis */
    color: #A6192E; 
}

.ka-badges {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    gap: 15px;
}

.badge {
    font-size: 11px; 
    font-weight: 800; 
    /* CHANGED: Primary Brand Red text for modern badge layout */
    color: #A6192E; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    letter-spacing: 2px;
    /* CHANGED: Solid Primary Red border */
    border: 1px solid #A6192E;
    /* CHANGED: Very soft red tint for badge background */
    background: rgba(166, 25, 46, 0.06);
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge i {
    /* CHANGED: Icon color inside badge matches text */
    color: #A6192E;
}

/* --- ANIMATIONS --- */
.col-up .ka-track { animation: driftUp 45s linear infinite; }
.col-down .ka-track { animation: driftDown 45s linear infinite; }

@keyframes driftUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes driftDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

/* --- INTERACTION --- */
.ka-node:hover {
    /* CHANGED: Full Deep Text color focus on hover */
    color: #2D2926;
    transform: translateX(15px);
    text-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ka-node:hover i {
    /* CHANGED: Shifts to a brighter pop color for interactive feedback */
    color: #d1233b;
    transform: scale(1.1);
}
@media (max-width: 1024px) {
    .kinetic-amenities {
        height: auto;
        padding: 60px 0;
    }

    .ka-container {
        flex-direction: column; /* Stack vertically */
        width: 100%;
        gap: 40px;
    }

    /* Target both columns to act as horizontal marquees */
    .ka-column {
        display: block; /* Show them again */
        width: 100vw;   /* Full viewport width */
        height: auto;   /* Collapse height */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }

    /* Force the tracks to lay out horizontally */
    .ka-track {
        flex-direction: row; 
        width: max-content;
        gap: 40px;
        padding: 10px 0;
    }

    .ka-node {
        font-size: 18px; /* Scale down for mobile */
        white-space: nowrap;
    }

    /* REORDERING: Upward track stays top, Hero middle, Downward track bottom */
    .col-up {
        order: 1;
    }
    .ka-hero {
        order: 2;
        padding: 20px;
    }
    .col-down {
        order: 3;
    }

    /* Adjusting animations for horizontal movement on mobile */
    .col-up .ka-track {
        animation: driftLeft 20s linear infinite;
    }
    .col-down .ka-track {
        animation: driftRight 20s linear infinite;
    }

    /* Mobile Title Scale */
    .ka-title {
        font-size: 32px;
    }
    .ka-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* New Horizontal Keyframes for Mobile */
@keyframes driftLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes driftRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* --- BRIGHT & ATTRACTIVE SHUTTLE SECTION (LEFT TEXT / RIGHT IMAGE) --- */
.sky-link-section {
    padding: 100px 0;
    background: #fdfaf3; /* Very light Ivory tint for a premium feel */
    position: relative;
    border-top: 1px solid #F5E8C7;
    border-bottom: 1px solid #F5E8C7;
}


.sky-link-grid {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* 1. THE CONTENT BOX (Left Side) */
.shuttle-info {
    flex: 1;
}

.shuttle-tag {
    display: inline-block;
    background: rgba(166, 11, 18, 0.08);
    color: #A60B12;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-radius: 4px;
}

.shuttle-info h2 {
    font-size: 48px;
    color: #222;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
}

.shuttle-info h2 span {
    color: #A60B12; /* Brand Crimson */
}

/* Feature Grid */
.path-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.path-item {
    background: #fff;
    padding: 24px;
    border: 1px solid #F5E8C7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.path-item:hover {
    border-color: #A60B12;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(166, 11, 18, 0.06);
}

.path-item i {
    color: #A60B12;
    font-size: 22px;
    margin-bottom: 15px;
    display: block;
}

.path-item strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.path-item span {
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
    display: block;
}

/* 2. THE IMAGE BOX (Right Side) */
.shuttle-portal {
    flex: 1.2;
    position: relative;
}

.portal-frame {
    background: #fff;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: 1px solid #F5E8C7;
    /* Angled "Aero" Shield Shape */
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.portal-frame img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
    clip-path: inherit;
}
/* --- PHONE LINK & PROPERTY STYLES --- */

/* Highlight the call card to make it look clickable */
.shuttle-call-card {
    border-color: rgba(166, 11, 18, 0.3) !important;
    background: rgba(166, 11, 18, 0.02) !important;
}

.shuttle-phone-link {
    color: #A60B12;
    text-decoration: none;
    font-weight: 800;
    border-bottom: 1px solid rgba(166, 11, 18, 0.2);
    transition: all 0.3s ease;
}

.shuttle-phone-link:hover {
    border-bottom-color: #A60B12;
    background: rgba(166, 11, 18, 0.05);
}

/* Property Detail Bar */
.shuttle-property-details {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #F5E8C7;
}

.shuttle-property-details strong {
    display: block;
    font-size: 13px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.shuttle-property-details p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Mobile Tweak */
@media (max-width: 1100px) {
    .shuttle-property-details {
        text-align: center;
    }
}
/* Mobile Responsive */
@media (max-width: 1100px) {
    .sky-link-grid { flex-direction: column-reverse; gap: 50px; }
    .shuttle-info { text-align: center; }
    .path-list { grid-template-columns: 1fr; text-align: left; }
    .shuttle-info h2 { font-size: 36px; }
}
/* --- GLOBAL SECTION CONTAINER --- */
.room-cinematic.modern-valu-theme {
    /* CHANGED: Swapped warm stone for a premium, clean light-mid gray */
    background-color: #ECEEF1; 
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.rc-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 800px;
}

/* --- THE MECHANICAL SHUTTERS --- */
.rc-shutter-blade {
    position: absolute;
    top: 0; 
    width: 0%; 
    height: 100%;
    /* CHANGED: Neutral dark charcoal for smooth transitional shutter animations */
    background: #2D2926; 
    z-index: 15;
    transition: width 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#shutter-l { 
    left: 0; 
    border-right: 1px solid #A6192E; /* Primary Brand Red */
}

#shutter-r { 
    right: 0; 
    border-left: 1px solid #A6192E; /* Primary Brand Red */
}

.room-cinematic.switching #shutter-l,
.room-cinematic.switching #shutter-r { 
    width: 50.5%; 
}

/* --- THE VISUAL CANVAS --- */
.rc-visual-canvas {
    position: absolute; 
    left: 0; 
    top: 0;
    width: 70%; 
    height: 100%;
    z-index: 1;
    /* CHANGED: Subtle dark fallback behind image */
    background: #2D2926;
}

.rc-image-wrapper { 
    width: 100%; 
    height: 100%; 
    position: relative; 
    overflow: hidden;
}

.rc-image-wrapper img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    filter: brightness(0.95) contrast(1.02);
    transition: transform 10s linear;
}

.rc-vignette {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    /* CHANGED: Vignette adjusted to smoothly fade image edge directly into the new gray background */
    background: radial-gradient(circle, transparent 40%, #ECEEF1 110%);
    pointer-events: none; 
    z-index: 2;
}

/* --- THE CONTENT CARD --- */
.rc-floating-card {
    position: relative; 
    z-index: 20;
    width: 550px; 
    height: 650px; 
    margin-right: 5%;
    /* CHANGED: Pure white background to make the floating card heavily stand out from the gray canvas */
    background: #ffffff; 
    padding: 60px;
    border: 1px solid rgba(45, 41, 38, 0.08); 
    /* CHANGED: Modern, soft shadow architecture appropriate for light themes */
    box-shadow: 0 30px 60px rgba(45, 41, 38, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Crimson Branding Corners */
.rc-frame-corner {
    position: absolute; 
    width: 35px; 
    height: 35px;
    border: 3px solid #A6192E; /* Primary Brand Red */
}
.top-left { top: -20px; left: -20px; border-right: none; border-bottom: none; }
.bottom-right { bottom: -20px; right: -20px; border-left: none; border-top: none; }

/* --- TYPOGRAPHY --- */
.rc-eyebrow {
    /* CHANGED: Primary brand red for strong typographic anchoring */
    color: #A6192E; 
    font-size: 12px; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 4px;
    display: block; 
    margin-bottom: 20px;
}

.room-title {
    font-size: 48px; 
    /* CHANGED: Deep corporate text color */
    color: #2D2926; 
    font-weight: 900;
    line-height: 1.1; 
    margin-bottom: 15px;
    text-transform: uppercase;
}

.rc-tags-row { 
    /* CHANGED: Muted deep text variant for sub-labels */
    color: rgba(45, 41, 38, 0.7); 
    font-size: 14px; 
    font-weight: 600;
    margin-bottom: 30px; 
    letter-spacing: 1px;
}

.room-copy {
    font-size: 17px; 
    /* CHANGED: Readable corporate body shade instead of stark black */
    color: #2D2926; 
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- SPECS SECTION --- */
.rc-specs {
    /* CHANGED: Clean light borders to divide metadata grid */
    border-top: 1px solid rgba(45, 41, 38, 0.12);
    border-bottom: 1px solid rgba(45, 41, 38, 0.12);
    padding: 25px 0; 
    margin-bottom: 40px;
    display: flex; 
    justify-content: space-between;
}

.spec-label { 
    display: block; 
    font-size: 11px; 
    /* CHANGED: Sharp Brand Red label titles */
    color: #A6192E; 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.spec-value { 
    font-size: 20px; 
    /* CHANGED: Solid text accent values */
    color: #2D2926; 
    font-weight: 700; 
}

.spec-divider {
    width: 1px;
    /* CHANGED: Soft inner separator line */
    background: rgba(45, 41, 38, 0.12);
}

/* --- FOOTER & NAVIGATION --- */
.rc-footer { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.rc-button-primary {
    /* CHANGED: Primary Brand Red action button */
    background: #A6192E; 
    color: #ffffff; 
    padding: 16px 30px;
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 800;
    letter-spacing: 1px; 
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(166, 25, 46, 0.2);
}

.rc-button-primary:hover {
    /* CHANGED: Hover layout flips color to deep charcoal style for premium interaction */
    background: #2D2926;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 41, 38, 0.15);
}

.rc-nav-group { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.nav-btn {
    /* CHANGED: Translucent grey layout outlines for interactive arrows */
    background: rgba(45, 41, 38, 0.03); 
    border: 1px solid rgba(45, 41, 38, 0.15); 
    color: #2D2926;
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover { 
    /* CHANGED: Matches branding rules on select active items */
    background: #A6192E; 
    border-color: #A6192E;
    color: #ffffff;
}

.rc-counter-wrap { 
    /* CHANGED: Modern dark presentation counter layout */
    color: #2D2926; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 14px;
}

.counter-line { 
    width: 30px; 
    height: 2px; 
    background: #A6192E; /* Primary Brand Red */
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .rc-container { flex-direction: column; justify-content: flex-start; }
    .rc-visual-canvas { width: 100%; height: 450px; position: relative; }
    .rc-floating-card { width: 92%; margin: -60px auto 0; height: auto; padding: 40px 25px; }
}

/* --- GLOBAL SECTION CONTAINER --- */
.ka-horizontal-scroll {
  height: 400vh; /* 4 slides * 100vh */
  position: relative;
  /* CHANGED: Swapped steel grey for a clean, premium light-mid gray */
  background: #ECEEF1; 
  font-family: 'Montserrat', sans-serif;
}

.ka-sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Pinning */
.ka-bg-pin {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ka-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
  /* CHANGED: Brightened the background image slightly more to naturally sit behind a light UI overlay */
  filter: brightness(0.85) grayscale(0.05); 
}

.ka-vignette-modern {
  position: absolute;
  inset: 0;
  /* CHANGED: Vignette updated to fade text area smoothly directly into the light gray background */
  background: linear-gradient(90deg, #ECEEF1 20%, rgba(236, 238, 241, 0.6) 60%, transparent 100%);
  z-index: 2;
}

/* Horizontal Moving Track */
.ka-horizontal-track {
  display: flex;
  position: relative;
  z-index: 10;
  width: 400%; 
  height: 100%;
  will-change: transform;
}

.ka-slide-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.ka-content-left {
  max-width: 600px;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ka-slide-panel.is-visible .ka-content-left {
  opacity: 1;
  transform: translateX(0);
}

/* --- TYPOGRAPHY & COLORS --- */

.ka-meta { 
  /* CHANGED: Primary Brand Red for high contrast anchoring */
  color: #A6192E; 
  font-weight: 800; 
  letter-spacing: 4px; 
  font-size: 11px; 
  display: block; 
  margin-bottom: 20px; 
  text-transform: uppercase;
}

.ka-display-title {   
  font-size: clamp(40px, 6vw, 75px); 
  /* CHANGED: Strong Deep Corporate Text replaces ivory for robust legibility */
  color: #2D2926; 
  font-weight: 900;
  margin-bottom: 20px; 
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(45, 41, 38, 0.05);
}

.ka-description { 
  /* CHANGED: Deep corporate text shade with soft opacity for beautiful readability */
  color: rgba(45, 41, 38, 0.85); 
  font-size: 18px; 
  line-height: 1.8; 
  margin-bottom: 40px; 
}

/* Brand Button */
.ka-explore-link { 
  /* CHANGED: Primary Brand Red Border */
  border: 2px solid #A6192E; 
  padding: 16px 40px; 
  /* CHANGED: Deep text for button title inside transparent body */
  color: #2D2926; 
  text-decoration: none; 
  text-transform: uppercase; 
  font-size: 13px; 
  font-weight: 800; 
  letter-spacing: 2px;
  /* CHANGED: Incredibly subtle red tint fill for interactive depth */
  background: rgba(166, 25, 46, 0.04); 
  transition: all 0.3s ease;
  display: inline-block;
}

.ka-explore-link:hover { 
  /* CHANGED: Hover layout swaps fully into Brand Red with white text */
  background: #A6192E; 
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(166, 25, 46, 0.15);
}

/* Progress Bar at bottom */
.ka-progress-container {
  position: absolute;
  bottom: 60px;
  left: 10%;
  width: 80%;
  height: 3px;
  /* CHANGED: Muted dark track base line */
  background: rgba(45, 41, 38, 0.1);
  z-index: 20;
}

.ka-progress-bar {
  height: 100%;
  /* CHANGED: Brand Red for filled timeline state */
  background: #A6192E; 
  width: 0%;
  box-shadow: 0 0 8px rgba(166, 25, 46, 0.3);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
  .ka-slide-panel {
    padding-left: 5%;
    padding-right: 5%;
    justify-content: center;
  }

  .ka-content-left {
    max-width: 85%;
    text-align: center;
  }

  .ka-display-title {
    font-size: clamp(32px, 10vw, 55px);
  }

  .ka-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .ka-progress-container {
    bottom: 40px;
    width: 90%;
    left: 5%;
  }
}

/* --- VALU INN EDITORIAL ARCHIVE --- */
.mke-edit-section {
  background-color: #ffffff;
  padding: 80px 5%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.mke-edit-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* --- HEADER: CRIMSON ACCENTS --- */
.mke-edit-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 40px;
}

.mke-edit-title-wrap {
  text-align: right;
}

.mke-edit-eyebrow {
  color: #A60B12; /* Valu Inn Crimson */
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 5px;
  font-weight: 800;
  display: block;
}

.mke-edit-title {
  color: #1a1a1a; /* Dark gray for readability */
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  margin: 5px 0 0 0;
  line-height: 1;
}

.mke-edit-title span { 
  color: #A60B12; /* Crimson Highlight */
  font-style: italic; 
  font-weight: 400; 
}

.mke-edit-line {
  height: 2px;
  background: #f0f0f0;
  flex-grow: 1;
  margin-right: 40px;
  margin-bottom: 15px;
  order: -1;
}
/* --- CUSTOM TILING LOGIC --- */
.mke-card-hero { grid-column: span 2; grid-row: span 2; } /* Large left block */
.mke-card-tall { grid-column: span 2; grid-row: span 2; } /* Thin vertical stripe */
.mke-card-std  { grid-column: span 2; grid-row: span 1; } /* Top right square */
.mke-card-wide { grid-column: span 1; grid-row: span 1; } /* Small bottom detail */
.mke-card-end  { grid-column: span 1; grid-row: span 1; } /* Small bottom corner */

/* --- THE MOSAIC GRID --- */
.mke-edit-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 15px;
}

.mke-edit-card {
  position: relative;
  overflow: hidden;
  background: #F5E8C7; /* Ivory fallback for loading */
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mke-edit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* --- BRANDED OVERLAYS --- */
.mke-edit-overlay {
  position: absolute;
  inset: 0;
  /* Ivory to Crimson Gradient */
  background: linear-gradient(to top, rgba(166,11,18,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: all 0.4s ease;
}

.mke-num {
  font-family: 'Cormorant Garamond', serif;
  color: #F5E8C7; /* Ivory Numbers */
  font-size: 28px;
  font-style: italic;
  margin-bottom: 5px;
}

.mke-edit-overlay p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* --- HOVER EFFECTS --- */
.mke-edit-card:hover {
  box-shadow: 0 20px 40px rgba(166,11,18,0.15);
  z-index: 10;
}

.mke-edit-card:hover img { 
  transform: scale(1.1); 
  filter: saturate(1.2);
}

.mke-edit-card:hover .mke-edit-overlay { 
  opacity: 1; 
}

/* --- LIGHTBOX MODAL STYLES --- */
.mke-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.95); /* Deep dark background */
    backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

#modal-img {
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid var(--brand-ivory, #F5E8C7);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    object-fit: contain;
}

.modal-caption {
    margin-top: 20px;
    color: #F5E8C7;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    letter-spacing: 1px;
}

/* Close & Nav Buttons */
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #F5E8C7;
    font-size: 50px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
}

.modal-nav:hover { color: #A60B12; }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Trigger cursor change on archive cards */
.mke-edit-card { cursor: zoom-in; }
/* 1. IPAD & TABLETS (Portrait & Landscape) */
@media (max-width: 1100px) {
  .mke-edit-section { 
    padding: 60px 4%; 
    min-height: auto; 
  }

  /* Adjust header for tablets: Reduce font size and line gap */
  .mke-edit-title { font-size: 38px; }
  .mke-edit-line { margin-right: 25px; }

  .mke-edit-mosaic { 
    /* Switch to 4 columns for iPad to maintain the mosaic feel without crowding */
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: auto;
    grid-auto-rows: 280px;
    gap: 12px;
  }

  /* Tablet-specific tiling for better balance */
  .mke-card-hero { grid-column: span 2; grid-row: span 2; }
  .mke-card-tall { grid-column: span 2; grid-row: span 2; }
  .mke-card-std  { grid-column: span 2; grid-row: span 1; }
  .mke-card-wide { grid-column: span 1; grid-row: span 1; }
  .mke-card-end  { grid-column: span 1; grid-row: span 1; }
}

/* 2. MOBILE PHONES (Standard & Large) */
@media (max-width: 768px) {
  .mke-edit-header {
    flex-direction: column-reverse; /* Stacks line below title on small screens */
    align-items: flex-end;
    margin-bottom: 30px;
  }

  .mke-edit-line {
    width: 100%; /* Line now spans full width under the text */
    margin: 15px 0 0 0;
    order: 0;
  }

  .mke-edit-title { font-size: 32px; }

  .mke-edit-mosaic { 
    /* 2 columns for mobile prevents images from being too tiny to see */
    grid-template-columns: repeat(2, 1fr); 
    grid-auto-rows: 200px;
    gap: 10px;
  }

  /* Simplify tiles for small vertical screens */
  .mke-card-hero, 
  .mke-card-tall, 
  .mke-card-std { grid-column: span 2; grid-row: span 1; } /* Hero blocks stack full width */
  
  .mke-card-wide, 
  .mke-card-end { grid-column: span 1; grid-row: span 1; } /* Smaller images stay side-by-side */

  /* Make overlays visible on mobile since there is no 'hover' on touch */
  .mke-edit-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,51,90,0.8) 0%, transparent 60%);
    padding: 12px;
  }
  
  .mke-num { font-size: 18px; }
}

/* 3. VERY SMALL PHONES */
@media (max-width: 480px) {
  .mke-edit-mosaic {
    grid-template-columns: 1fr; /* Complete single column for narrowest phones */
    grid-auto-rows: 250px;
  }
  
  .mke-card-hero, .mke-card-tall, .mke-card-std, .mke-card-wide, .mke-card-end {
    grid-column: span 1;
  }
}
/* --- SEATTLE AIRPORT ARCHITECTURAL FOOTER --- */
.mke-footer-wrap {
  /* CHANGED: Swapped muddy stone for Clean Off-White to create a modern, airy feel */
  background-color: #FAF9F6; 
  padding-top: 90px;
  /* CHANGED: Defaulted base typography color to your brand's deep text */
  color: #2D2926;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.mke-footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

.mke-footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 80px;
}

/* --- BRAND SECTION --- */
.mke-footer-brand { flex: 1.2; }

/* --- LOGO POD --- */
.mke-logo-pod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* CHANGED: Inverted to a subtle dark capsule tone so white logos pop natively on light themes */
  background: #2D2926; 
  padding: 15px 25px;
  border-radius: 4px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1); 
  /* CHANGED: Primary Brand Red border */
  border-bottom: 3px solid #A6192E; 
}

.mke-footer-logo {
  height: 65px;
  width: auto;
  display: block;
}

.mke-footer-slogan {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 45px;
  font-weight: 300;
  /* CHANGED: Deep Text replaces ivory for clean, crisp legibility */
  color: #2D2926; 
}

.mke-footer-slogan span { 
  /* CHANGED: Primary Brand Red */
  color: #A6192E; 
  font-weight: 400;
  /* REMOVED: Drop shadows stripped for flat, high-end editorial clarity */
  text-shadow: none;
}

/* --- ACTION BUTTON --- */
.mke-btn-primary {
  /* CHANGED: Primary Brand Red */
  background: #A6192E; 
  color: #ffffff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: all 0.3s ease;
  /* CHANGED: Primary Brand Red border */
  border: 1px solid #A6192E;
  border-radius: 4px;
}

.mke-btn-primary:hover { 
  /* CHANGED: Flips beautifully to deep text style on mouse hover */
  background: #2D2926;
  color: #ffffff;
  border-color: #2D2926;
  box-shadow: 0 5px 15px rgba(45, 41, 38, 0.15);
}

.mke-action-group { display: flex; align-items: center; gap: 25px; }

/* --- SOCIAL GROUP --- */
.mke-footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mke-footer-social a { 
  /* CHANGED: Deep Text for dark icons on off-white background */
  color: #A6192E; 
  font-size: 18px; 
  opacity: 0.7;
  transition: 0.3s ease;
  text-decoration: none;
}

.mke-footer-social a:hover { 
  opacity: 1; 
  /* CHANGED: Primary Brand Red hover state */
  color: #2D2926; 
  transform: translateY(-3px);
}

/* --- DATA PILLARS --- */
.mke-footer-details {
  flex: 2;
  display: flex;
  gap: 70px;
  /* CHANGED: Subtle dark divider rule instead of white lines */
  border-left: 1px solid rgba(45, 41, 38, 0.1); 
  padding-left: 70px;
}

.mke-detail-col { flex: 1; }

.mke-detail-label {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  /* CHANGED: Primary Brand Red */
  color: #A6192E; 
  margin-bottom: 35px;
  font-weight: 800;
  /* REMOVED: High-contrast text shadows are no longer required on light layouts */
  text-shadow: none;
  text-decoration: none;
}

/* --- 2-COLUMN LINKS GRID --- */
.mke-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.mke-quick-grid a {
  /* CHANGED: Rich deep text links */
  color: #2D2926; 
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s ease;
}

.mke-quick-grid a:hover {
  /* CHANGED: Turns primary brand red and shifts right on hover */
  color: #A6192E; 
  transform: translateX(5px);
}

/* --- CONTACT SECTION --- */
.mke-address {
  font-style: normal;
  /* CHANGED: Soft dark corporate shade for addresses */
  color: rgba(45, 41, 38, 0.85);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 25px;
}

.mke-phone {
  font-weight: 700;
  /* CHANGED: Crisp primary brand red for telephone prominence */
  color: #A6192E; 
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;
}

.mke-phone:hover { 
  /* CHANGED: Hover shifts to absolute deep text color tone */
  color: #2D2926; 
}

/* --- LEGAL FLOOR --- */
.mke-footer-bottom {
  /* CHANGED: Implemented your recommended slightly darker shade to create a smart structural split */
  border-top: 1px solid rgba(45, 41, 38, 0.08);
  padding: 40px 0 60px;
  background-color: #E9E4D7; 
}

.mke-ownership-statement {
  /* CHANGED: Elegant dark charcoal copy text */
  color: rgba(45, 41, 38, 0.75); 
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.mke-ownership-statement strong {
  /* CHANGED: Emphasized text relies on crisp deep text */
  color: #2D2926;
  font-weight: 600;
}

.mke-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
}

.mke-legal-links a, 
.mke-f-credit, 
.mke-f-credit a {
  /* CHANGED: Soft charcoal tones for secondary compliance links */
  color: rgba(45, 41, 38, 0.65);
  font-size: 12px;
  text-decoration: none;
}

.mke-sep {
  /* CHANGED: Primary Brand Red separator dots */
  color: #A6192E; 
  margin: 0 12px;
}

.mke-legal-links a:hover, 
.mke-f-credit a:hover {
  /* CHANGED: Highlight color turns primary red on action */
  color: #A6192E;
}

/* --- EXPERT RESPONSIVE REFINEMENT --- */

/* 1. IPAD & SMALL LAPTOP (Tablets) */
@media (max-width: 1150px) {
	
  .mke-footer-main {
    flex-direction: column;
    align-items: center; /* Centers the Brand section */
    text-align: center;
    gap: 50px;
  }

  .mke-footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mke-footer-details {
    width: 100%;
    border-left: none; /* Removes architectural line for better flow */
    padding-left: 0;
    justify-content: space-around; /* Spreads links and location evenly */
  }

  .mke-action-group {
    justify-content: center;
  }

  .mke-footer-slogan {
    font-size: 38px; /* Slightly smaller for tablets */
    margin-bottom: 30px;
  }
}

/* 2. SMALL TABLET & PHONES */
@media (max-width: 850px) {
  .mke-footer-details {
    flex-direction: column; /* Stacks links on top of location */
    gap: 40px;
    align-items: center;
  }

  .mke-quick-grid {
    /* Keeps the 2-column grid on small tablets, but centers it */
    justify-items: start;
    display: inline-grid; 
    text-align: left;
  }

  .mke-bottom-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mke-ownership-statement {
    font-size: 12px; /* Balanced size for mobile */
    padding: 0 10px;
  }
}

/* 3. SMALL MOBILE ONLY */
@media (max-width: 500px) {
  .mke-footer-wrap {
    padding-top: 60px;
  }

  .mke-quick-grid {
    grid-template-columns: 1fr 1fr; /* Single column for narrow phones */
    gap: 15px;
  }

  .mke-footer-logo {
    height: 50px; /* Scaled down logo pod */
  }

  .mke-footer-slogan {
    font-size: 32px;
  }

  .mke-phone {
    font-size: 18px;
  }

  .mke-btn-primary {
    width: 100%; /* Full width button for easier thumb-tapping */
    text-align: center;
  }
  
  .mke-action-group {
    flex-direction: column;
    width: 100%;
  }
}

/* --- BRANDED WAYFINDER BACK TO TOP --- */
.mke-back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translateY(20px);
}

/* State when scrolled down */
.mke-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* The Growing Line (Aviation Needle) */
.mke-scroll-line {
  width: 1px;
  height: 0;
  /* Gradient transitions from Brand Crimson to transparent */
  background: linear-gradient(to top, #A60B12, transparent);
  transition: height 0.4s ease;
  margin-bottom: 15px;
}

.mke-back-to-top:hover .mke-scroll-line {
  height: 60px; /* Line grows on hover */
}

/* The Arrow & Text Wrap */
.mke-arrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #A60B12; /* Primary Crimson */
  transition: transform 0.3s ease;
}

.mke-top-text {
  font-size: 18px;
  font-weight: 800; /* Heavier weight for readability */
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  color: #222222; /* Charcoal for contrast against light backgrounds */
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mke-arrow-wrap i {
  font-size: 25px;
  
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover Animations */
.mke-back-to-top:hover .mke-top-text {
  opacity: 1;
  transform: translateY(0);
}

.mke-back-to-top:hover .mke-arrow-wrap i {
  transform: translateY(-8px); /* More pronounced float */
 
 
  color: #F5E8C7;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .mke-back-to-top { right: 20px; bottom: 20px; }
  .mke-scroll-line { display: none; }
  .mke-arrow-wrap i { 
      width: 45px; 
      height: 45px; 
      background: #A60B12; /* Default to solid crimson for mobile visibility */
      color: #fff;
  }
}
/* --- INNER PAGE HERO --- */
.inner-hero {
  position: relative;
  height: 60vh; 
  min-height: 550px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px; 
  /* CHANGED: Absolute solid black background base fallback */
  background-color: #000000; 
}

.inner-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  /* CHANGED: Swapped brown/gray tones for a deep, luxury black cinematic fade.
     Starts light at the very top to preserve the floating white nav header, 
     then aggressively drops into heavy black masks behind the core typography elements. */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,     /* Gentle top tint so the floating white header stays clean */
    rgba(0, 0, 0, 0.70) 35%,    /* Deepening black mask right above the title */
    rgba(0, 0, 0, 0.85) 70%,    /* Maximum black density behind description copy */
    rgba(0, 0, 0, 0.50) 100%    /* Softens out slightly at the bottom edge */
  );
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px; 
  padding: 0 30px;
}

.inner-subtitle {
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.95rem;
  letter-spacing: 4px; 
  text-transform: uppercase;
  /* CHANGED: Shifted to a vibrant, crisp cherry red to pierce cleanly through the black vignette */
  color: #FF3344; 
  margin-bottom: 1.2rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.inner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem); 
  font-weight: 900;
  /* Pure crisp luxury white */
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase; 
  /* Sharp, tight text shadows to carve the letter boundaries over the dark image structure */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8),
               0 2px 5px rgba(0, 0, 0, 0.6);
}

/* Brand Primary Red Divider */
.inner-divider {
  width: 80px; 
  height: 4px;
  /* Your clean brand red signature anchor */
  background-color: #A6192E; 
  margin: 25px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.inner-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
  /* Pure white text reads flawlessly now over the heavy black image mask */
  color: #ffffff;
  max-width: 780px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .inner-hero {
    height: 55vh;
    padding-top: 140px; 
  }
  .inner-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }
  .inner-desc {
    font-size: 1.05rem;
  }
}
/* --- VALU INN AMENITIES SECTION --- */

.steward-ledger {
  /* CHANGED: Base canvas transformed to Clean Off-White with a very subtle dark fade */
  background-color: #FAF9F6; 
  background-image: linear-gradient(180deg, rgba(236, 238, 241, 0.4), rgba(244, 237, 226, 0.5));
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 5%;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* CHANGED: Double architectural border shifts to your Brand Deep Text color */
  border: 6px double #2D2926; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(45, 41, 38, 0.08);
  position: relative;
}

/* --- HEADER SECTION --- */
.ledger-header { 
  text-align: center; 
  margin-bottom: 50px; 
}

.ledger-header h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  /* CHANGED: Swapped navy for authoritative Corporate Deep Text */
  color: #2D2926;
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 2px;
  font-weight: 900;
}

.ledger-subtitle { 
  
  font-size: 0.9rem; 
  letter-spacing: 4px; 
  /* CHANGED: Set to your signature logo Crimson Red for proper visibility and branding */
  color: #9E0B13; 
  font-weight: 800; 
  margin: 15px 0; 
  text-transform: uppercase;
}

.ledger-subtitle a {
  color: #9E0B13;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ledger-subtitle a:hover {
  color: #2D2926;
}

.ledger-intro-text { 
  max-width: 1200px; 
  margin: 25px auto; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.05rem; 
  /* CHANGED: Soft corporate tone for high-readability blocks */
  color: rgba(45, 41, 38, 0.85); 
  line-height: 1.75; 
}

.ledger-line { 
  height: 3px; 
  width: 60px; 
  /* CHANGED: Crimson Red divider accent */
  background: #9E0B13; 
  margin: 30px auto; 
}

/* --- POPULAR FACILITIES BAR --- */
.popular-facilities-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
  padding: 20px;
  /* CHANGED: Background updated to a soft Warm Linen tint */
  background: #F4EDE2; 
  border-radius: 4px;
  border: 1px solid rgba(158, 11, 19, 0.05);
}

.popular-facilities-bar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  /* CHANGED: High contrast text labels match the Deep Corporate color */
  color: #2D2926;
  text-transform: uppercase;
}

.popular-facilities-bar i {
  /* CHANGED: Active facility icons turn logo Crimson Red */
  color: #9E0B13; 
  margin-right: 8px;
}

/* --- GRID & PANEL LAYOUT --- */
.ledger-grid { 
  display: flex; 
  gap: 25px; 
  align-items: stretch; 
}

.ledger-panel { 
  flex: 1; 
  /* CHANGED: Soft neutral border rules to prevent visual clutter */
  border: 1px solid #ECEEF1; 
  padding: 40px 25px; 
  position: relative; 
  background: #fff;
  transition: all 0.4s ease;
}

/* Highlight Panel (White/Cream text on Crimson Background) */
.ledger-panel.highlight {
  /* CHANGED: The operational highlight box now transforms into a gorgeous Crimson Red block */
  background: #9E0B13; 
  color: #ffffff;
  /* CHANGED: Wrapped with a sophisticated border in Vintage Cream from your logo script */
  border: 2px solid #F6E9C9; 
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(158, 11, 19, 0.25);
  z-index: 2;
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid #ECEEF1; 
  padding-bottom: 25px; 
  margin-bottom: 30px; 
}

.ledger-panel.highlight .panel-head {
  border-bottom: 1px solid rgba(246, 233, 201, 0.25);
}

.panel-head i { 
  font-size: 28px; 
  /* CHANGED: Deep Text icon state for standard blocks */
  color: #2D2926; 
  margin-bottom: 15px; 
  display: block; 
}

.ledger-panel.highlight .panel-head i {
  /* CHANGED: High-contrast Vintage Cream for featured icons inside the Crimson layout */
  color: #F6E9C9; 
}

.panel-head h3 { 
  font-size: 1.4rem; 
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px; 
  font-weight: 800;
  color: #2D2926;
}

.ledger-panel.highlight .panel-head h3 {
  /* CHANGED: Enforces pure white for the dark panel title */
  color: #ffffff;
}

.panel-tag { 
  display: block; 
 
  font-size: 0.75rem; 
  color: #777; 
  text-transform: uppercase; 
  margin-top: 10px; 
  letter-spacing: 2px;
  font-weight: 600;
}

.ledger-panel.highlight .panel-tag {
  /* CHANGED: Vintage Cream tag labels for luxury emphasis */
  color: #F6E9C9;
}

/* --- LISTS & CONTENT --- */
.ledger-subgroup h4 { 
  font-size: 0.9rem; 
  color: #2D2926; 
  text-transform: uppercase; 
  margin: 25px 0 12px; 
  /* CHANGED: Left architectural indicator bar uses your Crimson Red */
  border-left: 3px solid #9E0B13; 
  padding-left: 10px;
  display: block;
  font-weight: 800;
  letter-spacing: 1px;
}

.ledger-panel.highlight .ledger-subgroup h4 {
  /* CHANGED: Flips beautifully to Vintage Cream over the highlighted panel background */
  color: #F6E9C9;
  border-left-color: #F6E9C9;
}

.ledger-items li {
  
  font-size: 14px;
  color: rgba(45, 41, 38, 0.9); 
  padding: 8px 0;
  border-bottom: 1px solid #FAF9F6;
  display: flex;
  align-items: center;
}

.ledger-items li::before {
  content: "→"; 
  /* CHANGED: List bullet vectors match Crimson Red */
  color: #9E0B13; 
  font-weight: bold;
  margin-right: 10px;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(246, 233, 201, 0.15);
 
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.feature-list i { 
  /* CHANGED: Vintage Cream bullet icons for the highlighted lists */
  color: #F6E9C9; 
  width: 35px; 
  font-size: 16px; 
  text-align: center;
}

/* Specific styling for the Transfer/Transit heading inside the dark panel */
.ledger-pet-heading {
    font-size: 0.9rem;
    /* CHANGED: Highlight text completely anchored to logo Vintage Cream script tone */
    color: #F6E9C9 !important; 
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 12px;
    border-left: 3px solid #F6E9C9; 
    padding-left: 10px;
    display: block;
    letter-spacing: 2px;
    font-weight: 800;
    
}

/* Ensure the paragraph text below it is readable */
.ledger-subgroup-alt p {
    
    font-size: 14px;
    /* CHANGED: Clean ivory white fallback so readers don't experience strain on crimson */
    color: #FAF9F6; 
    line-height: 1.6;
    margin-top: 5px;
}

.ledger-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ECEEF1;
  text-align: center;

  font-size: 0.85rem;
  color: rgba(45, 41, 38, 0.7);
}

.ledger-footer i {
  /* CHANGED: Footer disclaimer info vector matches Crimson */
  color: #9E0B13;
  margin-right: 8px;
}

/* --- RESPONSIVE REFINEMENTS --- */

/* 1. IPAD & TABLET (Under 1024px) */
@media (max-width: 1024px) {
  .ledger-container {
    padding: 20px;
    border-width: 4px; 
  }

  .ledger-grid {
    flex-direction: column; 
    gap: 30px;
  }

  .ledger-panel.highlight {
    transform: none; 
    order: -1; 
  }

  .ledger-header h2 {
    font-size: 2.2rem;
  }

  .popular-facilities-bar {
    gap: 15px;
    padding: 15px;
  }
}

/* 2. MOBILE PHONES (Under 768px) */
@media (max-width: 768px) {
  .steward-ledger {
    padding: 15px 3%;
  }

  .ledger-header {
    margin-bottom: 30px;
  }

  .ledger-header h2 {
    font-size: 1.8rem;
  }

  .ledger-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .ledger-intro-text {
    font-size: 0.95rem;
    text-align: left; 
  }

  .popular-facilities-bar {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px;
  }

  .popular-facilities-bar span {
    font-size: 0.75rem;
  }

  .ledger-panel {
    padding: 30px 20px;
  }

  .panel-head h3 {
    font-size: 1.2rem;
  }

  .ledger-subgroup h4 {
    font-size: 0.8rem;
  }

  .ledger-footer {
    margin-top: 30px;
    font-size: 0.75rem;
  }
}

/* 3. VERY SMALL PHONES (Under 480px) */
@media (max-width: 480px) {
  .popular-facilities-bar {
    grid-template-columns: 1fr; 
  }
  
  .ledger-container {
    padding: 15px;
  }

  .inner-title {
    font-size: 2.2rem;
  }
}
/* ============================================================
   THINGS TO DO - BEST VALUE INN & PARKING SEATTLE AIRPORT
   Brand Red: #9E0B13 | Cream Accent: #F6E9C9 | Deep Text: #2D2926
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
  /* CHANGED: Base section wrap switched to clean off-white with warm linen structural linear gradients */
  background-color: #FAF9F6; 
  background-image: linear-gradient(180deg, rgba(236, 238, 241, 0.4), rgba(244, 237, 226, 0.5));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 60px 0;
  overflow: clip;
  font-family: 'Montserrat', sans-serif;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
  width: 100%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 40px auto;
  /* CHANGED: Double layout border styled to Deep Corporate Text color */
  border: 6px double #2D2926; 
  background: #ffffff;
  padding: 60px 30px;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.05);
}

.ttd-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  /* CHANGED: Deep corporate tone for premium readability */
  color: #2D2926;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 900;
}

.ttd-main-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 5px;
  /* CHANGED: Hyperlinked sub-anchor shifted to your signature Logo Crimson Red */
  color: #9E0B13; 
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 15px; 
}

.ttd-main-title span a {
  color: #9E0B13;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ttd-main-title span a:hover {
  color: #2D2926;
}

.ttd-main-intro {
  max-width: 1000px;
  margin: 25px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: rgba(45, 41, 38, 0.85);
  line-height: 1.8;
}

.header-divider {
  width: 80px;
  height: 4px;
  /* CHANGED: Horizontal accent bar tinted to Brand Crimson Red */
  background: #9E0B13; 
  margin: 25px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  /* CHANGED: Main structural board border mapped to Deep Corporate Text layout frame */
  border: 6px double #2D2926; 
  background: #ffffff; 
  box-shadow: 0 20px 50px rgba(45, 41, 38, 0.1);
}

/* 4. SCROLLING NARRATIVE COLUMN (LEFT) */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.narrative-block {
  min-height: 70vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  opacity: 0.15;
  transition: all 0.6s ease-in-out;
}

.narrative-block.active {
  opacity: 1;
}

.narrative-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  /* CHANGED: Accent index tracking metrics updated to Brand Crimson Red */
  color: #9E0B13; 
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.narrative-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  /* CHANGED: Standard titles unified to Deep Corporate text color */
  color: #2D2926;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin: 0;
}

.narrative-divider {
  width: 50px;
  height: 4px;
  /* CHANGED: Small card accent break divider tinted to your Brand Crimson Red */
  background: #9E0B13; 
  margin: 20px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(45, 41, 38, 0.9);
  max-width: 480px;
  font-weight: 500;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
  flex: 1.2;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  /* CHANGED: Divider line modified to standard layout border gray */
  border-left: 1px solid #ECEEF1;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Subtle dark overlay filter cast directly onto images to guarantee text contrast on mobile snap views */
.visual-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.45));
  z-index: 5;
  pointer-events: none;
}

.spotlight-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1.5s ease-out;
  transform: scale(1.08);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* 6. VERTICAL PROGRESS BAR (Inside Visuals) */
.spotlight-progress {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 250px;
  width: 3px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  /* CHANGED: Glow tracker inside images converted to highly recognizable Logo Vintage Cream */
  background: #F6E9C9; 
  transition: height 0.5s ease;
  height: 20%;
  box-shadow: 0 0 10px rgba(246, 233, 201, 0.8);
}

.progress-total {
  position: absolute;
  bottom: -40px;
  left: -8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  /* CHANGED: Text metrics on image map overlay utilize your Vintage Cream for clean contrast */
  color: #F6E9C9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* 7. VIEW DETAILS BUTTON */
.ttd-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  padding: 14px 32px;
  /* CHANGED: Action buttons utilize your brand's authoritative Crimson Red block color */
  background-color: #9E0B13; 
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid transparent;
}

.ttd-btn i {
  margin-left: 10px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ttd-btn:hover {
  /* CHANGED: Shifts to Deep Corporate Text color on hover state interaction */
  background-color: #2D2926; 
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(158, 11, 19, 0.3);
}

.ttd-btn:hover i {
  transform: translateX(5px);
}

/* 8. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .spotlight-wrapper { 
    flex-direction: column; 
    border-width: 4px;
  }
  
  .ttd-section-header { 
    border-width: 4px; 
    padding: 40px 20px;
  }

  .spotlight-visuals { 
    height: 45vh; 
    width: 100%;
    position: relative; 
    border-left: none;
    border-bottom: 2px solid #ECEEF1;
  }

  .spotlight-narrative { 
    width: 100%; 
    padding: 40px 25px; 
  }

  .narrative-block { 
    min-height: auto; 
    padding: 50px 0; 
    opacity: 1; 
  }

  /* Make typography pop neatly inside responsive stacking when text slides under images */
  .narrative-title {
    color: #2D2926;
  }

  .spotlight-progress { display: none; }
}

@media (max-width: 768px) {
  .ttd-main-title { font-size: 2rem; }
  .narrative-title { font-size: 1.8rem; }
}
/* ============================================================
   NEARBY LEDGER - BEST VALUE INN & PARKING SEATTLE AIRPORT
   Brand Red: #9E0B13 | Cream Accent: #F6E9C9 | Deep Text: #2D2926
   ============================================================ */

.nearby-ledger-section {
  /* CHANGED: Switched background to clean canvas off-white with fine warm geometric transitions */
  background-color: #FAF9F6; 
  background-image: linear-gradient(180deg, rgba(236, 238, 241, 0.4), rgba(244, 237, 226, 0.5));
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 60px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* CHANGED: Framed with your prominent Corporate Deep Text border line */
  border: 6px double #2D2926; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(45, 41, 38, 0.05);
}

.nearby-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  /* CHANGED: Soft structure boundaries to maintain high scannability */
  border: 1px solid #ECEEF1; 
  padding: 35px;
  background: #fff;
  transition: all 0.3s ease;
}

/* --- THE HIGHLIGHT PANEL (BRAND CRIMSON RED) --- */
.nearby-panel.highlight {
  /* CHANGED: The priority card shifts completely into a striking Crimson Red block */
  background: #9E0B13; 
  color: #ffffff;
  /* CHANGED: Outlined using the elegant Vintage Cream from your logo typography script */
  border: 1px solid #F6E9C9; 
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(158, 11, 19, 0.25);
  z-index: 2;
}

/* On Crimson Background, Logo Vintage Cream (#F6E9C9) offers pristine contrast */
.nearby-panel.highlight .panel-heading {
  color: #F6E9C9; 
  border-bottom-color: rgba(246, 233, 201, 0.3);
}

.nearby-panel.highlight .nearby-list li {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.nearby-panel.highlight .panel-heading i {
  color: #F6E9C9;
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  /* CHANGED: Set to Corporate Deep Text for maximum contrast on white fields */
  color: #2D2926; 
  /* CHANGED: Underline accent bars reflect your primary Brand Crimson Red */
  border-bottom: 3px solid #9E0B13; 
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  font-weight: 800;
}

.panel-heading i {
  /* CHANGED: Standard panel icons now default to Brand Crimson Red */
  color: #9E0B13; 
  margin-right: 15px;
  font-size: 1.1rem;
}

/* --- LIST ITEMS --- */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #FAF9F6;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(45, 41, 38, 0.9);
  transition: all 0.3s ease;
  font-weight: 500;
}

.nearby-list li:hover {
  /* CHANGED: Hover states morph directly into your identity Crimson Red */
  color: #9E0B13;
  padding-left: 8px;
}

/* --- DISTANCE STYLING --- */
.distance {
  /* CHANGED: Tag variables utilizing Corporate Deep Text layout parameters */
  color: #2D2926; 
  /* CHANGED: Backing plates updated to a soft Warm Linen grey block tint */
  background: #F4EDE2; 
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.75rem;
  margin-left: 15px;
  white-space: nowrap;
  /* CHANGED: Crimson structural accent pin indicator */
  border-left: 3px solid #9E0B13; 
}

/* In the center Crimson Highlight panel, utilize the logo Vintage Cream against the deep red backdrop */
.nearby-panel.highlight .distance {
  /* CHANGED: Flips to text inside background layout block colors */
  color: #2D2926;
  background: #F6E9C9; 
  border-left: none;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    padding: 40px 15px; 
    background-attachment: scroll; 
  }

  .ledger-container {
    border-width: 4px;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; 
    padding: 20px 15px;
    transform: none !important; 
    box-shadow: none !important;
  }

  .panel-heading {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .nearby-list li {
    padding: 10px 0;
    font-size: 0.85rem;
    align-items: flex-start; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .nearby-ledger-section {
    padding: 30px 10px;
  }

  .ledger-container {
    padding: 25px 10px;
  }
  
  .nearby-panel {
    padding: 18px 12px;
  }
}
/* --- Valu Inn Modern Location Styles --- */
.clarion-modern-location {
  position: relative;
  /* CHANGED: Swapped navy canvas for our clean corporate off-white backdrop */
  background: #FAF9F6; 
  padding: 30px 5%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.journal-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 0;
  position: relative;
}

/* Map Section */
.map-window-wrapper {
  flex: 1.2;
  position: relative;
  height: 600px;
  z-index: 1;
}

.map-window {
  width: 100%;
  height: 100%;
  /* CHANGED: Framed with fine lines referencing corporate deep charcoal elements */
  border: 1px solid rgba(45, 41, 38, 0.15); 
  filter: contrast(1.02);
}

/* Floating Geo Tag */
.geo-tag {
  position: absolute;
  bottom: 30px;
  left: -20px;
  /* CHANGED: Solid Deep Charcoal panel background */
  background: #2D2926; 
  color: #fff;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  /* CHANGED: Accent line styled with logo Vintage Cream */
  border: 1px solid #F6E9C9; 
  box-shadow: 10px 10px 30px rgba(45, 41, 38, 0.25);
}

.coord-divider {
  width: 30px;
  height: 1px;
  /* CHANGED: Inline divider colored in Vintage Cream */
  background: #F6E9C9;
}

/* Floating Information Canvas Card */
.info-glass-panel {
  flex: 0 0 650px;
  /* CHANGED: Transformed container background into your official Logo Crimson Red block matrix */
  background: rgba(158, 11, 19, 0.98); 
  backdrop-filter: blur(12px);
  margin-left: -80px; 
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px;
  z-index: 2;
  /* CHANGED: Architectural accent flag bar swaps into high contrast Vintage Cream */
  border-left: 5px solid #F6E9C9; 
  box-shadow: 20px 20px 50px rgba(158, 11, 19, 0.2);
}

.brand-accent-line {
  width: 40px;
  height: 3px;
  /* CHANGED: Card visual separation element tinted in Vintage Cream */
  background: #F6E9C9; 
  margin-bottom: 20px;
}

.location-subtitle {
  /* CHANGED: Subheadings match logo Vintage Cream script tone perfectly */
  color: #F6E9C9; 
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.location-main-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  margin: 0 0 20px 0;
  font-weight: 900;
  text-transform: uppercase;
}

.location-main-title a {
  color: #ffffff;
  text-decoration: none;
}

.location-description {
  /* CHANGED: Clean ivory white description blocks to read effortlessly on deep red backing */
  color: #FAF9F6;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 35px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.address-block {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.address-block address {
  font-style: normal;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 600;
}

/* Route Form Styling */
.route-form {
  /* CHANGED: Adjusted border separator rules for white-on-red opacity */
  border-top: 1px solid rgba(246, 233, 201, 0.25);
  padding-top: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input {
  background: rgba(255, 255, 255, 0.12);
  /* CHANGED: Fields utilize thin white lines to frame active forms clearly */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 15px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #F6E9C9;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.route-submit-btn {
  /* CHANGED: Submission anchor block maps elegantly to the premium Vintage Cream asset color */
  background: #F6E9C9; 
  /* CHANGED: High contrast text labels match the Deep Corporate text matrix */
  color: #2D2926; 
  border: none;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.route-submit-btn:hover {
  /* CHANGED: Shifts cleanly into pure background canvas white during interaction */
  background: #ffffff;
  color: #2D2926;
}

/* --- Enhanced Responsive Adjustments --- */

@media (max-width: 1024px) {
  .clarion-modern-location {
    padding: 40px 20px;
    height: auto;
  }

  .journal-wrapper {
    flex-direction: column;
    gap: 0;
  }

  /* 1. Map Adjustments */
  .map-window-wrapper {
    flex: none;
    width: 100%;
    height: 400px; 
    z-index: 1;
  }

  .map-window {
    border-radius: 8px 8px 0 0; 
  }

  /* 2. Geo Tag */
  .geo-tag {
    left: 15px;
    bottom: 15px;
    padding: 8px 15px;
    font-size: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  }

  /* 3. Info Panel */
  .info-glass-panel {
    flex: none;
    width: 100%;
    margin-left: 0; 
    margin-top: 0;   
    margin-bottom: 0;
    padding: 35px 25px;
    border-left: none;
    /* CHANGED: Responsive top accent indicator border follows Vintage Cream color line layout */
    border-top: 5px solid #F6E9C9; 
    background: rgba(158, 11, 19, 1); 
    box-shadow: none;
  }

  .location-main-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .location-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .address-block address {
    font-size: 1rem;
  }
}

/* --- Small Mobile Phones --- */
@media (max-width: 600px) {
  .clarion-modern-location {
    padding: 20px 10px;
  }

  .map-window-wrapper {
    height: 300px; 
  }

  .info-glass-panel {
    padding: 30px 20px;
  }

  .geo-tag {
    display: none; 
  }

  .route-submit-btn {
    padding: 18px; 
    font-size: 0.85rem;
  }

  .input-group input {
    font-size: 16px; 
  }
}
/* --- Valu Inn Contact Suite Styling --- */
.contact-ledger-suite {
  padding: 80px 5%;
  /* CHANGED: Swapped navy gradient fill for a deep corporate text/charcoal overlay to let brand colors pop cleanly */
  background: linear-gradient(rgba(45, 41, 38, 0.94), rgba(45, 41, 38, 0.90)), 
              url('../images/new/seattle-map-bg.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.ledger-outer-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* CHANGED: Outer border framing updated to match off-white layout lines */
  border: 1px solid #ECEEF1;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(45, 41, 38, 0.25);
}

.ledger-accent-sidebar {
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  /* CHANGED: Solid brand corporate charcoal sidebar anchor background */
  background-color: #2D2926;
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  /* CHANGED: Set title headers to Deep Charcoal for high visibility */
  color: #2D2926; 
  margin-bottom: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-headline span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  /* CHANGED: Highlighted anchors utilize your signature Logo Crimson Red */
  color: #9E0B13; 
}

.ledger-headline span a {
  color: #9E0B13;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ledger-headline span a:hover {
  color: #2D2926;
}

.ledger-subtext {
  font-family: 'Montserrat', sans-serif;
  color: rgba(45, 41, 38, 0.85);
  max-width: 780px;
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 1.05rem;
  font-weight: 500;
}

.ledger-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.item-meta {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 15px;
  /* CHANGED: Tag meta descriptors tinted to Primary Brand Crimson Red for strong label clarity */
  color: #9E0B13; 
}

.item-data p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(45, 41, 38, 0.9);
  line-height: 1.6;
  font-weight: 500;
}

.estate-name {
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.3rem;
  margin-bottom: 8px;
  /* CHANGED: Property names unified into Deep Corporate Charcoal colors */
  color: #2D2926;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  /* CHANGED: Base links match Deep Corporate layout text blocks */
  color: #2D2926;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  /* CHANGED: Link actions morph into Brand Crimson Red during hover tracking interaction */
  color: #9E0B13;
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ledger-outer-frame { 
    flex-direction: column; 
  }
  
  .ledger-accent-sidebar { 
    width: 100%; 
    height: 12px; 
    border-bottom: none;
    /* CHANGED: Mobile top banner decoration maps directly onto your Logo Crimson Red */
    background-color: #9E0B13; 
  }
  
  .ledger-details-row { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  .ledger-main-content { 
    padding: 40px 25px; 
  }
  
  .ledger-headline { 
    font-size: 2.1rem; 
  }
  
  .ledger-subtext { 
    margin-bottom: 35px; 
  }
}

@media (max-width: 600px) {
  .ledger-headline { 
    font-size: 1.8rem; 
  }
  
  .ledger-link { 
    font-size: 1.25rem; 
  }
}
/* --- Valu Inn Sitemap Index Styling --- */
.sitemap-index-suite {
  padding: 80px 20px;
  /* CHANGED: Swapped navy gradient fill for a deep corporate text/charcoal overlay to coordinate with our Seattle theme */
  background: linear-gradient(rgba(45, 41, 38, 0.94), rgba(45, 41, 38, 0.90)), 
              url('../images/new/seattle-skyline.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.index-parchment {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  /* CHANGED: Double frame border styled to Corporate Deep Charcoal layout frame */
  border: 6px double #2D2926;
  box-shadow: 0 25px 60px rgba(45, 41, 38, 0.15);
  position: relative;
}

.index-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  /* CHANGED: Primary Brand Crimson Red for strong label clarity */
  color: #9E0B13; 
  font-weight: 800;
  display: block;
  margin-bottom: 5px;
}

.index-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2D2926; /* Deep Corporate Charcoal */
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.index-title a {
  color: #2D2926;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-title a:hover {
  color: #9E0B13;
}

.index-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(45, 41, 38, 0.85);
  max-width: 1050px;
  font-weight: 500;
}

.index-ornament {
  width: 80px;
  height: 4px;
  /* CHANGED: Colored directly using your primary Brand Crimson Red */
  background: #9E0B13; 
  margin: 30px 0 50px;
}

.index-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #ECEEF1;
  padding-top: 40px;
}

.col-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2D2926; /* Deep Corporate Charcoal */
  font-weight: 800;
  /* CHANGED: Left structural accent block pin colored in Brand Crimson Red */
  border-left: 3px solid #9E0B13; 
  padding-left: 15px;
}

.index-list {
  list-style: none;
  padding: 0;
}

.index-list li {
  margin-bottom: 18px;
}

.index-list a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: rgba(45, 41, 38, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.index-list a:hover {
  /* CHANGED: Links shift smoothly to Brand Crimson Red on hover interaction states */
  color: #9E0B13; 
  transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .index-columns { 
    grid-template-columns: 1fr; 
    gap: 30px; 
    padding-top: 30px;
  }
  
  .index-parchment { 
    padding: 40px 25px; 
    border-width: 4px; 
  }
  
  .index-title { 
    font-size: 2.2rem; 
  }
  
  .index-ornament {
    margin: 20px 0 35px;
  }
}

@media (max-width: 600px) {
  .sitemap-index-suite {
    padding: 40px 10px;
  }
  
  .index-title {
    font-size: 1.8rem;
  }
}

/* --- VALU INN SEA TAC FAQ LEDGER SUITE --- */
.faq-ledger-suite {
  background: #ffffff; /* Clean white for high legibility */
  padding: 100px 5%;
  border-top: 1px solid #ECEEF1; 
}

.faq-ledger-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* Sidebar Styling */
.faq-sidebar {
  flex: 0 0 350px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  /* CHANGED: Swapped teal to primary Logo Crimson Red for label tracking */
  color: #9E0B13; 
  display: block;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-headline {
  font-family: 'Montserrat', sans-serif; 
  font-size: 3.5rem;
  /* CHANGED: Titles set to Corporate Deep Charcoal for heavy presence */
  color: #2D2926; 
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 900;
}

.faq-headline span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  /* CHANGED: Script subtitles set to match the warm linen palette tone */
  color: rgba(45, 41, 38, 0.7); 
  text-transform: none; 
  letter-spacing: 0;
}

.faq-headline a {
  color: #2D2926;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-headline a:hover {
  color: #9E0B13;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: rgba(45, 41, 38, 0.85);
  line-height: 1.8;
  font-weight: 500;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #FAF9F6;
  transition: 0.3s;
}

.entry-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  /* CHANGED: Swapped mint numbers into high contrast Logo Crimson Red */
  color: #9E0B13; 
  font-weight: 800;
  padding-top: 5px;
}

.faq-entry h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  /* CHANGED: Question headers set to Deep Corporate Charcoal color metrics */
  color: #2D2926; 
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(45, 41, 38, 0.9);
  line-height: 1.8;
  font-weight: 500;
}

.faq-entry p a {
  color: #9E0B13;
  text-decoration: none;
  font-weight: 700;
}

.antique-link {
  /* CHANGED: Anchor actions defaulting directly to Brand Crimson Red text values */
  color: #9E0B13; 
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.antique-link:hover {
  /* CHANGED: Transitions to Deep Charcoal on hover */
  color: #2D2926; 
  /* CHANGED: Fine underline line changes into a primary Crimson Red highlight indicator stripe */
  border-bottom: 2px solid #9E0B13; 
  transform: translateX(5px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .faq-ledger-wrapper { flex-direction: column; gap: 50px; }
  .faq-sidebar { flex: none; text-align: left; }
  .sidebar-sticky { position: static; }
  .faq-headline { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .faq-entry { flex-direction: column; gap: 15px; }
  .entry-no { font-size: 1.3rem; }
  .faq-headline { font-size: 2.4rem; }
  .faq-ledger-suite { padding: 60px 5%; }
}