﻿/* Optimized Font Pairing: Montserrat (Headings) + Inter (Body) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@300;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: Four Winds Country Motel
   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 (FLOATING GHOST STYLE) */
.aero-top-bar {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.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 (Antique-Modern Detail) */
.status-indicator {
    display: flex;
    align-items: center;
    background: rgba(0, 172, 193, 0.15);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 172, 193, 0.4);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: #00ACC1;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px #00ACC1;
    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: #ffffff; 
    font-size: 11px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.aero-address a { 
    color: #0be4ff; 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 400; 
    transition: 0.3s;
}

.aero-address a:hover { 
    color: #00ACC1; 
}

.aero-socials { 
    display: flex; 
    gap: 18px; 
}

.aero-socials a { 
    color: #ffffff; 
    font-size: 15px; 
    opacity: 0.7; 
    transition: all 0.3s ease; 
}

.aero-socials a:hover { 
    opacity: 1; 
    color: #00ACC1; 
    transform: translateY(-2px);
}

/* 3. MAIN NAVIGATION WING (ASYMMETRIC DESIGN) */
.aero-main-nav {
    margin: 15px 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px 100px 100px 12px; /* The "Wing" Geometry */
    box-shadow: 0 20px 50px rgba(0, 56, 89, 0.18);
    padding: 12px 0;
    transition: all 0.4s ease;
}

.wing-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aero-logo img { 
    height: 55px; 
    width: auto; 
    display: block;
}

/* 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: #003859;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    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: #00ACC1;
    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; 
}

.aero-contact-stack { 
    display: flex; 
    flex-direction: column; 
    text-align: right; 
}

.aero-contact-stack .label { 
    font-size: 9px; 
    font-weight: 800; 
    color: #00ACC1; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.aero-contact-stack a { 
    color: #003859; 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 15px; 
}

/* Unique Book Button */
.aero-book-btn {
    background: #00ACC1;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 50px 5px 50px 50px; /* Antique Unique Corner */
    font-weight: 800; 
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 172, 193, 0.3);
}

.aero-book-btn:hover { 
    background: #003859; 
    transform: scale(1.05) translateY(-2px); 
    box-shadow: 0 15px 30px rgba(0, 56, 89, 0.4);
}

/* 5. MOBILE & IPAD RESPONSIVE */
.aero-mobile-trigger { 
    display: none; 
    background: none; 
    border: none; 
    flex-direction: column; 
    gap: 7px; 
    cursor: pointer;
    padding: 10px;
}

.aero-mobile-trigger span { 
    width: 30px; 
    height: 3px; 
    background: #003859; 
    border-radius: 2px;
    transition: 0.3s;
}

@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: 60px; 
        margin: 10px 15px; 
        padding: 10px 0; 
    }
}

/* --- AERO-SPLIT MOBILE MENU V5 --- */
.aero-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #003859; /* Navy 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 */
.menu-blade-left {
    background: #f4f7f9; /* Antique Off-White */
    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);
}

.aero-mobile-overlay.active .menu-blade-left { transform: translateX(0); }

.blade-logo { width: 180px; margin-bottom: 40px; }

.blade-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ACC1;
    font-weight: 800;
    margin-bottom: 8px;
}

