/* ==========================================
   Modern Web 3.0 Design System
   ========================================== */

:root {
    /* Living Room-Inspired Color Palette */
    /* Primary Background - Off-White Walls & Rug */
    --white: #FFFFFF;
    --light: #F8F9FA;
    --off-white: #FEFEFE;

    /* Headlines & Text - Dark Grey Sofa */
    --dark: #4A4A4A;
    --text-primary: #5A5A5A;
    --text-secondary: #7A7A7A;

    /* Primary CTA - Bright Orange Chair/Blanket */
    --accent: #FF6B35;
    --accent-light: #FF8C61;
    --accent-dark: #E85A28;
    --accent-hover: #D94E1F;

    /* Secondary Accent - Deep Blue Ottoman */
    --primary: #1A365D;
    --primary-light: #2D4A7C;
    --primary-dark: #0F2544;

    /* Subtle Interactivity - Dark Rug Pattern */
    --gray: #8B8B8B;
    --gray-light: #E5E7EB;
    --gray-medium: #D1D5DB;
    --gray-dark: #6B7280;
    --border-color: #D1D5DB;

    /* Detailed Highlights - Multi-color Dotted Pillow */
    --highlight-coral: #FF6B6B;
    --highlight-teal: #4ECDC4;
    --highlight-yellow: #FFE66D;
    --highlight-purple: #A8DADC;

    /* Shadows */
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.15);

    /* Refined Gradients */
    --gradient-primary: linear-gradient(135deg, #1A365D 0%, #2D4A7C 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --gradient-dark: linear-gradient(180deg, rgba(74, 74, 74, 0.95) 0%, rgba(74, 74, 74, 0.98) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 54, 93, 0.15) 0%, rgba(26, 54, 93, 0.5) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(26, 54, 93, 0.4) 0%, rgba(26, 54, 93, 0.85) 100%);

    /* Enhanced Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;

    /* Letter Spacing for Luxury Feel */
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.03em;
    --letter-spacing-wider: 0.08em;

    /* Refined Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Smooth Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radius System */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 50%;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-hover-bg: rgba(255, 255, 255, 0.3);
    --glass-hover-border: rgba(255, 255, 255, 0.6);

    /* Button Sizes */
    --btn-padding-lg: 1.125rem 3rem;
    --btn-padding-md: 0.875rem 2rem;
    --btn-padding-sm: 0.625rem 1.25rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Metro Train Icon Size */
    --train-icon-size: 37.5px;

    /* Content Width */
    --content-max-width: 1000px;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--off-white);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ==========================================
   Typography
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: var(--letter-spacing-tight);
}

h1 {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    letter-spacing: var(--letter-spacing-normal);
    margin-bottom: var(--spacing-sm);
}

/* ==========================================
   Utility Classes
   ========================================== */

.container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        margin-left: auto;
    }
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: var(--content-max-width);
    margin: 0 auto var(--spacing-lg);
}

/* ==========================================
   Mobile Hamburger Menu
   ========================================== */

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 50px;
    height: 50px;
    background: var(--primary);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(26, 54, 93, 0.3);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    border-color: var(--accent-light);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-xl);
}

.mobile-menu-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--accent-light);
}

.mobile-menu-link:hover::after {
    width: 100%;
}

.mobile-menu-link.active {
    color: var(--accent);
    font-weight: 500;
}

.mobile-menu-link.active::after {
    width: 100%;
}

/* Show mobile menu on mobile/tablet */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

/* Navigation - Desktop uses Metro Track, Mobile uses Hamburger */

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        var(--gradient-hero),
        url('images/property-living-room.webp') center/cover no-repeat;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-20px); }
}

/* ==========================================
   Metro Track Navigation - Vertical Scroll Progress
   ========================================== */

.page-metro-track {
    position: fixed;
    left: 50px;
    top: 0;
    height: 100vh;
    z-index: 900;
    opacity: 0;
    animation: fadeInTrack 1s ease 1s forwards;
}

@keyframes fadeInTrack {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* The vertical track line */
.page-track-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 1px;
}

/* The train indicator - moves with scroll */
.page-train-indicator {
    display: none;
}

.page-train-indicator::before {
    content: '🚈';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--train-icon-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

/* Station stops container */
.page-metro-stops {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 2vh 0;
}

/* Individual stop */
.page-metro-stop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 4vh;
    padding: 1vh;
    margin: -1vh;
}