.blade-item p, .blade-phone {
    font-size: 18px;
    color: #003859;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.license-line {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.blade-legal { font-size: 11px; }
.blade-legal a { color: #00ACC1; text-decoration: none; font-weight: 700; }
.blade-legal .sep { margin: 0 8px; color: #ccc; }

/* RIGHT SIDE: Navigation Panel */
.menu-blade-right {
    background: #003859;
    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 Unique Style */
.aero-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.close-text { font-size: 12px; letter-spacing: 3px; font-weight: 400; opacity: 0.6; }
.close-icon { font-size: 40px; font-weight: 200; }

/* Nav V5 Typography */
.mobile-nav-v5 { display: flex; flex-direction: column; gap: 30px; }

.mobile-nav-v5 a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-left: 50px;
    transition: 0.3s;
}

.mobile-nav-v5 a::before {
    content: attr(data-num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #00ACC1;
    font-weight: 400;
}

.mobile-nav-v5 a:hover {
    padding-left: 70px;
    color: #00ACC1;
}

/* 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%); }
    .menu-blade-right { order: 1; padding: 60px 30px; transform: translateY(-100%); }
    .aero-mobile-overlay.active .menu-blade-left,
    .aero-mobile-overlay.active .menu-blade-right { transform: translateY(0); }
    .blade-logo { width: 140px; }
}


/* --- ANTIQUE INSTRUMENT POD (REFINED) --- */
.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(248, 245, 240, 0.98); /* Antique Parchment */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 56, 89, 0.3); /* Navy Subtle Frame */
    border-bottom: 3px solid #003859; /* Heavy Base for "Weight" */
    border-radius: 100px;
    padding: 8px 12px 8px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 56, 89, 0.15);
}

/* Left Logo Area */
.pod-logo-area {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(0, 56, 89, 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: #003859;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.pod-nav a:hover {
    color: #00ACC1;
}

/* Right Actions */
.pod-actions { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.pod-icon-link { 
    color: #003859; 
    font-size: 16px; 
    transition: 0.3s; 
}

.pod-icon-link:hover { 
    color: #00ACC1; 
}

.pod-book-btn {
    background: #00ACC1; /* Direct Cyan for Attention */
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: 0.4s;
}

.pod-book-btn:hover { 
    background: #003859; 
    box-shadow: 0 8px 20px rgba(0, 56, 89, 0.3);
}
/* --- UPDATED TRIGGER LOGIC --- */

/* --- VISIBILITY REFINEMENTS --- */

/* 1. The Hamburger (Dots) - Higher Contrast */
.pod-trigger {
    display: none; 
    background: #ffffff; /* Brighter white for contrast */
    border: 2px solid #003859; /* Thicker, darker navy border */
    width: 44px; 
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 56, 89, 0.1);
}

.dots span { 
    width: 5px; 
    height: 5px; 
    background: #003859; /* Solid Navy Dots */
    border-radius: 50%; 
}

.pod-trigger:hover {
    background: #003859;
    border-color: #003859;
}

.pod-trigger:hover .dots span {
    background: #ffffff; /* Dots turn white on hover */
}

/* 2. Book Now Button - Better Hover State */
.pod-book-btn {
    background: #00ACC1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.pod-book-btn:hover {
    background: #ffffff; /* Switch to white background */
    color: #003859;      /* Text turns Navy */
    border: 1px solid #003859; /* Add Navy border */
    box-shadow: 0 8px 20px rgba(0, 56, 89, 0.15);
}

/* 3. Navigation Links Hover Contrast */
.pod-nav a:hover {
    color: #00ACC1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* --- MOBILE/IPAD VISIBILITY --- */
@media (max-width: 991px) {
    .pod-trigger { 
        display: flex; /* Hamburger becomes visible */
    }
    
    .pod-nav { 
        display: none; 
    }
    
    .pod-wrapper {
        padding-right: 15px; /* Give trigger more room */
    }
}

/* --- SECTION BASE --- */
.expert-hero {
    position: relative;
    width: 100%;
    height: 110vh;
    background: #001f33;
    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;
    filter: brightness(0.45) contrast(1.1);
    transform: scale(1.1);
    transition: transform 10s linear;
}

.ex-slide.active .ex-img-bg {
    transform: scale(1);
}

/* --- OVERLAY FRAME (The Overlapping Image) --- */
.ex-overlay-frame {
    position: absolute;
    top: 55%; /* Centered slightly lower for visual balance */
    right: 8%;
    width: 28vw;
    height: 38vw;
    max-height: 520px;
    z-index: 15;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    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; /* Vertical Center */
}

.ex-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 6%;
}

.ex-text-wrap {
    max-width: 650px;
    padding-top: 60px; /* Room for the fixed header */
}

/* --- TYPOGRAPHY --- */
.ex-subtitle {
    display: block;
    color: #00ACC1;
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 11px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.ex-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5.5vw, 6rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.ex-title span { color: #00ACC1; font-style: italic; font-weight: 400; }

.ex-desc {
    color: rgba(255,255,255,0.75);
    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: #00ACC1;
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.4s;
    border: 1px solid #00ACC1;
}

.ex-btn-main:hover { background: transparent; border-color: #fff; }

.ex-btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ex-btn-link:hover { color: #00ACC1; }

/* --- 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: #fff; font-family: 'Playfair Display'; font-size: 16px; }
.num-progress { width: 100px; height: 1px; background: rgba(255,255,255,0.2); position: relative; }
.num-bar { position: absolute; left: 0; top: 0; height: 100%; width: 25%; background: #00ACC1; transition: 0.8s; }

.ex-arrow-btn {
    width: 50px; height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.ex-arrow-btn:hover { background: #00ACC1; border-color: #00ACC1; }

/* ============================================================
   2. IPAD / TABLET OVERRIDES (992px to 1024px)
   ============================================================ */
@media (max-width: 1024px) {
	.ex-desc{
		display:none;
	}
	.expert-hero {
   
    height: 60vh;
   
}
    .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: 100px 0;
    background: #fcfbf9;
    overflow: hidden;
}

/* Background Texture Decor */
.ew-bg-accent {
    position: absolute;
    top: 10%; right: -5%;
    width: 40%; height: 80%;
    background: #eef1f2;
    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% 90%, 0 100%);
    cursor: pointer;
	left:50px;
}

.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: 2px solid #00ACC1;
    z-index: 2;
}

/* Play Button Styling */
.ew-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 56, 89, 0.3);
    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: 80px; height: 80px;
    background: #fff; color: #003859;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; font-size: 20px;
}

/* --- RIGHT SIDE: CONTENT CARD --- */
.ew-content-group {
    flex: 1;
    margin-left: -100px; /* The deconstructed overlap */
}

.ew-text-card {
    background: #fff;
    padding: 80px 70px;
    box-shadow: 30px 40px 100px rgba(0,0,0,0.08);
}

.ew-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 5px; color: #00ACC1;
    display: block; margin-bottom: 20px;text-align:center;
}

.ew-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #003859; line-height: 1.1; margin-bottom: 30px;
}

.ew-title span { font-style: italic; color: #777; font-weight: 400; }

.ew-lead { font-size: 20px; font-weight: 400; color: #1a1a1a; margin-bottom: 25px; line-height: 1.5; }
.ew-para { font-size: 16px; color: #666; line-height: 1.8; margin-bottom: 45px; }

/* Discovery Button */
.ew-btn-discover {
    background: none; border: none; display: flex; align-items: center;
    gap: 20px; cursor: pointer; padding: 0;
}

.btn-circle {
    width: 60px; height: 60px; border: 1px solid #003859; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.4s;
}

.btn-text { font-weight: 800; letter-spacing: 2px; font-size: 12px; color: #003859; }

.ew-btn-discover:hover .btn-circle { background: #003859; color: #fff; }

/* --- DEPTH PANEL --- */
.ew-depth-panel {
    position: fixed; 
    inset: 0; 
    background: #001d2e; /* Property Navy */
    z-index: 1000;
    display: flex; 
    flex-direction: column; /* Stack header and scroll area */
    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);
    color: #ffffff;
}

.ew-depth-panel.active { 
    transform: translateX(0); 
}

/* Scrollable Container */
.ew-depth-panel .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px; /* Space for the close button at top */
    overflow-y: auto; /* Enables scrolling */
    height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: #00c1d4 #001d2e;
}

/* Custom Scrollbar for Chrome/Safari */
.ew-depth-panel .container::-webkit-scrollbar {
    width: 6px;
}
.ew-depth-panel .container::-webkit-scrollbar-thumb {
    background: #00c1d4;
    border-radius: 10px;
}

/* Header Section Classes */
.ew-panel-header {
    text-align: center;
    margin-bottom: 80px;
}

.ew-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 5px;
    color: #00c1d4; /* Teal Accent */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

.panel-main-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(32px, 5vw, 60px); 
    line-height: 1.1;
    margin-bottom: 30px; 
}

.panel-main-title span { 
    font-style: italic; 
    color: #00c1d4; 
    font-weight: 400;
}

.ew-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8) !important; /* Overriding your inline grey */
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Layout */
.ew-grid-details { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 60px 100px; 
    padding-bottom: 50px;
}

.ew-detail-item { 
    border-left: 1px solid rgba(0, 193, 212, 0.3); 
    padding-left: 30px;
    transition: 0.3s;
}

.ew-detail-item:hover {
    border-left: 1px solid #00c1d4;
}

.ew-num { 
    color: #00c1d4; 
    font-family: 'Playfair Display', serif; 
    font-size: 32px; 
    display: block; 
    margin-bottom: 15px; 
}

.ew-detail-item h4 { 
    font-family: 'Playfair Display', serif;
    font-size: 26px; 
    margin-bottom: 15px; 
    color: #fff;
}

.ew-detail-item p { 
    font-family: 'Montserrat', sans-serif;
    color: rgba(255,255,255,0.7); 
    line-height: 1.8; 
    font-size: 16px;
}

/* Close Button - Sticky/Fixed */
.ew-panel-close {
    position: absolute; 
    top: 40px; 
    right: 5%; 
    z-index: 1001;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff; 
    padding: 12px 25px; 
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
    text-transform: uppercase;
}

.ew-panel-close:hover {
    background: #00c1d4;
    color: #001d2e;
    border-color: #00c1d4;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ew-grid-details { grid-template-columns: 1fr; gap: 40px; }
    .panel-main-title { font-size: 40px; }
    .ew-panel-close { right: 20px; top: 20px; padding: 10px 15px; }
}
/* --- VIDEO OVERLAY --- */
.ew-video-overlay {
    position: fixed; inset: 0; background: #000; z-index: 1000;
    display: none; flex-direction: column;
}

.ew-video-close {
    background: #fff; border: none; padding: 15px; font-weight: 800; cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ew-wrapper { flex-direction: column; }
    .ew-media-group { width: 100%; margin-bottom: 50px; }
    .ew-content-group { margin-left: 0; width: 100%; }
    .ew-text-card { padding: 40px; }
    .ew-image-canvas { width: 100%; height: 400px; }
    .ew-grid-details { grid-template-columns: 1fr; }
}


.kinetic-amenities {
    position: relative;
    padding: 100px 0;
    /* BACKGROUND: Deep Midnight Navy for maximum contrast */
    background: #001a2c; 
    overflow: hidden;
    height: 700px;
    display: flex;
    align-items: center;
}

.ka-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    /* CONTRAST: Very faint cyan so it feels like a ghost behind the dark */
    color: rgba(0, 172, 193, 0.03); 
    z-index: 1;
    letter-spacing: 25px;
    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: 350px;
    overflow: hidden;
    /* Soft edges for the vertical fade */
    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: 60px;
}

.ka-node {
    display: flex;
    align-items: center;
    gap: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    /* TEXT CONTRAST: Silver-grey so it looks faded but readable */
    color: rgba(255, 255, 255, 0.4); 
    font-weight: 500;
    transition: 0.4s ease;
}

.ka-node i {
    font-size: 24px;
    /* ICON CONTRAST: Electric Cyan for a 'glow' effect */
    color: #00ACC1; 
    filter: drop-shadow(0 0 8px rgba(0, 172, 193, 0.4));
}

/* OUTLINE CONTRAST: Thin white stroke for that 'ghost' architectural look */
.ka-node.ka-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

/* CENTER HERO */
.ka-hero { 
    text-align: center; 
    flex: 1; 
    background: radial-gradient(circle, rgba(0, 56, 89, 0.8) 0%, transparent 70%);
    padding: 60px 0;
}

.ka-eyebrow {
    font-size: 12px; 
    letter-spacing: 6px; 
    color: #00ACC1;
    font-weight: 800; 
    display: block; 
    margin-bottom: 25px;
    text-transform: uppercase;
}

.ka-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px; 
    color: #ffffff; /* Stark White for the main headline */
    line-height: 1.1; 
    margin-bottom: 35px;
}

.ka-title span { 
    font-style: italic; 
    color: rgba(255, 255, 255, 0.5); 
}

.ka-badges {
    display: flex; 
    justify-content: center; 
    gap: 40px;
}

.badge {
    font-size: 13px; 
    font-weight: 700; 
    color: #00ACC1; /* Cyan badges for pop */
    display: flex; 
    align-items: center; 
    gap: 12px; 
    letter-spacing: 2px;
    border: 1px solid rgba(0, 172, 193, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
}

/* ANIMATIONS */
.col-up .ka-track { animation: driftUp 40s linear infinite; }
.col-down .ka-track { animation: driftDown 40s linear infinite; }

@keyframes driftUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes driftDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

/* INTERACTION: Light up on hover */
.ka-node:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(10px);
}

@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); }
}


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@400;700&display=swap');

/* --- GLOBAL SECTION CONTAINER --- */
.room-cinematic {
    background-color:  #001a2c; /* Deep Charcoal/Navy background */
    padding: 30px 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 (ANTIQUE REVEAL) --- */
.rc-shutter-blade {
    position: absolute;
    top: 0; 
    width: 0%; 
    height: 100%;
    background: #001b2e; /* Dark Contrast Navy from screenshot */
    z-index: 15;
    transition: width 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#shutter-l { 
    left: 0; 
    border-right: 1px solid #00acc1; /* Cyan accent line */
}

#shutter-r { 
    right: 0; 
    border-left: 1px solid #00acc1; 
}

/* State when JS adds .switching class */
.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;
    background: #000;
}

.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.7) contrast(1.1);
    transition: filter 0.4s ease, transform 10s linear; /* Ken Burns support */
}

.rc-vignette {
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, #000 110%);
    pointer-events: none; 
    z-index: 2;
}