/* Stop node (the circle on the track) */
.page-stop-node {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

/* Icon stops - start and end */
.page-metro-stop-start .page-stop-node,
.page-metro-stop-end .page-stop-node {
    width: 12px;
    height: 12px;
    font-size: 0;
    background: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* End icon gets subtle pulse */
.page-metro-stop-end .page-stop-node {
    animation: pulseDestination 2s ease-in-out infinite;
}

.page-metro-stop-start.active .page-stop-node,
.page-metro-stop-end.active .page-stop-node {
    width: 16px;
    height: 16px;
    font-size: 0;
    background: var(--accent);
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.page-metro-stop-start:hover .page-stop-node,
.page-metro-stop-end:hover .page-stop-node {
    transform: translateX(-50%) scale(1.15);
}

/* Stop label - positioned to the right of the track */
.page-stop-label {
    position: absolute;
    left: calc(50% + 20px);
    top: 50%;
    transform: translate(-10px, -50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-stop-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.page-stop-name {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-stop-subtitle {
    font-family: var(--font-main);
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 2px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Hover state */
.page-metro-stop:hover .page-stop-node {
    transform: translateX(-50%) scale(1.3);
    border-color: var(--primary);
    background: var(--primary-light);
}

.page-metro-stop:hover .page-stop-label {
    opacity: 1;
    transform: translate(0, -50%) scale(1.02);
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.page-metro-stop:hover .page-stop-label::before {
    left: 100%;
}

/* Active state - current section */
.page-metro-stop.active .page-stop-node {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    transform: translateX(-50%);
}

/* Active stop tooltip only shows on hover */
.page-metro-stop.active:hover .page-stop-label {
    opacity: 1;
    transform: translate(0, -50%);
    pointer-events: auto;
}

.page-metro-stop.active .page-stop-name {
    color: var(--accent);
    font-weight: 700;
}

/* Destination stop styling - only for regular stops, not icon stops */
.page-metro-stop.destination:not(.page-metro-stop-end) .page-stop-node {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-color: var(--primary);
    animation: pulseDestination 2s ease-in-out infinite;
    transform: translateX(-50%);
}

@keyframes pulseDestination {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(26, 54, 93, 0);
    }
}

.page-metro-stop.destination .page-stop-name {
    color: var(--primary);
    font-weight: 700;
}

/* Destination stop hover - now clickable - only for regular stops */
.page-metro-stop.destination:not(.page-metro-stop-end):hover .page-stop-node {
    transform: translateX(-50%) scale(1.3);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.page-metro-stop.destination:hover .page-stop-label {
    opacity: 1;
    transform: translate(0, -50%);
}

/* Destination active state - only for regular stops */
.page-metro-stop.destination:not(.page-metro-stop-end).active .page-stop-node {
    width: 16px;
    height: 16px;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.2);
    transform: translateX(-50%);
}

/* Destination active tooltip only shows on hover */
.page-metro-stop.destination.active:hover .page-stop-label {
    opacity: 1;
    transform: translate(0, -50%);
}

/* Responsive - Adjust positioning */
@media (max-width: 1024px) {
    .page-metro-track {
        left: 30px;
    }

    .container {
        margin-left: 50px;
    }

    .container-full {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .footer-overlay {
        left: 50px;
        width: calc(100% - 50px);
    }
}

@media (max-width: 768px) {
    .page-metro-track {
        display: none;
    }

    .container {
        margin-left: auto;
    }

    .container-full {
        width: 100%;
        margin-left: 0;
    }
}

/* End Metro Track Navigation */

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
}

.hero-icon {
    width: 80px;
    height: 99px;
    margin: 0 auto var(--spacing-md);
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-location {
    font-size: 1.25rem;
    color: var(--accent-light);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   Button System - Unified & Consistent
   ========================================== */

/* Base Button Styles */
.cta-button,
.cta-button-secondary,
.attraction-link,
.attraction-link-small,
.link-button,
.event-inline-link {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    font-size: 0.875rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--font-main);
    overflow: hidden;
    position: relative;
}

.cta-button::before,
.cta-button-secondary::before,
.attraction-link::before,
.attraction-link-small::before,
.link-button::before,
.event-inline-link::before {
    display: none;
}

/* Primary CTA - High contrast accent with glass effect */
.cta-button {
    padding: var(--btn-padding-lg);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.cta-button > * {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-color: var(--accent-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

/* Secondary CTA - Glass effect */
.cta-button-secondary {
    padding: var(--btn-padding-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary > * {
    position: relative;
    z-index: 1;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover::before {
    left: 100%;
}

/* Tertiary Button - Primary colored */
.attraction-link {
    padding: var(--btn-padding-md);
    margin-top: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
}

.attraction-link > * {
    position: relative;
    z-index: 1;
}

.attraction-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1a3a5d);
    border-color: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.attraction-link:hover::before {
    left: 100%;
}

/* Small Button - Compact version with glass effect */
.attraction-link-small {
    padding: var(--btn-padding-sm);
    margin-top: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    border-color: var(--primary);
    font-size: 0.8rem;
}

.attraction-link-small > * {
    position: relative;
    z-index: 1;
}

.attraction-link-small:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.attraction-link-small:hover::before {
    left: 100%;
}

/* Link Button - Minimal style with glass */
.link-button {
    padding: var(--btn-padding-md);
    margin-top: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary);
    border-color: var(--primary);
}

.link-button > * {
    position: relative;
    z-index: 1;
}

.link-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.link-button:hover::before {
    left: 100%;
}


/* Footer Airbnb Button - Outline on dark */
.footer-airbnb-btn {
    padding: var(--btn-padding-lg);
    margin-top: var(--spacing-lg);
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.footer-airbnb-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Inline Text Link - Simple readable link within text */
.inline-text-link {
    display: inline;
    padding: 0;
    margin: 0;
    background: none;
    color: var(--accent);
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: var(--transition-fast);
}

.inline-text-link:hover {
    color: var(--accent-dark);
    text-decoration-color: var(--accent-dark);
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta-button,
    .cta-button-secondary {
        padding: 1rem 2rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 10px;
    background: var(--white);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Fade-in Animations */
.fade-in {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeInUp 1s ease 0.9s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   About Section
   ========================================== */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}


.about-image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-dark);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    position: relative;
}

.living-room {
    background:
        linear-gradient(135deg, rgba(107, 142, 127, 0.1), rgba(139, 169, 158, 0.1)),
        url('images/property-living-room.webp') center/cover no-repeat;
}

.host-quote {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 2px;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--accent);
}

.host-quote cite {
    display: block;
    margin-top: var(--spacing-sm);
    font-style: normal;
    font-weight: 600;
}

.badges {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.badge {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: 2px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.badge:hover {
    border-left-color: var(--accent);
    box-shadow: 0 4px 16px var(--shadow);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.badge-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.badge h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.badge p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* ==========================================
   Seattle Overview Section
   ========================================== */

.overview-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

/* ==========================================
   Climate Section
   ========================================== */

.climate-section {
    background: var(--light);
    padding: var(--spacing-xl) 0;
}

/* Overview Features Container */
.overview-features {
    max-width: var(--content-max-width);
    margin: var(--spacing-xl) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* Individual Feature - Alternating Layout */
.overview-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    background: var(--light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.overview-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Reverse layout for alternating effect */
.overview-feature-reverse {
    grid-template-columns: 1fr 1fr;
}

.overview-feature-reverse .overview-feature-image {
    order: 2;
}

.overview-feature-reverse .overview-feature-content {
    order: 1;
}

/* Feature Image */
.overview-feature-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.overview-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.overview-feature:hover .overview-feature-image img {
    transform: scale(1.05);
}

/* Feature Content */
.overview-feature-content {
    padding: var(--spacing-lg);
}

.overview-feature-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: var(--letter-spacing-tight);
}

.overview-feature-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.seasonal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.seasonal-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: var(--content-max-width);
    margin: 0 auto var(--spacing-lg);
}

/* ==========================================
   Shared Full-Width Slider Styles
   Used by: Seasonal Highlights & Monthly Events
   ========================================== */

/* Shared content max-width constraints */
.season-hero-content > *,
.features-slide-content-full > *,
.fullwidth-slider-content > *:not(.fullwidth-slider-tabs) {
    width: 100%;
    max-width: var(--content-max-width);
}

/* Shared tab positioning and styling */
.fullwidth-slider-tabs {
    width: fit-content;
    max-width: var(--content-max-width);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: auto;
}

/* Full-width container that breaks out of parent */
.fullwidth-slider-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: var(--spacing-2xl);
}

/* Slider container with fixed height */
.fullwidth-slider-container {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Individual slide/card */
.fullwidth-slider-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.fullwidth-slider-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Background image */
.fullwidth-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
    z-index: 0;
}

.fullwidth-slider-card:hover .fullwidth-slider-bg {
    transform: scale(1.08);
    transition: transform 0.5s var(--ease-out-expo);
}

/* Overlay gradient */
.fullwidth-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 62, 62, 0.2) 0%, rgba(45, 62, 62, 0.7) 100%);
    z-index: 1;
}

/* Content wrapper */
.fullwidth-slider-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    overflow: hidden;
}

/* Badge/pill */
.fullwidth-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    width: fit-content;
    margin-bottom: var(--spacing-md);
}

/* Season Container - uses shared styles */
.season-container {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: var(--spacing-xl);
    margin-bottom: 80px;
}

/* Featured Season Hero */
.season-featured {
    transition: opacity 0.8s var(--ease-out-expo);
    overflow: hidden;
}

/* Season Slider Container */
.season-slider {
    width: 100%;
    overflow: visible;
    padding: 40px 0;
    position: relative;
}

.season-slider-track {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 calc(75vw - 325px) 0 calc(25vw - 325px);
    will-change: transform;
}

/* Floating animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

@keyframes floatShadow {
    0%, 100% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
    }
}

.season-hero {
    position: relative;
    border-radius: 50%;
    overflow: visible;
    width: 650px;
    height: 650px;
    min-width: 650px;
    flex-shrink: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite, floatShadow 6s ease-in-out infinite;
    opacity: 0.5;
    filter: blur(3px);
    transform: scale(0.82);
    pointer-events: none;
}

.season-hero[data-season].active,
.season-metro-stop.active ~ * .season-hero {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: scale(1) !important;
    z-index: 10;
    pointer-events: all;
}

.season-hero.active:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.season-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s ease-out;
    border-radius: 50%;
}

.season-featured.active .season-hero-bg {
    transform: scale(1.05);
}

.season-hero:hover .season-hero-bg {
    transform: scale(1.08);
    transition: transform 0.5s var(--ease-out-expo);
}

.season-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 62, 62, 0.2) 0%, rgba(45, 62, 62, 0.7) 100%);
    z-index: 2;
    border-radius: 50%;
}


.season-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    border-radius: 50%;
}

.season-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    width: fit-content;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.season-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.season-hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.season-hero-badge:hover::before {
    left: 100%;
}

.season-hero-badge:active {
    transform: translateY(0) scale(0.98);
}

.season-hero-icon {
    font-size: 1.5rem;
}

.season-hero-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
}

.season-hero-temp {
    font-size: 0.9rem;
    padding-left: var(--spacing-sm);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.9;
}

.season-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

/* Season Features - Orbital Layout (Desktop) */
.season-hero-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 650px;
    height: 650px;
    pointer-events: none;
    z-index: 4;
}

/* Orbital animation */
@keyframes orbit-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

.season-feature-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    animation: orbit-pulse 3s ease-in-out infinite;
}

/* Position icons around circle - 12 o'clock clockwise */
.season-feature-item:nth-child(1) {
    top: 5%;
    left: 50%;
    margin-left: -35px;
    animation-delay: 0s;
}

.season-feature-item:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.season-feature-item:nth-child(3) {
    top: 50%;
    right: 5%;
    margin-top: -35px;
    animation-delay: 1s;
}

.season-feature-item:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.season-feature-item:nth-child(5) {
    bottom: 5%;
    left: 50%;
    margin-left: -35px;
    animation-delay: 2s;
}

.season-feature-item:nth-child(6) {
    bottom: 20%;
    left: 10%;
    animation-delay: 2.5s;
}

.season-feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
    animation-play-state: paused;
    z-index: 10;
}

.season-feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.season-feature-text {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
}

/* Position tooltips - top icons point up, right icons point right, etc */
.season-feature-item:nth-child(1) .season-feature-text {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
}

.season-feature-item:nth-child(2) .season-feature-text {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
}

.season-feature-item:nth-child(3) .season-feature-text {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
}

.season-feature-item:nth-child(4) .season-feature-text {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
}

.season-feature-item:nth-child(5) .season-feature-text {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
}

.season-feature-item:nth-child(6) .season-feature-text {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 8px;
}

.season-feature-item:hover .season-feature-text {
    display: block;
}

/* Season Tab Button Styling - Removed, using metro track instead */

/* Mobile responsive */
@media (max-width: 768px) {
    .overview-features {
        margin: var(--spacing-lg) var(--spacing-md) 0;
        gap: var(--spacing-lg);
    }

    .overview-feature,
    .overview-feature-reverse {
        grid-template-columns: 1fr;
    }

    .overview-feature-reverse .overview-feature-image {
        order: 1;
    }

    .overview-feature-reverse .overview-feature-content {
        order: 2;
    }

    .overview-feature-image {
        min-height: 280px;
    }

    .overview-feature-content {
        padding: var(--spacing-md);
    }

    .overview-feature-content h3 {
        font-size: 1.5rem;
    }

    .overview-feature-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .seasonal-title {
        font-size: 1.75rem;
    }

    .seasonal-subtitle {
        font-size: 0.9rem;
        padding: 0 var(--spacing-md);
    }

    .season-hero {
        min-height: 600px;
    }

    .season-slider {
        padding: 0;
        overflow: hidden;
        position: relative;
    }

    .season-slider-track {
        display: block;
        padding: var(--spacing-md);
        transform: none !important;
        position: relative;
        min-height: 600px;
    }

    .season-hero {
        position: absolute;
        top: 0;
        left: var(--spacing-md);
        right: var(--spacing-md);
        transform: none;
        border-radius: var(--radius-lg);
        width: calc(100% - var(--spacing-md) * 2);
        height: auto;
        min-height: 600px;
        min-width: auto;
        animation: none;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .season-hero.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: all;
        z-index: 10;
    }

    .season-hero-bg,
    .season-hero-overlay {
        border-radius: var(--radius-lg);
    }

    .season-hero:hover,
    .season-hero:active {
        transform: none;
    }

    .season-hero.active:hover .season-hero-bg,
    .season-hero.active:active .season-hero-bg {
        transform: scale(1.05);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .season-hero.active:active {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .season-hero-content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        min-height: auto;
        width: 100%;
        height: 100%;
        padding: var(--spacing-lg) var(--spacing-md);
        padding-bottom: var(--spacing-lg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: var(--radius-lg);
    }

    .season-hero-badge {
        padding: var(--spacing-xs) var(--spacing-md);
        margin-bottom: var(--spacing-md);
    }

    .season-hero-icon {
        font-size: 1.25rem;
    }

    .season-hero-label {
        font-size: 1rem;
    }

    .season-hero-temp {
        font-size: 0.85rem;
    }

    .season-hero-description {
        font-size: 1.05rem;
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }

    .season-hero-features {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        transform: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        margin-top: 0;
        z-index: 5;
        pointer-events: all;
    }

    .season-feature-item {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
        border-radius: var(--radius-md);
        width: auto;
        height: auto;
        padding: var(--spacing-xs);
        animation: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Reset all nth-child positioning from desktop orbital layout */
    .season-feature-item:nth-child(1),
    .season-feature-item:nth-child(2),
    .season-feature-item:nth-child(3),
    .season-feature-item:nth-child(4),
    .season-feature-item:nth-child(5),
    .season-feature-item:nth-child(6) {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
    }

    .season-feature-item:nth-child(1):hover,
    .season-feature-item:nth-child(2):hover,
    .season-feature-item:nth-child(3):hover,
    .season-feature-item:nth-child(4):hover,
    .season-feature-item:nth-child(5):hover,
    .season-feature-item:nth-child(6):hover {
        transform: translateY(-2px) !important;
    }

    .season-feature-item:hover {
        transform: translateY(-2px);
    }

    .season-feature-icon {
        font-size: 1.75rem;
        line-height: 1;
        margin-bottom: var(--spacing-xs);
    }

    .season-feature-text {
        display: block;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0;
        margin: 0 !important;
        white-space: normal;
        font-size: 0.85rem;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .overview-features {
        margin: var(--spacing-md) var(--spacing-xs) 0;
        gap: var(--spacing-md);
    }

    .overview-feature-image {
        min-height: 220px;
    }

    .overview-feature-content {
        padding: var(--spacing-sm);
    }

    .overview-feature-content h3 {
        font-size: 1.3rem;
    }

    .overview-feature-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .seasonal-title {
        font-size: 1.5rem;
    }

    .seasonal-subtitle {
        font-size: 0.85rem;
    }

    .season-hero-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .season-feature-item {
        padding: var(--spacing-sm);
    }

    .season-feature-icon {
        font-size: 1.5rem;
    }

    .season-feature-text {
        font-size: 0.8rem;
    }

    .season-hero-content {
        padding-bottom: 100px;
    }
}

/* ==========================================
   Features Section
   ========================================== */

.events-section {
    background: var(--white);
    padding-bottom: 0;
}

.container-full {
    width: calc(100% - 60px);
    max-width: 100%;
    padding: 0 var(--spacing-md);
    margin-left: 60px;
}

.events-section .section-title,
.events-section .section-subtitle {
    max-width: var(--content-max-width);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container-full {
        width: 100%;
        margin-left: 0;
    }
}

/* Events Slider - Full width like seasons */
.features-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: var(--spacing-xl);
    margin-bottom: 80px;
    overflow: hidden;
}

.features-slider-container {
    position: relative;
    width: 100%;
    min-height: 750px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.features-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    pointer-events: none;
}

.features-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10;
    pointer-events: all;
}

.features-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease-out;
    z-index: 0;
}

.features-slide.active .features-slide-bg {
    transform: scale(1.05);
}

.features-slide:hover .features-slide-bg {
    transform: scale(1.08);
    transition: transform 0.5s var(--ease-out-expo);
}

.features-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 62, 62, 0.5);
    z-index: 1;
}


.features-slide-content-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: var(--spacing-xl) var(--spacing-xl);
    padding-top: var(--spacing-xl);
    padding-bottom: 180px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.features-slide-content-full h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.event-month-wrapper {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    width: fit-content;
    max-width: 90%;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-month-wrapper::before {
    display: none;
}

.features-slide.active .event-month-wrapper:hover::before {
    display: none;
}

.features-slide.active .event-month-wrapper:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.event-month-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.event-month {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    padding-left: var(--spacing-sm);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.features-slide-content-full h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: none;
    max-width: var(--content-max-width);
}

.event-list {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-md);
    margin: var(--spacing-sm) 0;
    margin-bottom: var(--spacing-xl);
    width: 100%;
    max-width: var(--content-max-width);
    text-align: left;
}

.event-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-sm);
    text-shadow: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-list li:last-child {
    margin-bottom: 0;
}

.event-list strong {
    color: var(--white);
    font-weight: 500;
}


.event-inline-link {
    display: inline;
    margin-left: 0.35rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.event-inline-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Features Slider Navigation - Styles consolidated above */

/* ==========================================
   Horizontal Month Metro Track Navigation
   ========================================== */

.month-metro-track {
    position: relative;
    margin-top: -150px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Navigation arrows - hidden on desktop, positioned at middle when visible */
.month-metro-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.month-metro-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.month-metro-prev {
    left: var(--spacing-sm);
}

.month-metro-next {
    right: var(--spacing-sm);
}

/* The horizontal track line */
.month-track-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    border-radius: 1px;
}

/* The train indicator - moves horizontally */
.month-train-indicator {
    display: none;
}

.month-train-indicator::before {
    content: '🚈';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--train-icon-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

/* Month stops container - horizontal layout */
.month-metro-stops {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5vh;
}

/* Individual month stop */
.month-metro-stop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 4vw;
    height: 4vw;
    padding: 0;
    flex-shrink: 0;
}

/* Stop node (the circle on the track) */
.month-stop-node {
    width: 1.2vw;
    height: 1.2vw;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Hover state */
.month-metro-stop:hover .month-stop-node {
    transform: scale(1.5);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.9);
}

/* Active state - current month - show text using data attribute */
.month-metro-stop.active .month-stop-node {
    width: 1.6vw;
    height: 1.6vw;
    min-width: 1.6vw;
    min-height: 1.6vw;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    font-weight: 700;
    font-size: 0;
    line-height: 1;
}

/* Month tooltip label with liquid glass effect */
.month-metro-stop::after {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.month-metro-stop:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive - Show arrows on mobile, hide track */
@media (max-width: 768px) {
    .month-metro-arrow {
        display: flex;
        width: 44px;
        height: 44px;
    }

    .month-metro-prev {
        left: var(--spacing-sm);
    }

    .month-metro-next {
        right: var(--spacing-sm);
    }

    /* Hide track elements on mobile */
    .month-track-line,
    .month-train-indicator,
    .month-metro-stops {
        display: none;
    }
}

@media (max-width: 480px) {
    .month-metro-arrow {
        width: 40px;
        height: 40px;
    }

    .month-metro-prev {
        left: var(--spacing-xs);
    }

    .month-metro-next {
        right: var(--spacing-xs);
    }

    /* Hide track elements on mobile */
    .month-track-line,
    .month-train-indicator,
    .month-metro-stops {
        display: none;
    }
}

/* ==========================================
   Horizontal Season Metro Track Navigation
   ========================================== */

.season-metro-track {
    position: relative;
    margin-top: -80px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Navigation arrows - hidden on desktop, positioned at middle when visible */
.season-metro-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.season-metro-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.season-metro-prev {
    left: var(--spacing-sm);
}

.season-metro-next {
    right: var(--spacing-sm);
}

/* The horizontal track line */
.season-track-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    border-radius: 1px;
}

/* The train indicator - moves horizontally */
.season-train-indicator {
    display: none;
}

.season-train-indicator::before {
    content: '🚈';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--train-icon-size);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

/* Season stops container - horizontal layout */
.season-metro-stops {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 5vh;
}

/* Individual season stop */
.season-metro-stop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 4vw;
    height: 4vw;
    padding: 0;
    flex-shrink: 0;
}

/* Stop node (the circle on the track) */
.season-stop-node {
    width: 1.2vw;
    height: 1.2vw;
    background: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-main);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Hover state */
.season-metro-stop:hover .season-stop-node {
    transform: scale(1.5);
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.9);
}

/* Active state - current season - show icon using data attribute */
.season-metro-stop.active .season-stop-node {
    width: 1.6vw;
    height: 1.6vw;
    min-width: 1.6vw;
    min-height: 1.6vw;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    font-weight: 700;
    font-size: 0;
    line-height: 1;
}

/* Season tooltip label */
/* Season tooltip with liquid glass effect */
.season-metro-stop::after {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
}

.season-metro-stop:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive - Show arrows on mobile, hide track */
@media (max-width: 768px) {
    .season-metro-arrow {
        display: flex;
        width: 50px;
        height: 50px;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .season-metro-arrow:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }

    .season-metro-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .season-metro-prev {
        left: var(--spacing-sm);
    }

    .season-metro-next {
        right: var(--spacing-sm);
    }

    /* Hide track elements on mobile */
    .season-track-line,
    .season-train-indicator,
    .season-metro-stops {
        display: none;
    }
}

@media (max-width: 480px) {
    .season-metro-arrow {
        width: 44px;
        height: 44px;
    }

    .season-metro-prev {
        left: var(--spacing-xs);
    }

    .season-metro-next {
        right: var(--spacing-xs);
    }

    /* Hide track elements on mobile */
    .season-track-line,
    .season-train-indicator,
    .season-metro-stops {
        display: none;
    }

    .season-slider-track {
        padding: var(--spacing-sm);
        min-height: 520px;
    }

    .season-hero {
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        width: calc(100% - var(--spacing-sm) * 2);
        min-height: 520px;
    }

    .season-hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        justify-content: center;
    }

    .season-hero-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }

    .season-hero-icon {
        font-size: 1.25rem;
    }

    .season-hero-label {
        font-size: 0.95rem;
    }

    .season-hero-temp {
        font-size: 0.8rem;
    }

    .season-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .season-hero-features {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }

    .season-feature-item {
        padding: var(--spacing-xs);
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Ensure all nth-child items are reset */
    .season-feature-item:nth-child(1),
    .season-feature-item:nth-child(2),
    .season-feature-item:nth-child(3),
    .season-feature-item:nth-child(4),
    .season-feature-item:nth-child(5),
    .season-feature-item:nth-child(6) {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
    }

    .season-feature-icon {
        font-size: 1.25rem;
        line-height: 1;
        margin-bottom: var(--spacing-xs);
    }

    .season-feature-text {
        font-size: 0.7rem;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        text-align: center;
        width: 100%;
    }

    .features-slide-content-full {
        padding: 0 var(--spacing-sm);
        padding-top: var(--spacing-xs) !important;
        padding-bottom: 120px;
        height: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .features-slide-content-full h3 {
        font-size: 1.25rem;
        padding: 0;
        margin-top: 0;
        margin-bottom: var(--spacing-xs);
    }

    .event-list {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-xs);
        margin: var(--spacing-xs) 0;
    }

    .event-list li {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xs);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .features-slider-container {
        height: 80vh;
        min-height: 550px;
    }

    .features-slide-content-full {
        position: relative;
        padding: 0 var(--spacing-md);
        padding-top: var(--spacing-sm) !important;
        padding-bottom: 140px;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .features-slide-content-full h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: var(--spacing-xs);
        padding: 0;
    }

    .event-list {
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-sm);
        margin: var(--spacing-xs) 0;
    }

    .event-list li {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: var(--spacing-sm);
        padding-left: var(--spacing-xs);
    }

    .event-month-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
        gap: var(--spacing-xs);
        max-width: 95%;
        margin-bottom: var(--spacing-sm);
        margin-top: 0;
    }

    .event-month-number {
        font-size: 1.125rem;
        flex-shrink: 0;
    }

    .event-month {
        font-size: 0.75rem;
        letter-spacing: 0.03em;
        padding-left: var(--spacing-xs);
    }


    .event-item {
        margin-bottom: var(--spacing-sm);
    }
}

/* ==========================================
   Tour Section - Property Slider
   ========================================== */

.tour-section {
    background: var(--light);
}

.property-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.slider-slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl) var(--spacing-lg);
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s var(--ease-out-expo) 0.3s;
}