/* --- THE CONTENT CARD (FIXED DIMENSIONS) --- */
.rc-floating-card {
    position: relative; 
    z-index: 20;
    width: 550px; /* Fixed width */
    height: 650px; /* Fixed height ensures no jumping */
    margin-right: 5%;
    background: #001b2e; /* Dark Navy from screenshot */
    padding: 60px;
    border: 1px solid rgba(0, 172, 193, 0.2);
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Art Deco Framing Corners */
.rc-frame-corner {
    position: absolute; 
    width: 35px; 
    height: 35px;
    border: 1px solid #00acc1;
}
.top-left {     top: -58px;
    left: -38px; border-right: none; border-bottom: none; }
.bottom-right { bottom: -58px;
    right: -36px; border-left: none; border-top: none; }

/* --- TYPOGRAPHY --- */
.rc-card-inner {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.rc-eyebrow {
    color: #00acc1; 
    font-size: 11px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 5px;
    display: block; 
    margin-bottom: 20px;
}

.antique-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; 
    color: #ffffff; 
    line-height: 1.1; 
    margin-bottom: 15px;
    font-style: italic;
}

.rc-tags-row { 
    color: #00acc1; 
    font-size: 14px; 
    font-style: italic; 
    margin-bottom: 30px; 
    opacity: 0.8;
}

.desc-clamp { 
    height: 140px; /* Fixed height for description block */
    overflow: hidden; 
    margin-bottom: 30px;
}

.antique-copy {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; 
    color: #b0bec5; /* Muted gray-blue */
    line-height: 1.7;
}

/* --- SPECS SECTION --- */
.rc-specs {
    border-top: 1px solid rgba(0, 172, 193, 0.2);
    border-bottom: 1px solid rgba(0, 172, 193, 0.2);
    padding: 25px 0; 
    margin-bottom: 40px;
    display: flex; 
    justify-content: space-between;
}

.spec-label { 
    display: block; 
    font-size: 10px; 
    color: #00acc1; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.spec-value { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 22px; 
    color: #ffffff; 
    font-weight: 600; 
}

/* --- FOOTER & NAVIGATION --- */
.rc-footer { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.rc-button-antique {
    background: #00acc1; 
    color: #ffffff; 
    padding: 16px 35px;
    text-decoration: none; 
    font-size: 12px; 
    font-weight: 700;
    letter-spacing: 2px; 
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.rc-button-antique:hover {
    background: #ffffff;
    color: #001b2e;
    transform: translateY(-3px);
}

.rc-nav-group { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.antique-btn {
    background: transparent; 
    border: 1px solid #00acc1; 
    color: #00acc1;
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.3s;
}

.antique-btn:hover { 
    background: rgba(0, 172, 193, 0.1); 
    color: #ffffff;
}

.rc-counter-wrap { 
    color: #00acc1; 
    font-family: 'Montserrat'; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    font-size: 13px;
}

.counter-line { 
    width: 35px; 
    height: 2px; 
    background: #00acc1; 
}

/* --- RESPONSIVE ADAPTATION --- */
@media (max-width: 1100px) {
    .rc-container { 
        flex-direction: column; 
        justify-content: flex-start;
        padding-top: 0;
    }
    .rc-visual-canvas { 
        width: 100%; 
        height: 500px; 
        position: relative; 
    }
    .rc-floating-card { 
        width: 95%; 
        margin: -80px auto 0; 
        height: auto;
        padding: 50px 30px; 
    }
    .desc-clamp { height: auto; }
}


.kinetic-attractions {
  position: relative;
  height: 90vh;
  min-height: 750px;
  background: #000c14;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  /* This ensures the section creates a proper stacking context for the sticky effect */
  perspective: 1px; 
}

/* --- CINEMATIC BG EFFECTS --- */
.ka-bg-container { 
  position: absolute; 
  inset: 0; 
  z-index: 1;
  /* Fixed attachment creates the "sticky" feel as you scroll past */
  overflow: hidden;
}
.ka-bg-slide {
  position: absolute; 
  inset: 0;
  background-size: cover; 
  background-position: center;
  /* KEY CHANGE: Fixed attachment makes the image stay pinned while content moves */
  background-attachment: fixed; 
  opacity: 0; 
  transform: scale(1.1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 10s linear;
}
.ka-bg-slide.is-active { opacity: 1; transform: scale(1); }

/* The "Visibility Fix" Vignette */
.ka-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, 
    rgba(0,12,20,0.95) 0%, 
    rgba(0,12,20,0.6) 40%, 
    rgba(0,12,20,0.2) 100%);
  z-index: 2;
}

/* --- CONTENT AREA --- */
.ka-content-wrapper {
  position: relative; z-index: 10;
  height: 100%; display: flex; flex-direction: column;
  padding: 80px 8%;
}

.ka-eyebrow {
  color: #00acc1; letter-spacing: 5px; text-transform: uppercase;
  font-size: 11px; font-weight: 700;
}

.ka-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; color: #fff; margin-top: 10px; font-style: italic;
}

/* --- THE INFO SHIELD (High Visibility) --- */
.ka-main-stage {
  margin-top: auto; display: flex;
  justify-content: space-between; align-items: flex-end;
  padding-bottom: 50px;
}

.ka-info-area {
  max-width: 500px;
  background: rgba(0, 27, 46, 0.4); /* Glassmorphism tint */
  backdrop-filter: blur(10px);
  padding: 40px;
  border-left: 2px solid #00acc1;
  box-shadow: 20px 20px 50px rgba(0,0,0,0.3);
}

.ka-info-block { display: none; }
.ka-info-block.is-active { display: block; animation: fadeInUp 0.6s ease forwards; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ka-tag { color: #00acc1; font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; display: block; }
.ka-info-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: #fff; margin-bottom: 15px; }
.ka-info-block p { color: #b0bec5; line-height: 1.8; font-size: 17px; margin-bottom: 25px; }

.ka-btn {
  color: #fff; text-decoration: none; font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 2px;
  border-bottom: 2px solid #00acc1; padding-bottom: 5px;
}

/* --- NAVIGATION DOCK --- */
.ka-dock {
  display: flex; gap: 40px;
  border-top: 1px solid rgba(0, 172, 193, 0.3);
  padding-top: 20px;
}

.ka-nav-item { cursor: pointer; position: relative; opacity: 0.4; transition: 0.3s; }
.ka-nav-item.is-active { opacity: 1; }
.ka-nav-item.is-active::after {
  content: ''; position: absolute; top: -21px; left: 0;
  width: 100%; height: 2px; background: #00acc1;
}

.ka-num { display: block; font-size: 15px; color: #00acc1; margin-bottom: 5px; }
.ka-label { color: #fff; font-size: 19px; font-weight: 600; white-space: nowrap; }


/* --- TABLET & MOBILE REFINEMENT --- */
@media (max-width: 1024px) {
  .kinetic-attractions {
    height: auto; /* Allow section to grow with content */
    min-height: 50vh;
    padding: 60px 0;
  }

  .ka-content-wrapper {
    padding: 40px 5%;
    justify-content: flex-start;
  }

  .ka-title {
    font-size: 42px; /* Scale down heading */
  }

  .ka-main-stage {
    flex-direction: column; /* Stack Info and Dock */
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .ka-info-area {
    max-width: 100%; /* Take full width */
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    order: 1; /* Keep info above the dock */
  }

  /* --- SCROLLABLE DOCK FOR MOBILE --- */
  .ka-dock {
    width: 100%;
    order: 2;
    overflow-x: auto; /* Allow side-scrolling if items don't fit */
    padding-bottom: 15px;
    gap: 25px;
    border-top: 1px solid rgba(0, 172, 193, 0.2);
    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbar but keep functionality */
  .ka-dock::-webkit-scrollbar {
    display: none;
  }

  .ka-nav-item {
    flex: 0 0 auto; /* Prevent items from shrinking */
  }

  .ka-nav-item.is-active::after {
    top: -21px; /* Maintain alignment with border */
  }
}

@media (max-width: 768px) {
  .ka-title {
    font-size: 32px;
  }

  .ka-info-block h3 {
    font-size: 28px;
  }

  .ka-info-block p {
    font-size: 15px;
    line-height: 1.6;
  }

  .ka-label {
    font-size: 16px;
  }
  
  /* Ensure the background image doesn't get lost */
  .ka-vignette {
    background: linear-gradient(180deg, 
      rgba(0,12,20,0.8) 0%, 
      rgba(0,12,20,0.95) 100%);
  }
}

/* --- EDITORIAL ARCHIVE SECTION --- */
.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: RIGHT-ALIGNED & MODERN --- */
.mke-edit-header {
  display: flex;
  justify-content: flex-end; /* Pushes content to the right */
  align-items: flex-end;
  margin-bottom: 40px;
}

.mke-edit-title-wrap {
  text-align: right; /* Ensures text inside the wrapper aligns right */
}

.mke-edit-eyebrow {
  color: #00acc1;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  display: block;
}

.mke-edit-title {
  color: #00335a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  margin: 5px 0 0 0;
  line-height: 1;
}

.mke-edit-title span { 
  font-style: italic; 
  font-weight: 300; 
}

.mke-edit-line {
  height: 1px;
  background: #e0e0e0;
  flex-grow: 1; /* Fills the space on the left */
  margin-right: 40px; /* Space between line and text */
  margin-left: 0; /* Reset previous left margin */
  margin-bottom: 15px;
  order: -1; /* Moves the line to the first position (the left) */
}

/* --- 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: #f8f8f8;
  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 1s ease;
}

/* --- 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 */

/* --- MINIMAL OVERLAYS --- */
.mke-edit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,51,90,0.7) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mke-num {
  font-family: 'Cormorant Garamond', serif;
  color: #00acc1;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 5px;
}

.mke-edit-overlay p {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* --- INTERACTION --- */
.mke-edit-card:hover {
  box-shadow: 0 15px 30px rgba(0,51,90,0.1);
  z-index: 10;
}

.mke-edit-card:hover img { transform: scale(1.08); }
.mke-edit-card:hover .mke-edit-overlay { opacity: 1; }

/* --- RESPONSIVE FIXES --- */
/* --- ENHANCED RESPONSIVE ALIGNMENT --- */

/* 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;
  }
}
/* --- MILWAUKEE AIRPORT ARCHITECTURAL FOOTER --- */
.mke-footer-wrap {
  background-color: #001a2c; /* Deep Navy to match your property branding */
  padding-top: 90px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.mke-footer-container {
  max-width: 1400px;
  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: THE EXPERT SOLUTION --- */
.mke-logo-pod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff; /* Pure white background so logo is perfectly visible */
  padding: 15px 25px;
  border-radius: 4px; /* Slight roundness for modern look */
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Adds depth */
  border-bottom: 3px solid #00acc1; /* Cyan accent line to tie into branding */
}

.mke-footer-logo {
  height: 65px; /* Adjusted height for the container */
  width: auto;
  display: block;
  /* NO FILTERS HERE - Logo stays original color */
}

/* Ensure the slogan adjusts to the new pod spacing */
.mke-footer-slogan {
  margin-top: 2px;
}

.mke-footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 45px;
  font-weight: 300;
  color:#fff;
}

.mke-footer-slogan span { 
  font-style: italic; 
  color: #00acc1; /* Vibrant Cyan from your welcome section */
}

/* --- ACTION BUTTON --- */
.mke-btn-primary {
  background: #00acc1; /* Cyan button */
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  transition: 0.3s ease;
}

.mke-btn-primary:hover { 
  background: #ffffff;
  color: #00335a; 
}

.mke-action-group { display: flex; align-items: center; gap: 25px; }

/* --- UPDATED SOCIAL GROUP --- */
.mke-footer-social {
  display: flex;
  align-items: center;
  gap: 20px; /* This creates the even space between the icons */
}

.mke-footer-social a { 
  color: #fff; 
  font-size: 18px; 
  opacity: 0.7;
  transition: 0.3s ease;
  display: inline-flex; /* Ensures icons are centered if you add a background later */
  text-decoration:none;
}

.mke-footer-social a:hover { 
  opacity: 1; 
  color: #00acc1; 
  transform: translateY(-3px); /* Subtle lift effect for a premium feel */
}
/* --- DATA PILLARS --- */
.mke-footer-details {
  flex: 2;
  display: flex;
  gap: 70px;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 70px;
}

.mke-detail-col { flex: 1; }

.mke-detail-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #00acc1; /* Cyan Label */
  margin-bottom: 35px;
  font-weight: 700;
  text-decoration:none;
}

/* --- 2-COLUMN LINKS GRID --- */
.mke-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}

.mke-quick-grid a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mke-quick-grid a:hover {
  color: #00acc1;
  transform: translateX(5px);
}

/* --- CONTACT SECTION --- */
.mke-address {
  font-style: normal;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 25px;
}

.mke-phone {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.mke-phone:hover { color: #00acc1; }

/* --- LEGAL FLOOR --- */
/* --- CORRECTED LEGAL FLOOR STYLING --- */
.mke-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 60px;
  background-color: #002a4a; /* Slightly deeper navy for the floor */
}

.mke-ownership-statement {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Montserrat', sans-serif;
}

.mke-ownership-statement strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.mke-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mke-legal-links a, 
.mke-f-credit, 
.mke-f-credit a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.mke-sep {
  color: #00acc1; /* Brand Cyan separator */
  margin: 0 12px;
  font-size: 10px;
}

.mke-legal-links a:hover, 
.mke-f-credit a:hover {
  color: #00acc1; /* Cyan highlight on hover */
}

.mke-f-credit a {
  font-weight: 600;
}

/* --- 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%;
  }
}

/* --- UNIQUE 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;
  background: linear-gradient(to top, #00acc1, 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: #00acc1;
  transition: transform 0.3s ease;
}

.mke-top-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mke-arrow-wrap i {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* 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(-5px); /* Arrow floats up */
  color: #00335a;
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .mke-back-to-top { right: 20px; bottom: 20px; }
  .mke-scroll-line { display: none; } /* Simpler on mobile */
}

/* 2. Adjust the Hero to fill the space behind the header */
.inner-hero {
  position: relative;
  height: 50vh; 
  min-height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px; 
  background-color: #001d2e; /* Property Deep Navy */
  
}

.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;
  /* Updated gradient: Deep Navy to transparent to Deep Navy (matches layout style) */
  background: linear-gradient(to bottom, 
    rgba(0, 29, 46, 0.8) 0%, 
    rgba(0, 29, 46, 0.2) 50%, 
    rgba(0, 29, 46, 0.9) 100%);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.inner-subtitle {
  /* Matching the clean, spaced-out sans-serif in the layout */
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #00c1d4; /* Property Cyan/Teal accent */
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.inner-title {
  /* Matching the serif headline style (e.g., Playfair or Prata) */
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  
}

/* Teal/Cyan Divider */
.inner-divider {
  width: 50px;
  height: 3px;
  background-color: #00c1d4; /* Matching the Teal button/border color */
  margin: 20px auto;
}

.inner-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .inner-hero {
    height: 40vh;
  }
  .inner-title {
    font-size: 2.5rem;
  }
  .inner-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .inner-desc {
    font-size: 0.95rem;
    max-width: 85%;
  }
}


/* --- Clarion Pointe Ledger Amenities Section --- */
.steward-ledger {
  /* Updated to property Navy */
  background-color: #001d2e; 
  background-image: linear-gradient(rgba(0, 29, 46, 0.95), rgba(0, 29, 46, 0.95)), url('../images/new/milwaukee-pattern.jpg');
  background-size: cover;
  background-attachment: fixed;
  padding: 20px 5%;
  font-family: 'Playfair Display', serif;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Double border now in Property Navy */
  border: 6px double #001d2e; 
  padding: 30px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
}

/* Header Styling */
.ledger-header { 
  text-align: center; 
  margin-bottom: 50px; 

}

.header-flourish { 
  font-size: 32px; 
  color: #00c1d4; /* Clarion Teal */
  margin-bottom: 15px; 
}

.ledger-header h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  color: #001d2e; /* Navy */
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 2px;
  font-weight: 700;
  
}

.ledger-subtitle { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.9rem; 
  letter-spacing: 4px; 
  color: #00c1d4; /* Teal accent */
  font-weight: 600; 
  margin: 15px 0; 
  text-transform: uppercase;
}

.ledger-intro-text { 
  max-width: 1300px; 
  margin: 25px auto; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.05rem; 
  color: #555; 
  line-height: 1.7; 
}

.ledger-line { 
  height: 3px; 
  width: 60px; 
  background: #00c1d4; 
  margin: 30px auto; 
}

/* Popular Facilities Bar (New addition to match layout) */
.popular-facilities-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
  padding: 20px;
  background: #f4f7f9;
  border-radius: 8px;
}

.popular-facilities-bar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #001d2e;
  text-transform: uppercase;
}

.popular-facilities-bar i {
  color: #00c1d4;
  margin-right: 8px;
}

/* Grid & Panel Layout */
.ledger-grid { 
  display: flex; 
  gap: 25px; 
  align-items: stretch; 
}

.ledger-panel { 
  flex: 1; 
  border: 1px solid #e1e8ed; 
  padding: 40px 25px; 
  position: relative; 
  background: #fff;
  transition: all 0.4s ease;
}

/* Highlighted Center Panel - Property Navy & Teal */
.ledger-panel.highlight {
  background: #001d2e;
  color: #ffffff;
  border: 1px solid #00c1d4;
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 29, 46, 0.4);
  z-index: 2;
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid rgba(0, 193, 212, 0.2); 
  padding-bottom: 25px; 
  margin-bottom: 30px; 
}

.panel-head i { 
  font-size: 28px; 
  color: #00c1d4; 
  margin-bottom: 15px; 
  display: block; 
}

.panel-head h3 { 
  font-size: 1.4rem; 
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px; 
  
}

.panel-tag { 
  display: block; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.75rem; 
  color: #888; 
  text-transform: uppercase; 
  margin-top: 10px; 
  letter-spacing: 2px;
}

.ledger-panel.highlight .panel-tag {
  color: #00c1d4;
}

/* Subgroups & Internal Lists */
.ledger-subgroup h4 { 
  font-size: 0.9rem; 
  color: #001d2e; 
  text-transform: uppercase; 
  margin: 25px 0 12px; 
  border-left: 3px solid #00c1d4; 
  padding-left: 10px;
  display: block;
  letter-spacing: 1px;
}

.ledger-items li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #444; 
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.ledger-items li::before {
  content: "→"; 
  color: #00c1d4;
  font-size: 14px;
  margin-right: 10px;
}

/* Featured Center List (Navy Panel) */
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.feature-list i { 
  color: #00c1d4; 
  width: 35px; 
  font-size: 16px; 
  text-align: center;
}

.ledger-subgroup-alt h4 { 
  color: #00c1d4; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  margin-top: 30px; 
  letter-spacing: 2px;
}

.ledger-subgroup-alt p { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 13px; 
  color: #d1d1d1; 
  line-height: 1.6; 
  margin-top: 10px;
}

/* Safety Footer */
.ledger-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #777;
}

.ledger-footer i {
  color: #001d2e;
  margin-right: 8px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ledger-grid { flex-direction: column; gap: 30px; }
  .ledger-panel.highlight { transform: none; order: -1; }
}


/* ============================================================
   THINGS TO DO - Four Winds Country Motel MILWAUKEE AIRPORT
   Navy: #001d2e | Teal/Cyan: #00c1d4 | Soft Grey: #f4f7f9
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
  /* Updated to Property Navy Gradient */
  background: linear-gradient(rgba(0, 29, 46, 0.9), rgba(0, 29, 46, 0.8)), 
              url('../images/new/milwaukee-skyline-bg.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 40px 0;
  overflow: clip;
  font-family: 'Playfair Display', serif;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
  width: 100%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 40px auto;
  /* Double border in Navy to match layout style */
  border: 6px double #001d2e; 
  background: #ffffff;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ttd-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #001d2e; /* Navy */
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1.1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-style: italic; /* Matching the italic style in your layout */
}

.ttd-main-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: #00c1d4; /* Teal Accent */
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px; 
  font-style: normal;
}

.ttd-main-intro {
  max-width: 1200px;
  margin: 25px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

.header-divider {
  width: 80px;
  height: 3px;
  background: #00c1d4; /* Teal Divider */
  margin: 25px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  border: 6px double #001d2e; 
  background: #ffffff; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* 4. SCROLLING NARRATIVE COLUMN (LEFT) */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.narrative-block {
  min-height: 80vh; 
  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: 13px;
  color: #00c1d4; /* Teal */
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.narrative-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #001d2e; /* Navy */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.narrative-divider {
  width: 50px;
  height: 4px;
  background: #00c1d4; 
  margin: 20px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #444444;
  max-width: 450px;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
  flex: 1.2;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  border-left: 1px solid #e1e8ed;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.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.05);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* 6. VERTICAL PROGRESS BAR */
.spotlight-progress {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  height: 250px;
  width: 2px;
  background: #e1e8ed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  background: #00c1d4; /* Teal Progress */
  transition: height 0.5s ease;
  height: 25%;
}

.progress-total {
  position: absolute;
  bottom: -40px;
  left: -10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #001d2e;
}

/* 7. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .spotlight-wrapper { 
    flex-direction: column; 
    border-width: 4px;
  }
  
  .ttd-section-header { 
    border-width: 4px; 
  }

  .spotlight-visuals { 
    height: 45vh; 
    width: 100%;
    position: relative; 
    border-left: none;
    border-bottom: 1px solid #e1e8ed;
  }

  .spotlight-narrative { 
    width: 100%; 
    padding: 40px 25px; 
  }

  .narrative-block { 
    min-height: auto; 
    padding: 40px 0; 
    opacity: 1; 
  }

  .spotlight-progress { display: none; }
}
.ttd-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #00c1d4; /* Property Teal */
  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: 1px solid #00c1d4;
}

.ttd-btn i {
  margin-left: 10px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.ttd-btn:hover {
  background-color: #001d2e; /* Navy on Hover */
  border-color: #001d2e;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 193, 212, 0.3);
}

.ttd-btn:hover i {
  transform: translateX(5px);
}


/* ============================================================
   NEARBY LEDGER - Four Winds Country Motel BRAND SYNC
   Deep Navy: #001d2e | Electric Teal: #00c1d4 | Ice Grey: #f4f7f9
   ============================================================ */

.nearby-ledger-section {
  /* Using the Property Navy gradient for the outer section texture */
  background: linear-gradient(rgba(0, 29, 46, 0.9), rgba(0, 29, 46, 0.85)), 
              url('../images/new/milwaukee-map-bg.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 60px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Updated to Clarion Navy Double Frame */
  border: 6px double #001d2e; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.nearby-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #e1e8ed; /* Clean professional grey border */
  padding: 35px;
  background: #fff;
  transition: all 0.3s ease;
}

/* --- THE HIGHLIGHT PANEL (PROPERTY NAVY) --- */
/* Matches the Footer/Accent sections in your layout */
.nearby-panel.highlight {
  background: #001d2e; /* Solid Navy Background */
  color: #ffffff;
  border: 1px solid #00c1d4; /* Teal Accent Border */
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 29, 46, 0.4);
  z-index: 2;
}

.nearby-panel.highlight .panel-heading {
  color: #00c1d4; /* Teal heading for Navy background */
  border-bottom-color: rgba(0, 193, 212, 0.3);
}

.nearby-panel.highlight .nearby-list li {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.1);
}

.nearby-panel.highlight .panel-heading i {
  color: #00c1d4;
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #001d2e; /* Navy */
  border-bottom: 3px solid #00c1d4; /* Teal Underline */
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-style: italic; /* Matching layout headline style */
}

.panel-heading i {
  color: #00c1d4; /* Teal Icons */
  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 #f0f4f7;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #444;
  transition: all 0.3s ease;
}

.nearby-list li:hover {
  color: #00c1d4;
  padding-left: 8px;
}

.nearby-list li:last-child {
  border-bottom: none;
}

/* --- DISTANCE STYLING --- */
.distance {
  color: #001d2e; /* Navy for weight */
  background: #f4f7f9; /* Soft Ice Grey */
  padding: 5px 12px;
  border-radius: 2px; /* Sharper edges to match modern look */
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 15px;
  white-space: nowrap;
  border-left: 2px solid #00c1d4; /* Teal accent on the badge */
}

.nearby-panel.highlight .distance {
  color: #ffffff;
  background: #00c1d4; /* High contrast for highlight panel */
  border-left: none;
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    /* Reduce large side padding from desktop to fit screens */
    padding: 40px 15px; 
    background-attachment: scroll; /* Better performance on mobile browsers */
  }

  .ledger-container {
    /* Double frame slightly thinner for smaller screens */
    border-width: 4px;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .nearby-grid {
    display: grid;
    /* Forces 2-column layout for iPads/Tablets */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; /* Allows grid to shrink panels properly */
    padding: 20px 15px;
    /* Remove scale effects to prevent edge-clipping */
    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;
    /* Aligns distance to the top if text wraps */
    align-items: flex-start; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    /* Forces 1-column layout for Phones */
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .nearby-ledger-section {
    padding: 30px 10px;
  }

  .ledger-container {
    padding: 25px 10px;
  }
  
  .nearby-panel {
    padding: 18px 12px;
  }
}

/* --- Clarion Modern Location Styles --- */
.clarion-modern-location {
  position: relative;
  background: #001d2e; /* Property Navy */
  padding: 100px 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%;
  border: 1px solid rgba(0, 193, 212, 0.2);
  filter: contrast(1.05);
}

/* Floating Geo Tag */
.geo-tag {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #001d2e; /* Navy */
  color: #fff;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid #00c1d4; /* Teal Accent */
  box-shadow: 10px 10px 30px rgba(0,0,0,0.4);
}

.coord-divider {
  width: 30px;
  height: 1px;
  background: #00c1d4;
}

/* Floating Glass Panel */
.info-glass-panel {
  flex: 0 0 650px;
  background: rgba(0, 29, 46, 0.95); /* Deep Navy Transparency */
  backdrop-filter: blur(12px);
  margin-left: -80px; 
  
  margin-bottom: 50px;
  padding: 50px;
  z-index: 2;
  border-left: 5px solid #00c1d4; /* Teal Accent Bar */
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
}

.brand-accent-line {
  width: 40px;
  height: 3px;
  background: #00c1d4; 
  margin-bottom: 20px;
}

.location-subtitle {
  color: #00c1d4;
  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: 'Playfair Display', serif;
  font-size:30px;
  margin: 0 0 20px 0;
  font-style: italic; /* Matching layout style */
}

.location-description {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 35px;
  font-weight: 300;
  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: 'Playfair Display', serif;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Route Form Styling */
.route-form {
  border-top: 1px solid rgba(0, 193, 212, 0.2);
  padding-top: 25px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-group input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0, 193, 212, 0.3);
  padding: 12px 15px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  outline: none;
}

.route-submit-btn {
  background: #00c1d4; /* Teal */
  color: #ffffff;
  border: none;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.route-submit-btn:hover {
  background: #ffffff;
  color: #001d2e;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .journal-wrapper { flex-direction: column; }
  .info-glass-panel { 
    margin-left: 0; 
    margin-top: -40px; 
    width: 95%; 
    align-self: center;
    padding: 35px;
  }
  .map-window-wrapper { height: 450px; }
  .geo-tag { left: 10px; bottom: 60px; }
}

/* --- Clarion Contact Suite Styling --- */
.contact-ledger-suite {
  padding: 60px 5%;
  /* Updated to Property Navy Gradient with a professional overlay */
  background: linear-gradient(rgba(0, 29, 46, 0.9), rgba(0, 29, 46, 0.85)), 
              url('../images/new/milwaukee-map-bg.jpg'); 
  background-size: cover;
  background-attachment: fixed;
}

.ledger-outer-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  /* Clean, professional border matching your property layout */
  border: 1px solid #e1e8ed;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 29, 46, 0.15);
}

.ledger-accent-sidebar {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Sidebar now uses Property Navy */
  background-color: #001d2e;
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #001d2e; /* Navy */
  margin-bottom: 15px;
  font-style: italic; /* Matching your property's headline style */
}

.ledger-headline span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
  color: #00c1d4; /* Teal Accent for the Hotel Name */
}

.ledger-subtext {
  font-family: 'Montserrat', sans-serif;
  color: #555;
 /* max-width: 750px;*/
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 1.05rem;
}

.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: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: #00c1d4; /* Teal Labels */
}

.item-data p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.estate-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #001d2e;
  font-weight: 700;
}

.ledger-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #001d2e; /* Navy Links */
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  color: #00c1d4; /* Hover to Teal */
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ledger-outer-frame { flex-direction: column; }
  .ledger-accent-sidebar { width: 100%; height: 15px; }
  .ledger-details-row { grid-template-columns: 1fr; gap: 35px; }
  .ledger-main-content { padding: 40px 25px; }
  .ledger-headline { font-size: 2rem; }
}

/* --- Clarion Sitemap Index Styling --- */
.sitemap-index-suite {
  padding: 80px 20px;
  /* Updated to Property Navy Gradient with a modern Milwaukee backdrop */
  background: linear-gradient(rgba(0, 29, 46, 0.9), rgba(0, 29, 46, 0.85)), 
              url('../images/new/milwaukee-skyline.jpg'); 
  background-size: cover;
  background-attachment: fixed;
}

.index-parchment {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  /* Double border in Navy to match the "Ledger" style used elsewhere */
  border: 6px double #001d2e;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  position: relative;
}

.index-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #00c1d4; /* Clarion Teal */
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.index-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #001d2e; /* Navy */
  margin: 0 0 20px;
  font-weight: 700;
  font-style: italic; /* Matching layout's elegant headers */
}

.index-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 1050px;
}

.index-ornament {
  width: 80px;
  height: 4px;
  background: #00c1d4; /* Teal Accent Bar */
  margin: 30px 0 50px;
}