.slider-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-number {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    color: var(--accent-light);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.slide-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    font-weight: 400;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: var(--content-max-width);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: var(--spacing-md);
}

.slider-next {
    right: var(--spacing-md);
}

/* Dot Indicators */
.slider-dots {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 5px;
}

.info-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--accent);
    color: var(--white);
    border-radius: 2px;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.info-note p {
    margin: 0;
}

/* ==========================================
   Location Section
   ========================================== */

.location-section {
    background: var(--white);
}

.location-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    height: 400px;
}

.location-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.capitol-hill {
    background:
        linear-gradient(135deg, rgba(107, 142, 127, 0.3), rgba(44, 62, 80, 0.5)),
        url('images/property-property-exterior.webp') center/cover no-repeat;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    padding: var(--spacing-md);
}

.location-overlay h2 {
    color: var(--white);
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.location-quote {
    background: var(--light);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--accent);
    border-radius: 2px;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark);
    margin: var(--spacing-md) 0;
}

.walk-score {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--primary);
    color: var(--white);
    border-radius: 2px;
    margin: var(--spacing-lg) 0;
}

.score-circle {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.score-content h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.score-content p {
    margin: 0;
    font-size: 1.125rem;
}

.nearby-list {
    background: var(--light);
    padding: var(--spacing-lg);
    border-radius: 2px;
    margin-top: var(--spacing-lg);
}

.nearby-list h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.nearby-list ul {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
}

.nearby-list li {
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    border-left: 2px solid transparent;
}

.nearby-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px var(--shadow);
    border-left-color: var(--accent);
}

/* ==========================================
   Dining Section
   ========================================== */

.dining-section {
    background: var(--light);
}

/* View Toggle (available on all devices) */
.dining-view-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) auto;
    max-width: 400px;
}

.view-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    flex: 1;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.view-toggle-btn::before,
.view-toggle-btn::after {
    display: none !important;
}

.view-toggle-btn svg {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.view-toggle-btn:hover {
    background: var(--light);
    border-color: var(--primary);
}

.view-toggle-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Map Container - Full Width */
.dining-map-container {
    display: none;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.dining-map-container.active {
    display: block;
}

/* Mapbox Popup Customization */
.mapboxgl-popup {
    z-index: 10000 !important;
}

.mapboxgl-popup-content {
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    overflow: hidden;
    z-index: 10001 !important;
}

.map-popup {
    display: flex;
    flex-direction: column;
}

.map-popup-image {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-popup-image.property-living-room {
    background-image: url('images/property-living-room.webp');
}

.map-popup-content {
    padding: var(--spacing-sm);
}

.mapboxgl-popup-content h4 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1rem;
    color: var(--primary);
}

.map-popup-directions {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.map-popup-directions:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-popup-directions svg {
    flex-shrink: 0;
}

.mapboxgl-popup-close-button {
    font-size: 1.5rem;
    padding: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

/* Accordion Styles */
.dining-accordion {
    max-width: var(--content-max-width);
    margin: var(--spacing-lg) auto;
}

.accordion-item {
    background: var(--white);
    margin-bottom: var(--spacing-sm);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

.accordion-header:hover {
    background: var(--light);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(to right, var(--light) 0%, var(--white) 100%);
    border-bottom-color: var(--accent);
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: var(--letter-spacing-normal);
    flex: 1;
    text-align: left;
}

.accordion-count {
    font-size: 0.875rem;
    color: var(--gray);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    min-width: 90px;
    text-align: right;
    flex-shrink: 0;
}

.accordion-icon {
    color: var(--primary);
    transition: transform 0.3s var(--ease-out-expo);
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-out-expo), opacity 0.4s ease-out;
    background: var(--white);
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 8000px;
    opacity: 1;
}

/* Full-Width Restaurant Cards */
.restaurant-full-card {
    position: relative;
    margin: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
    height: 437px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.accordion-item.active .restaurant-full-card {
    animation: slideInUp 0.3s var(--ease-out-expo) forwards;
}

.accordion-item.active .restaurant-full-card:nth-child(1) {
    animation-delay: 0.05s;
}

.accordion-item.active .restaurant-full-card:nth-child(2) {
    animation-delay: 0.1s;
}

.accordion-item.active .restaurant-full-card:nth-child(3) {
    animation-delay: 0.15s;
}

.accordion-item.active .restaurant-full-card:nth-child(4) {
    animation-delay: 0.2s;
}

.accordion-item.active .restaurant-full-card:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.restaurant-full-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.restaurant-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s var(--ease-out-expo);
}

.restaurant-full-card:hover .restaurant-full-image {
    transform: scale(1.08);
}

.restaurant-full-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.restaurant-full-info {
    position: relative;
    z-index: 3;
    padding: var(--spacing-lg);
    width: 100%;
}

.restaurant-full-info h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.restaurant-full-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.restaurant-full-info .location-info {
    color: rgba(255, 255, 255, 0.85);
}

.restaurant-full-info .attraction-links {
    margin-top: var(--spacing-sm);
}

.restaurant-full-info .attraction-link-small {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.restaurant-full-info .attraction-link-small:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.restaurant-full-info .maps-link {
    background: rgba(184, 149, 106, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.restaurant-full-info .maps-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.restaurant-card {
    margin-bottom: var(--spacing-md);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.restaurant-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
}

.terra-plata {
    background:
        var(--gradient-overlay),
        url('images/dining-terra-plata-rooftop.webp') center/cover no-repeat;
}

.tavern-law {
    background:
        var(--gradient-overlay),
        url('images/dining-tavern-law-bar.webp') center/cover no-repeat;
}

.ice-cream {
    background:
        var(--gradient-overlay),
        url('images/dining-bakery-nouveau.webp') center/cover no-repeat;
}

.glos {
    background:
        var(--gradient-overlay),
        url('https://images.squarespace-cdn.com/content/v1/6436df4964f2556eff7e8d03/1689873789938-2X6SVFU37CVV4AGTZNT5/20230514_METIS_GLOS_+97.jpg?format=2500w') center/cover no-repeat;
}

.momiji {
    background:
        var(--gradient-overlay),
        url('images/dining-momiji-courtyard.webp') center/cover no-repeat;
}

.bakery-nouveau {
    background:
        var(--gradient-overlay),
        url('images/dining-bakery-nouveau.webp') center/cover no-repeat;
}

.restaurant-info {
    padding: var(--spacing-sm);
    background: var(--light);
}

.restaurant-info h4 {
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

.restaurant-info p {
    color: var(--gray);
}

/* Restaurant Grid Layout */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.restaurant-card-small {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
}

.restaurant-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.restaurant-image-small {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
}

.restaurant-info-compact {
    padding: var(--spacing-md);
}

.restaurant-info-compact h4 {
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.restaurant-info-compact p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.restaurant-info-compact .location-info {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: var(--spacing-xs);
}

/* Small Restaurant Card Images */
.oddfellows {
    background:
        var(--gradient-overlay),
        url('images/dining-pink-door.webp') center/cover no-repeat;
}

.canon {
    background:
        var(--gradient-overlay),
        url('images/dining-canon-bar.webp') center/cover no-repeat;
}

.taylor-shellfish {
    background:
        var(--gradient-overlay),
        url('images/dining-taylor-shellfish.webp') center/cover no-repeat;
}

.ramen-danbo {
    background:
        var(--gradient-overlay),
        url('images/dining-ramen-danbo.webp') center/cover no-repeat;
}

.kedai-makan {
    background:
        var(--gradient-overlay),
        url('images/dining-kedai-makan.webp') center/cover no-repeat;
}

.carmelos-tacos {
    background:
        var(--gradient-overlay),
        url('images/dining-carmelos-tacos.webp') center/cover no-repeat;
}

.daves-hot-chicken {
    background:
        var(--gradient-overlay),
        url('images/dining-daves-hot-chicken.webp') center/cover no-repeat;
}

.katsu-burger {
    background:
        var(--gradient-overlay),
        url('images/dining-katsu-burger.webp') center/cover no-repeat;
}

.anchorhead-coffee {
    background:
        var(--gradient-overlay),
        url('images/dining-anchorhead-coffee.webp') center/cover no-repeat;
}

.espresso-vivace {
    background:
        var(--gradient-overlay),
        url('images/dining-espresso-vivace.webp') center/cover no-repeat;
}

.caffe-vita {
    background:
        var(--gradient-overlay),
        url('images/dining-caffe-vita.webp') center/cover no-repeat;
}

.molly-moons {
    background:
        var(--gradient-overlay),
        url('images/dining-molly-moons.webp') center/cover no-repeat;
}

.voodoo-doughnut {
    background:
        var(--gradient-overlay),
        url('images/dining-voodoo-doughnut.webp') center/cover no-repeat;
}

.cupcake-royale {
    background:
        var(--gradient-overlay),
        url('images/dining-cupcake-royale.webp') center/cover no-repeat;
}

.walrus-carpenter {
    background:
        var(--gradient-overlay),
        url('images/dining-oddfellows.webp') center/cover no-repeat;
}

.asadero-ballard {
    background:
        var(--gradient-overlay),
        url('images/dining-asadero.webp') center/cover no-repeat;
}

.salt-straw {
    background:
        var(--gradient-overlay),
        url('images/dining-salt-straw.webp') center/cover no-repeat;
}

.milstead-co {
    background:
        var(--gradient-overlay),
        url('images/dining-milstead-co.webp') center/cover no-repeat;
}

.miro-tea {
    background:
        var(--gradient-overlay),
        url('images/dining-miro-tea.webp') center/cover no-repeat;
}

.storyville-coffee {
    background:
        var(--gradient-overlay),
        url('images/dining-storyville-coffee.webp') center/cover no-repeat;
}

.alibi-room {
    background:
        var(--gradient-overlay),
        url('images/dining-alibi-room.webp') center/cover no-repeat;
}

.maximilien {
    background:
        var(--gradient-overlay),
        url('images/dining-maximilien-restaurant.webp') center/cover no-repeat;
}

.pink-door {
    background:
        var(--gradient-overlay),
        url('images/dining-pink-door-restaurant.webp') center/cover no-repeat;
}

.six-seven {
    background:
        var(--gradient-overlay),
        url('images/dining-maximilien.webp') center/cover no-repeat;
}

.the-nest {
    background:
        var(--gradient-overlay),
        url('images/dining-pike-place-waterfront.webp') center/cover no-repeat;
}

.daniels-broiler {
    background:
        var(--gradient-overlay),
        url('images/dining-walrus-carpenter.webp') center/cover no-repeat;
}

.din-tai-fung {
    background:
        var(--gradient-overlay),
        url('images/din-tai-fung.webp') center/cover no-repeat;
}

.shiros-sushi {
    background:
        var(--gradient-overlay),
        url('images/shiros-sushi.webp') center/cover no-repeat;
}

.serious-pie {
    background:
        var(--gradient-overlay),
        url('images/serious-pie.webp') center/cover no-repeat;
}

.portage-bay-cafe {
    background:
        var(--gradient-overlay),
        url('images/portage-bay-cafe.webp') center/cover no-repeat;
}

.restaurant-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.restaurant-item {
    padding: var(--spacing-sm);
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.restaurant-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.restaurant-item h4 {
    margin-bottom: 0.25rem;
}

.restaurant-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

/* ==========================================
   Explore Section
   ========================================== */

.explore-section {
    background: var(--white);
}

/* Attractions View Toggle */
.attractions-view-toggle {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) auto;
    max-width: 400px;
}

/* Attractions Map Container - Full Width */
.attractions-map-container {
    display: none;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.attractions-map-container.active {
    display: block;
}

.attractions-accordion.hidden {
    display: none;
}

/* Attractions Accordion */
.attractions-accordion {
    max-width: var(--content-max-width);
    margin: var(--spacing-lg) auto;
}

/* Full-Width Attraction Cards */
.attraction-full-card {
    position: relative;
    margin: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
    height: 437px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.accordion-item.active .attraction-full-card {
    animation: slideInUp 0.3s var(--ease-out-expo) forwards;
}

.accordion-item.active .attraction-full-card:nth-child(1) {
    animation-delay: 0.05s;
}

.accordion-item.active .attraction-full-card:nth-child(2) {
    animation-delay: 0.1s;
}

.accordion-item.active .attraction-full-card:nth-child(3) {
    animation-delay: 0.15s;
}

.accordion-item.active .attraction-full-card:nth-child(4) {
    animation-delay: 0.2s;
}

.accordion-item.active .attraction-full-card:nth-child(5) {
    animation-delay: 0.25s;
}

.accordion-item.active .attraction-full-card:nth-child(6) {
    animation-delay: 0.3s;
}

.attraction-full-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.attraction-full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s var(--ease-out-expo);
}

.attraction-full-card:hover .attraction-full-image {
    transform: scale(1.08);
}

.attraction-full-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.attraction-full-info {
    position: relative;
    z-index: 3;
    padding: var(--spacing-lg);
    width: 100%;
}

.attraction-full-info h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.attraction-full-info p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.attraction-full-info .location-info {
    color: rgba(255, 255, 255, 0.85);
}

.attraction-full-info .attraction-links {
    margin-top: var(--spacing-sm);
}

.attraction-full-info .attraction-link-small {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.attraction-full-info .attraction-link-small:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.attraction-full-info .maps-link {
    background: rgba(184, 149, 106, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.attraction-full-info .maps-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.pro-tip-inline {
    background: rgba(184, 149, 106, 0.2);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 2px;
    font-size: 0.9rem;
    margin: var(--spacing-xs) 0;
    border-left: 3px solid var(--accent);
}

.attraction-links {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.maps-link {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.maps-link:hover {
    background: var(--accent);
    color: var(--white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.attraction-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.attraction-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-primary);
}

.volunteer-park {
    background:
        var(--gradient-overlay),
        url('images/attractions-arboretum-sculpture.webp') center/cover no-repeat;
}

.elliott-bay {
    background:
        var(--gradient-overlay),
        url('images/attractions-elliott-bay-new.webp') center/cover no-repeat;
}

.cal-anderson {
    background:
        var(--gradient-overlay),
        url('images/attractions-cal-anderson-new.webp') center/cover no-repeat;
}

.washington-arboretum {
    background:
        var(--gradient-overlay),
        url('images/attractions-arboretum-japanese-garden.webp') center/cover no-repeat;
}

.starbucks-reserve {
    background:
        var(--gradient-overlay),
        url('images/attractions-starbucks-reserve.webp') center/cover no-repeat;
}

.madison-park {
    background:
        var(--gradient-overlay),
        url('images/attractions-madison-park-new.webp') center/cover no-repeat;
}

.attraction-content {
    padding: var(--spacing-md);
}

.attraction-content h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.attraction-content p {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.pro-tip {
    background: var(--accent);
    color: var(--white);
    padding: var(--spacing-sm);
    border-radius: 2px;
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-normal);
}

.pro-tip em {
    font-style: normal;
}

.location-info {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: var(--spacing-xs);
}

.flight-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(212, 165, 116, 0.15);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.attraction-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid var(--primary);
}

.attraction-link:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.attraction-link-small {
    display: inline-block;
    margin-top: var(--spacing-xs);
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--primary);
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--primary);
}

.attraction-link-small:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.neighborhood-section {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 1px 3px var(--shadow);
}

.neighborhood-title {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-display);
}

.neighborhood-description {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.seattle-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.seattle-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
}

.seattle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.seattle-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-primary);
}

.space-needle {
    background:
        var(--gradient-overlay),
        url('images/attractions-space-needle.webp') center/cover no-repeat;
}

.pike-place {
    background:
        var(--gradient-overlay),
        url('images/dining-pike-place-waterfront.webp') center/cover no-repeat;
}

.mopop {
    background:
        var(--gradient-overlay),
        url('images/attractions-mopop.webp') center/cover no-repeat;
}

.chihuly {
    background:
        var(--gradient-overlay),
        url('images/attractions-chihuly-garden.webp') center/cover no-repeat;
}

.gas-works {
    background:
        var(--gradient-overlay),
        url('images/attractions-lake-union-kayak.webp') center/cover no-repeat;
}

.ballard-locks {
    background:
        var(--gradient-overlay),
        url('images/attractions-ballard-locks.webp') center/cover no-repeat;
}

.kerry-park {
    background:
        var(--gradient-overlay),
        url('images/attractions-kerry-park.webp') center/cover no-repeat;
}

.fremont-troll {
    background:
        var(--gradient-overlay),
        url('images/attractions-fremont-troll.webp') center/cover no-repeat;
}

.ballard-market {
    background:
        var(--gradient-overlay),
        url('images/attractions-ballard-farmers-market.webp') center/cover no-repeat;
}

.shilshole-beach {
    background:
        var(--gradient-overlay),
        url('images/attractions-alki-beach.webp') center/cover no-repeat;
}

.seattle-aquarium {
    background:
        var(--gradient-overlay),
        url('images/attractions-seattle-aquarium.webp') center/cover no-repeat;
}

.seattle-art-museum {
    background:
        var(--gradient-overlay),
        url('images/events-february.webp') center/cover no-repeat;
}

.underground-tour {
    background:
        var(--gradient-overlay),
        url('images/attractions-underground-tour.webp') center/cover no-repeat;
}

.lake-union-park {
    background:
        var(--gradient-overlay),
        url('images/attractions-lake-union.webp') center/cover no-repeat;
}

.moss-bay {
    background:
        var(--gradient-overlay),
        url('images/attractions-lake-union-kayak.webp') center/cover no-repeat;
}

.kenmore-air-seaplane {
    background:
        var(--gradient-overlay),
        url('images/attractions-kenmore-air-seaplane.webp') center/cover no-repeat;
}

.seattle-card h4 {
    padding: var(--spacing-sm);
    color: var(--primary);
    font-size: 1.125rem;
    margin: 0;
}

.seattle-card p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Essentials Section
   ========================================== */

.essentials-section {
    background: var(--light);
}

/* Essentials Accordion */
.essentials-accordion {
    max-width: var(--content-max-width);
    margin: var(--spacing-lg) auto 0;
}

.essential-full-card {
    position: relative;
    margin: var(--spacing-md);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
    background: var(--white);
}

.accordion-item.active .essential-full-card {
    animation: slideInUp 0.3s var(--ease-out-expo) forwards;
    animation-delay: 0.05s;
}

.essential-full-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
    z-index: 10;
}

.essential-full-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.essential-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.essential-full-card:hover .essential-full-image img {
    transform: scale(1.08);
}

.essential-full-info {
    padding: var(--spacing-lg);
    width: 100%;
    flex: 1;
    overflow-y: auto;
}

.essential-full-info h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
}

.essential-full-info p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.essential-full-info ol,
.essential-full-info ul {
    color: var(--dark);
    margin-left: var(--spacing-md);
    line-height: 1.6;
}

.essential-full-info li {
    margin-bottom: var(--spacing-xs);
}

.essential-full-info strong {
    color: var(--primary-dark);
}

.essential-full-info .attraction-link-small {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    margin-top: var(--spacing-sm);
}

.essential-full-info .attraction-link-small:hover {
    background: var(--accent-dark);
    color: var(--white);
    border-color: var(--accent-dark);
}

.essential-full-info .pro-tip-inline {
    background: rgba(184, 149, 106, 0.1);
    color: var(--dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 2px;
    font-size: 0.9rem;
    margin: var(--spacing-sm) 0;
    border-left: 3px solid var(--accent);
    display: block;
}

.essential-full-info .walk-score-highlight {
    background: rgba(184, 149, 106, 0.1);
    color: var(--dark);
    padding: var(--spacing-sm);
    border-radius: 2px;
    margin: var(--spacing-sm) 0;
    border-left: 3px solid var(--accent);
}

.essential-full-info .warning-text {
    color: #D32F2F;
    font-weight: 600;
}

.essential-full-info .note {
    background: rgba(184, 149, 106, 0.1);
    color: var(--dark);
    padding: var(--spacing-sm);
    border-radius: 2px;
    border-left: 3px solid var(--accent);
    margin-top: var(--spacing-sm);
}

/* Horizontal WiFi Card Layout */
.essential-card-horizontal .essential-full-info {
    padding: var(--spacing-lg);
}

.wifi-content-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.wifi-image {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
    object-fit: cover;
}

.wifi-text {
    flex: 1;
}

/* Taxi Content Wrapper - Similar to WiFi */
.taxi-content-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.taxi-image {
    width: 250px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    object-fit: cover;
}

.taxi-text {
    flex: 1;
}

.essentials-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.essential-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 2px;
    box-shadow: 0 1px 3px var(--shadow);
    transition: var(--transition-slow);
    border-top: 1px solid var(--gray-light);
}

.essential-card:hover {
    box-shadow: 0 8px 32px var(--shadow);
    border-top-color: var(--accent);
    transform: translateY(-5px);
}

.essential-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.essential-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.essential-title {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.essential-description {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.essential-details {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.essential-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.essential-details li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.essential-card ol, .essential-card ul {
    margin-left: var(--spacing-md);
    color: var(--gray);
}

.essential-card li {
    margin-bottom: var(--spacing-xs);
}

.link-button {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.link-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.small-text {
    font-size: 0.9rem;
    color: var(--gray);
}

.transit-info {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 2px;
    margin: var(--spacing-sm) 0;
}

.transit-info h4 {
    color: var(--primary);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.warning-text {
    color: #D32F2F;
    font-weight: 600;
}

.keypad-instructions, .checkout-instructions {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    margin: var(--spacing-md) 0;
}

.keypad-instructions h4, .checkout-instructions h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.keypad-instructions ol, .checkout-instructions ul {
    margin-left: var(--spacing-md);
    color: var(--gray);
}

.keypad-instructions li, .checkout-instructions li {
    margin-bottom: var(--spacing-xs);
}

.note {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
}

.walk-score-mini {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    margin: var(--spacing-md) 0;
    font-size: 1.05rem;
}

.nearby-distances {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    margin: var(--spacing-md) 0;
}

.nearby-distances h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.nearby-distances ul {
    list-style: none;
    margin-left: 0;
}

.nearby-distances li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-light);
}

.nearby-distances li:last-child {
    border-bottom: none;
}

.house-rules {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.house-rules h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.rule-item {
    padding: var(--spacing-md);
    background: var(--light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.rule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.rule-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.rule-item h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.rule-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-hero {
    position: relative;
    height: 500px;
}

.footer-image {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
}

.seattle-skyline {
    background:
        linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.7)),
        url('images/property-seattle-skyline.webp') center/cover no-repeat;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 60px;
    width: calc(100% - 60px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-overlay);
    padding: var(--spacing-lg);
    text-align: center;
}

@media (max-width: 1024px) {
    .footer-overlay {
        left: 60px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 768px) {
    .footer-overlay {
        left: 0;
        width: 100%;
    }
}

.footer-overlay h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-overlay p {
    max-width: var(--content-max-width);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-contact {
    color: var(--accent);
    font-weight: 600;
}

.footer-airbnb-btn {
    display: inline-block;
    margin-top: var(--spacing-lg);
    padding: 1.125rem 3rem;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    border-radius: 2px;
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wider);
    font-size: 0.875rem;
    transition: var(--transition);
    box-shadow: none;
}

.footer-airbnb-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-light);
}

/* ==========================================
   Scroll Reveal Animations
   ========================================== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }


    .walk-score {
        flex-direction: column;
        text-align: center;
    }

    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    /* Navigation removed - metro track handles all navigation */

    .features-grid,
    .dining-grid,
    .attractions-grid,
    .seattle-attractions {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 500px;
    }

    .features-slider-container {
        height: 750px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: var(--spacing-sm);
    }

    .slider-next {
        right: var(--spacing-sm);
    }

    .slide-content {
        padding: var(--spacing-md);
    }

    .features-slide-content-full {
        padding: 140px var(--spacing-md) var(--spacing-2xl) var(--spacing-md);
        overflow-y: visible;
        justify-content: flex-start;
        height: auto;
    }

    .features-slide-content-full h3 {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }

    .event-list {
        font-size: 0.95rem;
    }

    .event-list li {
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .event-month-wrapper {
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .restaurant-full-card {
        min-height: 450px;
        height: auto;
    }

    .restaurant-full-info {
        padding: var(--spacing-md);
        max-height: none;
    }

    .restaurant-full-info h4 {
        font-size: 1.25rem;
    }

    .restaurant-full-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .attraction-full-card {
        min-height: 450px;
        height: auto;
    }

    .attraction-full-info {
        padding: var(--spacing-md);
        max-height: none;
    }

    .attraction-full-info h4 {
        font-size: 1.25rem;
    }

    .attraction-full-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .essential-full-card {
        min-height: unset;
        height: auto;
        margin: var(--spacing-sm);
    }

    .essential-full-image {
        height: 180px;
    }

    .essential-full-info {
        padding: var(--spacing-md);
        max-height: none;
        overflow-y: visible;
    }

    .essential-full-info h4 {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xs);
    }

    .essential-full-info p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .essential-full-info ol,
    .essential-full-info ul {
        font-size: 0.9rem;
    }

    .essential-full-info li {
        margin-bottom: var(--spacing-xs);
    }

    .wifi-content-wrapper,
    .taxi-content-wrapper {
        flex-direction: column;
    }

    .wifi-image,
    .taxi-image {
        width: 100%;
        max-width: 300px;
    }

    .accordion-header {
        padding: var(--spacing-md) var(--spacing-md);
        min-height: 60px;
    }

    .accordion-title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .accordion-count {
        display: none;
    }

    .accordion-icon {
        width: 24px;
        height: 24px;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .slider-container {
        height: 400px;
    }

    .features-slider-container {
        height: 95vh;
    }

    .slide-content h3 {
        font-size: 1.75rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .features-slide-content-full {
        padding: var(--spacing-md) var(--spacing-sm);
        padding-bottom: 100px;
        overflow: hidden;
        justify-content: flex-start;
        height: 100%;
    }

    .features-slide-content-full h3 {
        font-size: 1.25rem;
    }

    .event-list {
        font-size: 0.8rem;
        padding-left: var(--spacing-md);
    }

    .event-list li {
        margin-bottom: 5px;
        line-height: 1.5;
        padding-left: 4px;
    }

    .event-inline-link {
        padding: 0.2rem 0.45rem;
        font-size: 0.65rem;
        margin-left: 0.25rem;
    }

    .event-month-wrapper {
        padding: 4px var(--spacing-xs);
        gap: 6px;
        max-width: 98%;
    }

    .event-month-number {
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .event-month {
        font-size: 0.65rem;
        letter-spacing: 0.02em;
        padding-left: 6px;
        flex: 1;
        min-width: 0;
    }

    .badge {
        flex-direction: column;
        text-align: center;
    }

    .essential-full-card {
        margin: var(--spacing-xs);
    }

    .essential-full-image {
        height: 160px;
    }

    .essential-full-info {
        padding: var(--spacing-sm);
    }

    .essential-full-info h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }

    .essential-full-info p {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: var(--spacing-xs);
    }

    .essential-full-info ol,
    .essential-full-info ul {
        font-size: 0.85rem;
        margin-left: var(--spacing-sm);
    }

    .essential-full-info li {
        margin-bottom: 0.4rem;
    }

    .essential-full-info .walk-score-highlight,
    .essential-full-info .pro-tip-inline,
    .essential-full-info .note {
        font-size: 0.85rem;
        padding: 0.5rem;
        margin: 0.75rem 0;
    }

    .essential-full-info .warning-text {
        font-size: 0.85rem;
    }

    .accordion-content {
        padding: 0;
    }

    .wifi-image,
    .taxi-image {
        max-width: 100%;
    }

    .restaurant-full-card,
    .attraction-full-card {
        min-height: 350px;
    }

    .restaurant-full-info,
    .attraction-full-info {
        padding: var(--spacing-sm);
    }

    .restaurant-full-info h4,
    .attraction-full-info h4 {
        font-size: 1.125rem;
    }

    .restaurant-full-info p,
    .attraction-full-info p {
        font-size: 0.875rem;
    }

    .accordion-header {
        padding: var(--spacing-sm) var(--spacing-sm);
        min-height: 56px;
    }

    .accordion-title {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Splash Screen Modal
   ========================================== */

.splash-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.splash-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.splash-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.splash-modal-content {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10001;
    animation: splashSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    max-height: 85vh;
    padding: var(--spacing-xl);
}

@keyframes splashSlideIn {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.splash-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 28px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.splash-modal-close:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

/* Glass Lightbox Content */
.splash-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.splash-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 0 var(--spacing-sm);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.splash-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.splash-form-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .splash-modal-content {
        width: 92%;
        max-width: 500px;
        padding: var(--spacing-lg);
        max-height: 90vh;
        overflow-y: auto;
    }

    .splash-title {
        font-size: 1.5rem;
    }

    .splash-subtitle {
        font-size: 0.95rem;
    }

    .splash-modal-close {
        top: 15px;
        right: 15px;
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .splash-modal-content {
        width: 95%;
        padding: var(--spacing-md);
        max-height: 95vh;
    }

    .splash-title {
        font-size: 1.3rem;
    }

    .splash-subtitle {
        font-size: 0.9rem;
    }

    .splash-header {
        margin-bottom: var(--spacing-md);
    }
}

/* ==========================================
   Dining View Toggle - Hidden State
   ========================================== */

.dining-accordion.hidden {
    display: none;
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .page-metro-track,
    .scroll-indicator,
    .cta-button,
    .link-button {
        display: none;
    }

    body {
        background: white;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* Newsletter Form Styles */
.newsletter-form {
  padding: 20px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 142, 127, 0.1);
}

.form-group input:disabled {
  background-color: #f9fafb;
  cursor: not-allowed;
}

.form-submit-button {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.form-submit-button:hover:not(:disabled) {
  background: var(--primary-dark, #5a7d6b);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 142, 127, 0.3);
}

.form-submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.form-submit-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.form-error-message {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
  margin-bottom: 16px;
}

.form-success-message {
  text-align: center;
  padding: 40px 20px;
}

.form-success-message h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.form-success-message p {
  font-size: 16px;
  color: var(--text-light);
}

.form-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}