.index-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.col-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #001d2e; /* Navy */
  border-left: 3px solid #00c1d4; /* Teal accent indicator */
  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: #333;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.index-list a:hover {
  color: #00c1d4; /* Hover to Teal */
  transform: translateX(10px); /* Modern slide-in effect */
}

/* Responsive */
@media (max-width: 992px) {
  .index-columns { grid-template-columns: 1fr; gap: 30px; }
  .index-parchment { padding: 40px 25px; border-width: 4px; }
  .index-title { font-size: 2.2rem; }
  .index-columns { padding-top: 30px; }
}

/* --- Four Winds Country Motel FAQ LEDGER SUITE --- */
.faq-ledger-suite {
  background: #ffffff; /* Clean white for high legibility */
  padding: 100px 5%;
  border-top: 1px solid #e1e8ed; /* Professional light grey border */
}

.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;
  color: #00c1d4; /* Clarion Teal */
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #001d2e; /* Property Navy */
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-headline span {
  display: block;
  font-style: italic; /* Matches the elegant "Pointe" or "Relax" style */
  font-weight: 400;
  color: #00c1d4; /* Teal Accent */
  text-transform: none; 
  letter-spacing: 0;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  opacity: 0.9;
}

.faq-stamp {
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #001d2e;
  letter-spacing: 2px;
  border: 1px solid #00c1d4; /* Teal Frame */
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f4f7;
  transition: 0.3s;
}

.entry-no {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #00c1d4; /* Teal Numbering */
  font-weight: 700;
  padding-top: 5px;
}

.faq-entry h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #001d2e; /* Property Navy */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.antique-link {
  color: #00c1d4; /* Electric Teal */
  text-decoration: none;
  font-weight: 700;
  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 {
  color: #001d2e; /* Transitions to Navy on hover */
  border-bottom: 2px solid #001d2e;
  padding-left: 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%; }
}