/* ========================================
    CSS Variables
======================================== */
:root {
    --jt-sand: #E8DFD0;
    --jt-terracotta: #C4704F;
    --jt-sage: #7D8B6F;
    --jt-midnight: #1A1D21;
    --jt-cream: #FAF7F2;
    --jt-sunset-gold: #E8A849;
    --jt-dusty-rose: #C9A089;
    --jt-deep-teal: #2D4A4A;
    --jt-burnt-orange: #D85A2B;
    --jt-stone: #9B9286;
    
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Caveat', cursive;
    
    --section-padding: clamp(4rem, 10vw, 7rem);

    /* Bootstrap Color Overrides */
    --bs-primary: #C4704F;
    --bs-primary-rgb: 196, 112, 79;
    --bs-secondary: #7D8B6F;
    --bs-secondary-rgb: 125, 139, 111;
    --bs-success: #7D8B6F;
    --bs-success-rgb: 125, 139, 111;
    --bs-info: #2D4A4A;
    --bs-info-rgb: 45, 74, 74;
    --bs-warning: #E8A849;
    --bs-warning-rgb: 232, 168, 73;
    --bs-danger: #D85A2B;
    --bs-danger-rgb: 216, 90, 43;
    --bs-light: #FAF7F2;
    --bs-light-rgb: 250, 247, 242;
    --bs-dark: #1A1D21;
    --bs-dark-rgb: 26, 29, 33;
    --bs-body-color: #1A1D21;
    --bs-body-bg: #FAF7F2;
    --bs-link-color: #C4704F;
    --bs-link-hover-color: #a85d42;
}

/* ========================================
    Bootstrap Utility Overrides
======================================== */
.bg-primary { background-color: var(--jt-terracotta) !important; }
.bg-secondary { background-color: var(--jt-sage) !important; }
.bg-success { background-color: var(--jt-sage) !important; }
.bg-info { background-color: var(--jt-deep-teal) !important; }
.bg-warning { background-color: var(--jt-sunset-gold) !important; }
.bg-danger { background-color: var(--jt-burnt-orange) !important; }
.bg-light { background-color: var(--jt-cream) !important; }
.bg-dark { background-color: var(--jt-midnight) !important; }

.text-primary { color: var(--jt-terracotta) !important; }
.text-secondary { color: var(--jt-sage) !important; }
.text-success { color: var(--jt-sage) !important; }
.text-info { color: var(--jt-deep-teal) !important; }
.text-warning { color: var(--jt-sunset-gold) !important; }
.text-danger { color: var(--jt-burnt-orange) !important; }
.text-light { color: var(--jt-cream) !important; }
.text-dark { color: var(--jt-midnight) !important; }
.text-muted { color: var(--jt-stone) !important; }

.btn-primary {
    background-color: var(--jt-terracotta) !important;
    border-color: var(--jt-terracotta) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #a85d42 !important;
    border-color: #a85d42 !important;
}

.btn-secondary {
    background-color: var(--jt-sage) !important;
    border-color: var(--jt-sage) !important;
}

.btn-warning {
    background-color: var(--jt-sunset-gold) !important;
    border-color: var(--jt-sunset-gold) !important;
    color: var(--jt-midnight) !important;
}

.btn-danger {
    background-color: var(--jt-burnt-orange) !important;
    border-color: var(--jt-burnt-orange) !important;
}

.btn-info {
    background-color: var(--jt-deep-teal) !important;
    border-color: var(--jt-deep-teal) !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--jt-terracotta) !important;
    border-color: var(--jt-terracotta) !important;
}
.btn-outline-primary:hover {
    background-color: var(--jt-terracotta) !important;
    color: white !important;
}

.btn-light {
    background-color: var(--jt-cream) !important;
    border-color: var(--jt-sand) !important;
    color: var(--jt-midnight) !important;
}
.btn-light:hover {
    background-color: var(--jt-sand) !important;
}

.btn-dark {
    background-color: var(--jt-midnight) !important;
    border-color: var(--jt-midnight) !important;
}

.btn-outline-secondary {
    color: var(--jt-sage) !important;
    border-color: var(--jt-sage) !important;
}
.btn-outline-secondary:hover {
    background-color: var(--jt-sage) !important;
    color: white !important;
}

.border-primary { border-color: var(--jt-terracotta) !important; }
.border-secondary { border-color: var(--jt-sage) !important; }
.border-warning { border-color: var(--jt-sunset-gold) !important; }

/* Badge overrides */
.badge.bg-primary { background-color: var(--jt-terracotta) !important; }
.badge.bg-secondary { background-color: var(--jt-sage) !important; }
.badge.bg-success { background-color: var(--jt-sage) !important; }
.badge.bg-info { background-color: var(--jt-deep-teal) !important; }
.badge.bg-warning { background-color: var(--jt-sunset-gold) !important; color: var(--jt-midnight) !important; }
.badge.bg-danger { background-color: var(--jt-burnt-orange) !important; }

/* Accordion overrides */
.accordion-button:not(.collapsed) {
    background-color: var(--jt-sand) !important;
    color: var(--jt-midnight) !important;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: var(--jt-terracotta);
    box-shadow: 0 0 0 0.25rem rgba(196, 112, 79, 0.25);
}

/* Card header overrides */
.card-header.bg-primary {
    background-color: var(--jt-terracotta) !important;
}

a { color: var(--jt-terracotta); }
a:hover { color: #a85d42; }

/* ========================================
    Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--jt-midnight);
    background: var(--jt-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* ========================================
    Navigation
======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.main-nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--jt-terracotta);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
}

/* Body class for pages without hero */
body.has-fixed-nav {
    padding-top: 73px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
    position: relative;
}

/* Skip Link - Hidden but accessible */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--jt-terracotta);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(196, 112, 79, 0.1);
    color: var(--jt-terracotta);
}

.btn-nav {
    background: var(--jt-terracotta);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #a85d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 112, 79, 0.3);
    color: white;
}

/* Dropdown Menus */
.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.75rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--jt-midnight);
    transition: all 0.2s ease;
}

.dropdown-menu a i {
    font-size: 1.125rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.dropdown-menu a:hover i {
    opacity: 1;
}

.dropdown-menu a:hover {
    background: var(--jt-sand);
    color: var(--jt-terracotta);
}

.dropdown-menu .divider {
    height: 1px;
    background: var(--jt-sand);
    margin: 0.5rem 0;
}

.nav-close {
    display: none;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--jt-midnight);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
    Hero Section (Redesigned)
======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.8) 40%,
        rgba(255,255,255,0.4) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
    color: white;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--jt-terracotta);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--jt-terracotta);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: black;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title span {
    color: var(--jt-terracotta);
    font-style: italic;
}

.hero-text {
    font-size: 1.125rem;
    color: rgba(0,0,0,0.85);
    margin-bottom: 2rem;
    max-width: 480px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Hero Preview Cards */
.hero-preview-cards {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-preview-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
}

.hero-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    color: var(--jt-midnight);
}

.hero-preview-card img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-preview-card h3 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.125rem;
}

.hero-preview-card p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--jt-terracotta);
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #a85d42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 112, 79, 0.3);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--jt-midnight);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid var(--jt-midnight);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--jt-midnight);
    color: white;
}

/* Floating image cards */
.hero-float-card {
    position: absolute;
    background: white;
    padding: 0.75rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 20;
    opacity: 0;
    animation: floatIn 1s ease forwards;
}

.hero-float-card.card-1 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
}

.hero-float-card.card-2 {
    bottom: 25%;
    right: 5%;
    animation-delay: 1.2s;
}

.hero-float-card img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-float-card .card-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--jt-midnight);
}

/* ========================================
    Category Pills Section
======================================== */
.categories-section {
    padding: 2.5rem 0 2.5rem;
    padding-top: 4rem; /* Extra padding for hero preview cards overlap */
    background: var(--jt-cream);
}

.categories-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.categories-header .section-label {
    color: var(--jt-terracotta);
}

.categories-header .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.categories-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    justify-content: center;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--jt-midnight);
}

.category-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: var(--jt-midnight);
}

.category-pill .pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
}

/* Brand-consistent pill icon colors */
.category-pill.park .pill-icon { background: rgba(125, 139, 111, 0.15); color: var(--jt-sage); }
.category-pill.stay .pill-icon { background: rgba(196, 112, 79, 0.15); color: var(--jt-terracotta); }
.category-pill.eat .pill-icon { background: rgba(232, 168, 73, 0.15); color: var(--jt-sunset-gold); }
.category-pill.do .pill-icon { background: rgba(45, 74, 74, 0.15); color: var(--jt-deep-teal); }
.category-pill.wellness .pill-icon { background: rgba(201, 160, 137, 0.15); color: var(--jt-dusty-rose); }
.category-pill.weddings .pill-icon { background: rgba(196, 112, 79, 0.15); color: var(--jt-terracotta); }

/* ========================================
    Stats Section
======================================== */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header .section-label {
    color: var(--jt-terracotta);
}

.stats-header .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--jt-terracotta);
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin-top: 0.5rem;
}

/* ========================================
    Featured Destinations Section
======================================== */
.featured-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--jt-terracotta);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 0.75rem;
    color: var(--jt-terracotta);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.featured-card.large {
    grid-row: span 2;
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: white;
}

.featured-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.featured-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
}

.featured-card.large .featured-card-title {
    font-size: 1.75rem;
}

/* ========================================
    Where to Stay Section (NEW)
======================================== */
.stays-section {
    padding: var(--section-padding) 0;
    background: white;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stay-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.stay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.stay-card a {
    text-decoration: none;
    color: inherit;
}

.stay-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.stay-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.stay-card:hover .stay-card-image img {
    transform: scale(1.05);
}

.stay-card-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

.stay-card-body {
    padding: 1.25rem;
}

.stay-card-title {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.stay-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stay-card-price {
    font-weight: 600;
    color: var(--jt-sage);
}

.stay-card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.stay-card-rating i {
    color: var(--jt-sunset-gold);
}

.stay-card-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

/* ========================================
    Restaurants Section (NEW)
======================================== */
.restaurants-section {
    padding: var(--section-padding) 0;
    background: white;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.restaurant-featured-card {
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.restaurant-featured-image {
    height: 280px;
    overflow: hidden;
}

.restaurant-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.restaurant-featured-card:hover .restaurant-featured-image img {
    transform: scale(1.05);
}

.restaurant-featured-body {
    padding: 1.5rem;
}

.restaurant-featured-tag {
    display: inline-block;
    background: var(--jt-terracotta);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.restaurant-featured-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.restaurant-featured-body p {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.restaurant-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--jt-stone);
}

.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.restaurant-list-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-decoration: none;
    color: var(--jt-midnight);
}

.restaurant-list-card:hover {
    background: var(--jt-sand);
    color: var(--jt-midnight);
}

.restaurant-list-card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.restaurant-list-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.restaurant-list-card .cuisine {
    font-size: 0.8125rem;
    color: var(--jt-terracotta);
    margin: 0 0 0.25rem;
}

.restaurant-list-card .desc {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

/* ========================================
    Coffee Section (NEW)
======================================== */
.coffee-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.coffee-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.coffee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    color: var(--jt-midnight);
}

.coffee-card-image {
    height: 200px;
    overflow: hidden;
}

.coffee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.coffee-card:hover .coffee-card-image img {
    transform: scale(1.05);
}

.coffee-card-body {
    padding: 1.25rem;
}

.coffee-card-body h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.coffee-card-body p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.5;
}

.coffee-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(196, 112, 79, 0.1);
    color: var(--jt-terracotta);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* ========================================
    Attractions Section (NEW)
======================================== */
.attractions-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.attractions-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.attractions-scroll::-webkit-scrollbar {
    display: none;
}

.attraction-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    color: var(--jt-midnight);
}

.attraction-card-image {
    height: 180px;
    overflow: hidden;
}

.attraction-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attraction-card:hover .attraction-card-image img {
    transform: scale(1.05);
}

.attraction-card-body {
    padding: 1.25rem;
}

.attraction-card-category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jt-terracotta);
}

.attraction-card-title {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0.375rem 0;
}

.attraction-card-desc {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
    About/Intro Section (Split Layout)
======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 90%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-img-float {
    position: absolute;
    width: 50%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    bottom: -30px;
    right: 0;
    border: 4px solid white;
}

.about-content .section-label {
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--jt-stone);
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--jt-sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

/* ========================================
    Experiences Grid Section
======================================== */
.experiences-section {
    padding: var(--section-padding) 0;
    background: var(--jt-midnight);
    color: white;
}

.experiences-section .section-label {
    color: var(--jt-sunset-gold);
}

.experiences-section .section-title {
    color: white;
}

.experiences-section .view-all {
    color: var(--jt-sunset-gold);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.experience-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.experience-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.experience-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 168, 73, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--jt-sunset-gold);
    margin-bottom: 1.25rem;
}

.experience-card h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ========================================
    Testimonial Section
======================================== */
.testimonial-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: var(--jt-midnight);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0;
}

/* ========================================
    CTA Section
======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.cta-section-home {
    background: var(--jt-sand);
}

.cta-card {
    background: linear-gradient(135deg, var(--jt-terracotta) 0%, var(--jt-burnt-orange) 100%);
    border-radius: 32px;
    padding: clamp(3rem, 8vw, 5rem);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card .section-label {
    color: rgba(255,255,255,0.8);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--jt-terracotta);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--jt-terracotta);
}

/* ========================================
    Inner Page Hero
======================================== */
.hero-inner {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 74, 74, 0.85) 0%, rgba(26, 29, 33, 0.75) 100%);
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-inner-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: left;
}

.hero-inner-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 600px;
    /* margin: 0 auto; */
    text-align: left;
}

/* ========================================
    Breadcrumbs
======================================== */
.breadcrumb-nav {
    background: var(--jt-sand);
    padding: 0.875rem 0;
    /* margin-top: 73px; */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--jt-stone);
    margin-right: 0.5rem;
}

.breadcrumb-item a {
    color: var(--jt-terracotta);
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #a85d42;
    text-decoration: underline;
}

.breadcrumb-item.active span {
    color: var(--jt-stone);
}

/* ========================================
    Content Section (Inner Pages)
======================================== */
.content-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.main-article h2 {
    font-size: 1.75rem;
    color: var(--jt-deep-teal);
    margin: 2.5rem 0 1rem;
}

.main-article h2:first-child {
    margin-top: 0;
}

.main-article h3 {
    font-size: 1.375rem;
    margin: 2rem 0 0.75rem;
}

.main-article p {
    margin-bottom: 1.25rem;
    color: var(--jt-midnight);
}

.main-article img {
    border-radius: 12px;
    margin: 1.5rem 0;
}

.main-article ul,
.main-article ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.main-article li {
    margin-bottom: 0.5rem;
}

/* ========================================
    Quick Answer Box
======================================== */
.quick-answer {
    padding: 1.5rem 0;
    background: var(--jt-sand);
}

.quick-answer-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--jt-sunset-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.quick-answer-icon {
    width: 40px;
    height: 40px;
    background: var(--jt-sunset-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quick-answer-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jt-sunset-gold);
    margin-bottom: 0.5rem;
}

.quick-answer-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
    Sidebar
======================================== */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-card-header {
    background: var(--jt-deep-teal);
    color: white;
    padding: 1rem 1.25rem;
}

.sidebar-card-header h3 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.sidebar-card-body {
    padding: 1.25rem;
}

.at-a-glance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.at-a-glance-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.9375rem;
}

.at-a-glance-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.at-a-glance-list li:first-child {
    padding-top: 0;
}

.at-a-glance-list i {
    color: var(--jt-terracotta);
    font-size: 1.125rem;
    width: 20px;
}

.at-a-glance-list .label {
    color: var(--jt-stone);
    flex: 1;
}

.at-a-glance-list .value {
    font-weight: 600;
    color: var(--jt-midnight);
}

.related-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links-list li {
    margin-bottom: 0.5rem;
}

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

.related-links-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
}

.related-links-list a:hover {
    background: var(--jt-sand);
    color: var(--jt-terracotta);
}

.related-links-list a i {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.related-links-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-card.sidebar-card-cta {
    background: var(--jt-deep-teal);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.sidebar-card.sidebar-card-cta h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.sidebar-card.sidebar-card-cta p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
}

.sidebar-card.sidebar-card-cta .btn-primary {
    background: var(--jt-terracotta);
    color: white;
}

.sidebar-card.sidebar-card-cta .btn-primary:hover {
    background: #a85d42;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
    FAQ Section
======================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .section-title {
    margin-bottom: 2.5rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--jt-midnight);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: var(--jt-cream);
}

.accordion-button:not(.collapsed) {
    background: var(--jt-cream);
    color: var(--jt-terracotta);
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--jt-terracotta);
    transition: transform 0.3s ease;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    background-image: none;
}

.accordion-button:focus {
    box-shadow: none;
    outline: 2px solid var(--jt-terracotta);
    outline-offset: -2px;
}

.accordion-collapse {
    border-top: 1px solid var(--jt-sand);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--jt-midnight);
}

.accordion-body p {
    margin: 0 0 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

/* ========================================
    Listing Cards
======================================== */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.listing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.listing-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.listing-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.listing-card:hover .listing-card-image img {
    transform: scale(1.05);
}

.listing-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--jt-midnight);
}

.listing-card-body {
    padding: 1.25rem;
}

.listing-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--jt-midnight);
}

.listing-card-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.listing-card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

.listing-card-rating i {
    color: var(--jt-sunset-gold);
}

.listing-card-price {
    color: var(--jt-terracotta);
    font-weight: 600;
}

/* ========================================
    Text Utilities
======================================== */
.text-center {
    text-align: center;
}

/* ========================================
    Footer
======================================== */
.site-footer {
    background: var(--jt-midnight);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-img.footer-logo-img {
    height: 45px;
    filter: brightness(0) invert(1); /* Make logo white for dark footer */
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin: 1rem 0 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--jt-terracotta);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.5);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--jt-sunset-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ========================================
    Animations
======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@media (max-width: 1200px) {
    .nav-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--jt-midnight);
        padding: 0.25rem;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .nav-close:hover {
        color: var(--jt-terracotta);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--jt-sand);
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link .ph-caret-down {
        transition: transform 0.3s ease;
    }

    .nav-link.active .ph-caret-down {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--jt-sand);
        border-radius: 8px;
        margin: 0.5rem 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.5rem;
    }

    .dropdown-menu.show {
        display: block;
    }

    .btn-nav {
        order: 1;
        margin-left: auto;
        margin-right: 0.75rem;
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    body.nav-open {
        overflow: hidden;
    }

}
@media (max-width: 1024px) {

    .hero-preview-cards {
        max-width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }

    .hero-preview-card {
        padding: 0.75rem;
    }

    .hero-preview-card img {
        width: 50px;
        height: 50px;
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .featured-card.large {
        grid-row: span 1;
    }

    .stays-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurants-grid {
        gap: 1.5rem;
    }

    .restaurant-featured-image {
        height: 220px;
    }

    .coffee-grid {
        gap: 1rem;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
 

    .hero {
        min-height: 80vh;
        padding: 100px 0 80px;
    }

    .hero-bg::after {
        background: linear-gradient(
            0deg,
            rgba(255,255,255,0.7) 100%,
            rgba(255,255,255,0.4) 50%,
            rgba(255,255,255,0.1) 0%
        );
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-label::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-preview-cards {
        display: none;
    }

    .categories-section {
        padding-top: 3rem;
    }

    .hero-float-card {
        display: none;
    }

    .hero-inner {
        min-height: 35vh;
        padding: 100px 0 40px;
    }

    .breadcrumb-nav {
        /* margin-top: 65px; */
    }

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

    .sidebar {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -40px;
        margin-left: auto;
    }

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

    .stays-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .restaurant-featured-image {
        height: 200px;
    }

    .restaurant-list {
        margin-top: 1rem;
    }

    .coffee-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .coffee-card-image {
        height: 160px;
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }

    .quick-answer-card {
        flex-direction: column;
    }
}

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

/* ========================================
    NATIONAL PARK PAGE STYLES
======================================== */

/* Park Hero */
.park-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.park-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.park-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.park-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,29,33,0.1) 0%,
        rgba(26,29,33,0.3) 50%,
        rgba(26,29,33,0.85) 100%
    );
}

.park-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 700px;
}

.park-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.park-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 2rem;
}

.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-scroll-down:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* Quick Links Bar */
.quick-links-section {
    padding: 2.5rem 0;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.quick-links-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-links-bar::-webkit-scrollbar { display: none; }

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.quick-link-item:hover {
    background: var(--jt-sand);
    color: var(--jt-terracotta);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    background: var(--jt-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--jt-terracotta);
    transition: all 0.3s ease;
}

.quick-link-item:hover .quick-link-icon {
    background: var(--jt-terracotta);
    color: white;
}

.quick-link-item span {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Park About Section */
.park-about-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.park-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.park-about-images {
    position: relative;
}

.park-about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.park-about-img-float {
    position: absolute;
    width: 55%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    bottom: -40px;
    right: -30px;
    border: 5px solid white;
}

.park-about-content .section-label {
    margin-bottom: 0.75rem;
}

.park-about-content .section-title {
    margin-bottom: 1.5rem;
}

.park-about-text {
    font-size: 1.0625rem;
    color: var(--jt-midnight);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* At a Glance Card */
.at-a-glance-card {
    background: var(--jt-sand);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.at-a-glance-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--jt-midnight);
}

.at-a-glance-card h3 i {
    color: var(--jt-terracotta);
}

.at-a-glance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.at-a-glance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.at-a-glance-item > i {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.at-a-glance-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--jt-stone);
    margin-bottom: 0.125rem;
}

.at-a-glance-item .value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

/* Park Hikes Section */
.park-hikes-section {
    padding: var(--section-padding) 0;
    background: white;
}

.hikes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hike-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.hike-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.hike-card a {
    text-decoration: none;
    color: inherit;
}

.hike-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.hike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hike-card:hover .hike-card-image img {
    transform: scale(1.05);
}

.hike-difficulty {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hike-difficulty.easy {
    background: var(--jt-sage);
    color: white;
}

.hike-difficulty.moderate {
    background: var(--jt-sunset-gold);
    color: var(--jt-midnight);
}

.hike-difficulty.strenuous {
    background: var(--jt-burnt-orange);
    color: white;
}

.hike-card-body {
    padding: 1.25rem;
}

.hike-card-body h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.hike-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0 0 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hike-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.hike-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hike-stats i {
    color: var(--jt-terracotta);
}

/* Park Camping Section */
.park-camping-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.camping-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.camping-intro p {
    font-size: 1.0625rem;
    color: var(--jt-midnight);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.camping-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(216, 90, 43, 0.1);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--jt-burnt-orange);
    margin-bottom: 1.5rem;
}

.camping-note i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.campgrounds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.campground-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.campground-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.campground-header h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.campground-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.campground-badge.reservable {
    background: rgba(125, 139, 111, 0.15);
    color: var(--jt-sage);
}

.campground-badge.first-come {
    background: rgba(232, 168, 73, 0.15);
    color: var(--jt-sunset-gold);
}

.campground-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.campground-details .detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
}

.campground-details .label {
    color: var(--jt-stone);
}

.campground-details .value {
    font-weight: 600;
    color: var(--jt-midnight);
}

/* Park Seasons Section */
.park-seasons-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.park-seasons-section .section-header.text-center {
    justify-content: center;
    text-align: center;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.season-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.season-card.best {
    border: 2px solid var(--jt-terracotta);
}

.season-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.season-card.spring .season-accent { background: var(--jt-sunset-gold); }
.season-card.summer .season-accent { background: var(--jt-burnt-orange); }
.season-card.fall .season-accent { background: var(--jt-terracotta); }
.season-card.winter .season-accent { background: var(--jt-deep-teal); }

.season-best-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--jt-terracotta);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.season-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.season-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.season-header h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.season-months {
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.season-temp {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--jt-terracotta);
    margin-bottom: 1rem;
}

.season-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.season-highlights li {
    font-size: 0.8125rem;
    color: var(--jt-midnight);
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--jt-sand);
}

.season-highlights li:last-child {
    border-bottom: none;
}

.season-popularity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.season-popularity .pop-label {
    color: var(--jt-stone);
}

.season-popularity .pop-value {
    font-weight: 600;
    color: var(--jt-midnight);
}

.season-pop-bar {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.season-pop-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--jt-terracotta);
    width: 0;
    transition: width 1s ease;
}

/* Park Entrances Section */
.park-entrances-section {
    padding: var(--section-padding) 0;
    background: white;
}

.entrances-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.entrances-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.entrance-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--jt-cream);
    border-radius: 12px;
}

.entrance-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.entrance-card.west .entrance-marker { background: var(--jt-terracotta); }
.entrance-card.north .entrance-marker { background: var(--jt-sage); }
.entrance-card.south .entrance-marker { background: var(--jt-sunset-gold); }

.entrance-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.entrance-content p {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.5;
}

.drive-times-card {
    background: var(--jt-cream);
    border-radius: 16px;
    padding: 1.5rem;
}

.drive-times-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
}

.drive-times-card h4 i {
    color: var(--jt-terracotta);
}

.drive-times-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drive-time-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.drive-time-row .city {
    font-weight: 500;
    color: var(--jt-midnight);
}

.drive-time-row .dots {
    flex: 1;
    border-bottom: 2px dotted var(--jt-sand);
    margin: 0 0.5rem;
}

.drive-time-row .time {
    font-weight: 600;
    color: var(--jt-terracotta);
}

.drive-time-row .distance {
    color: var(--jt-stone);
    font-size: 0.8125rem;
    min-width: 50px;
    text-align: right;
}

/* Park Deserts Section */
.park-deserts-section {
    padding: var(--section-padding) 0;
    background: var(--jt-midnight);
    color: white;
}

.deserts-intro {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 1rem auto 3rem;
    text-align: center;
}

.deserts-comparison {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.desert-card {
    flex: 1;
    max-width: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}

.desert-image {
    height: 200px;
    overflow: hidden;
}

.desert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desert-content {
    padding: 1.5rem;
}

.desert-nickname {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--jt-sunset-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.desert-content h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}

.desert-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desert-content li {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.desert-content li:last-child {
    border-bottom: none;
}

.desert-content li strong {
    color: white;
}

.desert-vs {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--jt-sunset-gold);
    padding: 1rem;
    background: rgba(232, 168, 73, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Park Wildlife Section */
.park-wildlife-section {
    padding: var(--section-padding) 0;
    background: var(--jt-sand);
}

.wildlife-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.wildlife-scroll::-webkit-scrollbar { display: none; }

.wildlife-card {
    flex: 0 0 220px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.wildlife-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.wildlife-type {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.wildlife-type.flora {
    background: rgba(125, 139, 111, 0.15);
    color: var(--jt-sage);
}

.wildlife-type.wildlife {
    background: rgba(196, 112, 79, 0.15);
    color: var(--jt-terracotta);
}

.wildlife-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.wildlife-card p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.5;
}

/* Park Tips Section */
.park-tips-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.tips-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.tips-accordion .accordion-button i {
    margin-right: 0.75rem;
    color: var(--jt-terracotta);
    font-size: 1.125rem;
}

/* Park FAQ Section */
.park-faq-section {
    padding: var(--section-padding) 0;
    background: white;
}

/* Park Related Section */
.park-related-section {
    padding: var(--section-padding) 0;
    background: var(--jt-cream);
}

.related-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-guide-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.related-guide-card:hover {
    transform: translateY(-8px);
}

.related-guide-image {
    height: 280px;
    overflow: hidden;
}

.related-guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-guide-card:hover .related-guide-image img {
    transform: scale(1.05);
}

.related-guide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(26,29,33,0.9) 0%, transparent 100%);
    color: white;
}

.related-guide-content h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.related-guide-content p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ========================================
    NATIONAL PARK PAGE RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .park-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .park-about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .hikes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .camping-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .campgrounds-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .entrances-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .deserts-comparison {
        flex-direction: column;
    }

    .desert-card {
        max-width: 100%;
    }

    .desert-vs {
        transform: rotate(90deg);
    }

    .related-guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .park-hero {
        min-height: 70vh;
    }

    .park-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .quick-links-bar {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .quick-link-item {
        padding: 0.5rem 1rem;
    }

    .quick-link-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .at-a-glance-grid {
        grid-template-columns: 1fr;
    }

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

    .campgrounds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .related-guides-grid {
        grid-template-columns: 1fr;
    }

    .related-guide-image {
        height: 220px;
    }
}

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

/* ========================================
    SUB-PAGE CONTENT STYLES
======================================== */

/* Content Section & Grid */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section.bg-cream {
    background: var(--jt-cream);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.content-main h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 2.5rem 0 1rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.content-main p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.content-main ul, .content-main ol {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.content-main li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.content-main img {
    width: 100%;
    border-radius: 16px;
    margin: 1.5rem 0;
}

/* Info Callout Box */
.info-callout {
    background: var(--jt-sand);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-callout-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.info-callout p {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* Warning Callout */
.warning-callout {
    background: #FFF3E0;
    border-left: 4px solid var(--jt-sunset-gold);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.warning-callout h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--jt-midnight);
}

.warning-callout p {
    font-size: 0.875rem;
    margin: 0;
    color: #555;
}

/* Trail Filter Bar */
.trail-finder {
    background: var(--jt-sand);
    padding: 2rem 0;
}

.trail-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

.filter-pills {
    display: flex;
    gap: 0.5rem;
}

.filter-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--jt-terracotta);
    background: white;
    color: var(--jt-terracotta);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--jt-terracotta);
    color: white;
}

/* No results message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--jt-stone);
    font-size: 1.1rem;
}

.no-results-message i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Hikes Grid for Hub Page */
.hikes-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.comparison-table thead th {
    background: var(--jt-midnight);
    color: white;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    text-align: left;
    white-space: nowrap;
}

.comparison-table tbody td {
    padding: 1rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--jt-cream);
}

.comparison-table tbody tr:hover {
    background: var(--jt-sand);
}

/* Weather Grid */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.weather-month-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.weather-month-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.month-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.month-temps {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.temp-high { color: var(--jt-terracotta); }
.temp-divider { color: var(--jt-stone); margin: 0 0.25rem; }
.temp-low { color: var(--jt-sage); }

.month-rain {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
}

.month-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.month-tag.ideal { background: #E8F5E9; color: #2E7D32; }
.month-tag.hot { background: #FFF3E0; color: #E65100; }
.month-tag.extreme { background: #FFEBEE; color: #C62828; }
.month-tag.cool { background: #E3F2FD; color: #1976D2; }

/* Fee Cards */
.fee-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.fee-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.fee-card.featured {
    border: 2px solid var(--jt-terracotta);
    position: relative;
}

.fee-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jt-terracotta);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fee-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fee-card-type {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--jt-midnight);
    margin-bottom: 0.5rem;
}

.fee-card-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    margin-bottom: 0.5rem;
}

.fee-card-duration,
.fee-card-note {
    font-size: 0.875rem;
    color: var(--jt-stone);
}

/* Activity Cards Grid */
.activity-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.activity-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.activity-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.activity-card p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0;
}

/* Trail Stats Bar */
.trail-stats-bar {
    background: var(--jt-midnight);
    padding: 1.25rem 0;
}

.trail-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: white;
}

.trail-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trail-stat i {
    font-size: 1.25rem;
    color: var(--jt-sunset-gold);
}

.trail-stat-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
}

.trail-stat-value {
    font-weight: 600;
    font-size: 1rem;
}

.trail-stat-badge {
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}

.trail-stat-badge.easy { background: #2E7D32; color: white; }
.trail-stat-badge.moderate { background: #E65100; color: white; }
.trail-stat-badge.strenuous { background: #C62828; color: white; }

/* Trail Highlights */
.trail-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.trail-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--jt-sand);
    border-radius: 12px;
}

.trail-highlight-item i {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
}

.trail-highlight-item span {
    font-size: 0.9375rem;
    color: var(--jt-midnight);
}

/* Season Comparison Grid */
.season-comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.season-comparison-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.season-comparison-card.best {
    border: 2px solid var(--jt-terracotta);
}

.season-comparison-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    text-align: center;
}

.season-rating {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.season-metrics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.season-metrics li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.8125rem;
}

.season-metrics li:last-child {
    border-bottom: none;
}

.metric-label {
    width: 70px;
    color: var(--jt-stone);
}

.metric-bar {
    height: 8px;
    background: var(--jt-terracotta);
    border-radius: 4px;
}

.metric-bar.crowds {
    background: var(--jt-sunset-gold);
}

.metric-value {
    flex: 1;
    text-align: right;
    font-weight: 600;
    color: var(--jt-midnight);
}

/* Campground Detail Cards */
.campground-detail-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.campground-detail-image {
    height: 200px;
    overflow: hidden;
}

.campground-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campground-detail-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.campground-detail-content h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.campground-detail-content p {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0 0 1rem;
}

.campground-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--jt-cream);
    border-radius: 50px;
    font-size: 0.75rem;
}

.amenity-tag i {
    color: var(--jt-terracotta);
}

/* Checklist Styles */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--jt-sand);
}

.checklist li::before {
    content: '☐';
    color: var(--jt-terracotta);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

/* Other Hikes Grid */
.other-hikes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* SUB-PAGE RESPONSIVE */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .weather-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fee-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .season-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campground-detail-card {
        grid-template-columns: 1fr;
    }

    .campground-detail-image {
        height: 180px;
    }

    .campground-detail-content {
        padding: 1.5rem;
    }

    .other-hikes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trail-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .hikes-list-grid {
        grid-template-columns: 1fr;
    }

    .weather-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fee-cards-grid {
        grid-template-columns: 1fr;
    }

    .activity-cards-grid {
        grid-template-columns: 1fr;
    }

    .season-comparison-grid {
        grid-template-columns: 1fr;
    }

    .trail-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-pills {
        flex-wrap: wrap;
    }

    .trail-highlights {
        grid-template-columns: 1fr;
    }

    .other-hikes-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WHERE TO STAY SECTION STYLES
======================================== */

/* Accommodation Card */
.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accommodation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.accommodation-card-link {
    text-decoration: none;
    color: var(--jt-midnight);
    display: block;
}

.accommodation-card-image {
    position: relative;
    overflow: hidden;
}

.accommodation-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-card-image img {
    transform: scale(1.05);
}

.accommodation-card-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accommodation-card-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--jt-midnight);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.accommodation-card-body {
    padding: 1.5rem;
}

.accommodation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.accommodation-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.accommodation-card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--jt-sunset-gold);
    flex-shrink: 0;
}

.accommodation-card-location {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.accommodation-card-location i {
    color: var(--jt-terracotta);
}

.accommodation-card-desc {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accommodation-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.acc-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: var(--jt-sand);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--jt-midnight);
}

.acc-tag i {
    font-size: 0.75rem;
    color: var(--jt-terracotta);
}

.accommodation-card-sleeps {
    font-size: 0.75rem;
    color: var(--jt-stone);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.accommodation-card-sleeps i {
    color: var(--jt-sage);
}

/* Accommodation Grid */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) { .accommodation-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .accommodation-grid { grid-template-columns: 1fr; } }

/* Accommodation Type Cards */
.acc-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.acc-type-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.acc-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    color: var(--jt-midnight);
}

.acc-type-icon {
    width: 60px;
    height: 60px;
    background: var(--jt-sand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--jt-terracotta);
    flex-shrink: 0;
}

.acc-type-content {
    flex: 1;
}

.acc-type-title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.acc-type-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0.5rem;
}

.acc-type-price {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--jt-terracotta);
}

.acc-type-arrow {
    font-size: 1.25rem;
    color: var(--jt-stone);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.acc-type-card:hover .acc-type-arrow {
    transform: translateX(4px);
    color: var(--jt-terracotta);
}

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

/* Area Guide Cards */
.area-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.area-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.area-card-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.area-card-body {
    padding: 1.5rem;
}

.area-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.area-card-badge {
    display: inline-block;
    background: rgba(232, 168, 73, 0.15);
    color: var(--jt-sunset-gold);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.area-card-desc {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.area-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.area-card-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.area-card-stats i {
    color: var(--jt-terracotta);
}

@media (max-width: 640px) {
    .area-card {
        grid-template-columns: 1fr;
    }

    .area-card-image img {
        height: 180px;
    }
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tip-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.tip-card-number {
    width: 36px;
    height: 36px;
    background: var(--jt-terracotta);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.9375rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tips-grid { grid-template-columns: 1fr; } }

/* Size Guide Cards */
.size-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.size-guide-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.size-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.size-guide-icon {
    width: 56px;
    height: 56px;
    background: var(--jt-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--jt-terracotta);
}

.size-guide-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.size-guide-type {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0.5rem;
}

.size-guide-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--jt-terracotta);
    margin-bottom: 1rem;
}

.size-guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.size-guide-card ul li {
    font-size: 0.8125rem;
    color: #555;
    padding: 0.375rem 0;
    border-top: 1px solid var(--jt-sand);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-guide-card ul li::before {
    content: "✓";
    color: var(--jt-sage);
    font-weight: 600;
}

@media (max-width: 1024px) { .size-guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .size-guide-grid { grid-template-columns: 1fr; } }

/* Glamping Type Cards */
.glamping-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.glamping-type-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.glamping-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.glamping-type-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.glamping-type-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.glamping-type-card p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

@media (max-width: 768px) { .glamping-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .glamping-types-grid { grid-template-columns: 1fr; } }

/* Booking Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.platform-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.platform-logo {
    width: 48px;
    height: 48px;
    background: var(--jt-sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--jt-terracotta);
}

.platform-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.platform-card p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

@media (max-width: 768px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .platforms-grid { grid-template-columns: 1fr; } }

/* What to Look For Checklist */
.look-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.look-for-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.look-for-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.look-for-icon {
    width: 36px;
    height: 36px;
    background: var(--jt-sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--jt-terracotta);
    flex-shrink: 0;
}

.look-for-item h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.look-for-item p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

@media (max-width: 640px) {
    .look-for-grid { grid-template-columns: 1fr; }
}

/* Quirks/Expect Section */
.quirks-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.quirks-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(232, 168, 73, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.quirks-list li i {
    color: var(--jt-sunset-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.quirks-list li strong {
    display: block;
    margin-bottom: 0.25rem;
}

.quirks-list li span {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}
/* ========================================
   EAT & DRINK SECTION STYLES
======================================== */

/* Restaurant Card */
.restaurant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.restaurant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.restaurant-card-link {
    text-decoration: none;
    color: var(--jt-midnight);
    display: block;
}

.restaurant-card-image {
    position: relative;
    overflow: hidden;
}

.restaurant-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-card-image img {
    transform: scale(1.05);
}

.restaurant-card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
}

.restaurant-card-cuisine {
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.restaurant-card-price {
    background: var(--jt-midnight);
    color: var(--jt-sunset-gold);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.restaurant-card-body {
    padding: 1.5rem;
}

.restaurant-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.restaurant-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.restaurant-card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--jt-sunset-gold);
    flex-shrink: 0;
}

.restaurant-card-location {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.restaurant-card-location i {
    color: var(--jt-terracotta);
}

.restaurant-card-desc {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.restaurant-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.restaurant-detail {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.restaurant-detail i {
    color: var(--jt-terracotta);
}

.restaurant-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.resto-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--jt-sand);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) { .restaurant-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .restaurant-grid { grid-template-columns: 1fr; } }

/* Meal Filter Bar */
.meal-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meal-filter {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.meal-filter:hover {
    border-color: var(--jt-terracotta);
    color: var(--jt-terracotta);
}

.meal-filter.active {
    background: var(--jt-terracotta);
    color: white;
    border-color: var(--jt-terracotta);
}

/* Coffee Shop Card */
.coffee-shop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.25rem;
}

.coffee-shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.coffee-shop-card-image img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

.coffee-shop-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coffee-shop-card-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coffee-shop-card-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.coffee-shop-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 1rem;
}

.coffee-shop-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.coffee-shop-card-meta i {
    color: var(--jt-terracotta);
}

.coffee-shop-card-vibes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vibe-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: rgba(196, 112, 79, 0.1);
    color: var(--jt-terracotta);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .coffee-shop-card {
        grid-template-columns: 1fr;
    }
    
    .coffee-shop-card-image img {
        height: 200px;
    }
}

/* Dining Category Cards */
.dining-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dining-cat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dining-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    color: var(--jt-midnight);
}

.dining-cat-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.dining-cat-card h2 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dining-cat-card p {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

@media (max-width: 768px) {
    .dining-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Featured Restaurant Spotlight */
.featured-restaurant {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1.5rem;
}

.featured-restaurant-image {
    border-radius: 24px;
    overflow: hidden;
}

.featured-restaurant-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-restaurant-badge {
    display: inline-block;
    background: rgba(232, 168, 73, 0.15);
    color: var(--jt-sunset-gold);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.featured-restaurant-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.featured-restaurant-meta {
    font-size: 1rem;
    color: var(--jt-stone);
    margin-bottom: 1rem;
}

.featured-restaurant-desc {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-restaurant-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.fr-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.fr-detail > i {
    font-size: 1.25rem;
    color: var(--jt-terracotta);
    margin-top: 2px;
}

.fr-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jt-stone);
}

.fr-value {
    font-size: 0.9375rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .featured-restaurant {
        grid-template-columns: 1fr;
    }
    
    .featured-restaurant-image img {
        min-height: 250px;
    }
}

/* Dining by Area Cards */
.area-dining-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-dining-card {
    background: var(--jt-cream);
    border-radius: 20px;
    padding: 2rem;
}

.area-dining-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.area-dining-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.area-dining-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    background: rgba(196, 112, 79, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
}

.area-dining-card > p {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin-bottom: 1rem;
}

.area-dining-highlights {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.highlight-tag {
    padding: 0.25rem 0.625rem;
    background: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.area-dining-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-dining-list li {
    padding: 0.625rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.9375rem;
}

.area-dining-list li strong {
    color: var(--jt-midnight);
}

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

/* Ranked Restaurant Card (Best Restaurants page) */
.ranked-restaurant-card {
    display: grid;
    grid-template-columns: auto 280px 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    align-items: center;
}

.ranked-restaurant-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.ranked-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--jt-terracotta);
    padding: 2rem;
    padding-right: 0;
    opacity: 0.3;
}

.ranked-restaurant-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.ranked-restaurant-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.ranked-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.375rem;
}

.ranked-title {
    font-size: 1.375rem;
    margin: 0;
}

.ranked-rating {
    color: var(--jt-sunset-gold);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.ranked-meta {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
}

.ranked-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.ranked-must-order {
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--jt-sand);
    border-radius: 10px;
}

.ranked-must-order strong {
    color: var(--jt-terracotta);
}

@media (max-width: 1024px) {
    .ranked-restaurant-card {
        grid-template-columns: auto 1fr;
    }
    .ranked-restaurant-image { display: none; }
}

@media (max-width: 640px) {
    .ranked-restaurant-card {
        grid-template-columns: 1fr;
    }
    .ranked-number {
        padding: 1.5rem 1.5rem 0;
        font-size: 2rem;
    }
    .ranked-restaurant-content {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Breakfast Timeline */
.breakfast-timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.breakfast-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--jt-sand);
}

.timeline-item {
    position: relative;
    padding: 1.25rem 0;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.125rem;
    top: 1.75rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--jt-terracotta);
    border: 3px solid var(--jt-cream);
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    margin-bottom: 0.25rem;
}

.timeline-place {
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.timeline-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
}

/* Restaurant Detail Bar (individual pages) */
.restaurant-detail-bar {
    background: var(--jt-midnight);
    padding: 1.25rem 0;
}

.restaurant-details-grid {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: white;
    flex-wrap: wrap;
}

.rd-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rd-item > i {
    font-size: 1.25rem;
    color: var(--jt-sunset-gold);
}

.rd-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.6);
}

.rd-value {
    font-weight: 600;
    font-size: 1rem;
}

/* Bar Card */
.bar-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 1.25rem;
}

.bar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.bar-card-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.bar-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.bar-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.bar-card-type {
    background: var(--jt-deep-teal);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bar-card-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.bar-card-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.bar-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.bar-card-meta i {
    color: var(--jt-terracotta);
}

@media (max-width: 768px) {
    .bar-card {
        grid-template-columns: 1fr;
    }
    
    .bar-card-image img {
        height: 180px;
    }
}

/* What to Order Grid */
.menu-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.menu-item-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--jt-sand);
    border-radius: 16px;
}

.menu-item-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.menu-item-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.menu-item-content p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .menu-highlights-grid { grid-template-columns: 1fr; }
}

/* Know Before You Go Box */
.know-before-box {
    background: var(--jt-sand);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.know-before-box h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.know-before-box h3 i {
    color: var(--jt-terracotta);
}

.know-before-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.know-before-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.know-before-item i {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
    font-size: 1rem;
}

.know-before-item .label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jt-stone);
    margin-bottom: 0.125rem;
}

.know-before-item .value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

@media (max-width: 640px) {
    .know-before-grid { grid-template-columns: 1fr; }
}

/* Also Nearby Grid */
.nearby-restaurants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) { .nearby-restaurants-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .nearby-restaurants-grid { grid-template-columns: 1fr; } }

/* Best For Quick Reference */
.best-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.best-for-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.best-for-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.best-for-label {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    min-width: 90px;
}

.best-for-value {
    font-weight: 600;
    color: var(--jt-midnight);
    font-size: 0.9375rem;
}

@media (max-width: 640px) {
    .best-for-grid { grid-template-columns: 1fr; }
}

/* Nightlife Expectations Box */
.expectations-box {
    background: var(--jt-deep-teal);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.expectations-box h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expectations-box h3 i {
    color: var(--jt-sunset-gold);
}

.expectations-box p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
    THINGS TO DO - ACTIVITY CARDS
======================================== */

/* Activity Card Component */
.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.activity-card-link {
    text-decoration: none;
    color: var(--jt-midnight);
    display: block;
}

.activity-card-image {
    position: relative;
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.05);
}

.activity-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.activity-card-body {
    padding: 1.5rem;
}

.activity-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity-card-desc {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.activity-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.activity-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.activity-card-meta i {
    color: var(--jt-terracotta);
}

.activity-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.activity-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--jt-sand);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--jt-midnight);
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Dark Background Activity Cards */
.activity-card.activity-card-dark {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0;
    text-align: left;
}

.activity-card.activity-card-dark .activity-card-link {
    color: white;
}

.activity-card.activity-card-dark .activity-card-title {
    color: #fff;
}

.activity-card.activity-card-dark .activity-card-desc {
    color: rgba(255,255,255,0.85);
}

.activity-card.activity-card-dark .activity-card-meta {
    color: rgba(255,255,255,0.7);
}

.activity-card.activity-card-dark .activity-card-meta i {
    color: var(--jt-sunset-gold);
}

.activity-card.activity-card-dark .activity-tag {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.activity-card.activity-card-dark .activity-card-category {
    background: rgba(255,255,255,0.95);
    color: var(--jt-midnight);
}

.activity-card.activity-card-dark:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
}

/* Day Trip Cards Scroll */
.day-trip-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.day-trip-scroll::-webkit-scrollbar {
    display: none;
}

.day-trip-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--jt-midnight);
}

.day-trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.day-trip-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.day-trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.day-trip-card:hover .day-trip-card-image img {
    transform: scale(1.05);
}

.day-trip-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: white;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.day-trip-badge i {
    color: var(--jt-terracotta);
}

.day-trip-card-body {
    padding: 1.25rem;
}

.day-trip-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.day-trip-card-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

/* Mini Wellness Cards */
.mini-wellness-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--jt-cream);
    border-radius: 12px;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
}

.mini-wellness-card:hover {
    background: var(--jt-sand);
    transform: translateX(4px);
}

.mini-wellness-icon {
    width: 44px;
    height: 44px;
    background: var(--jt-sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.mini-wellness-card:hover .mini-wellness-icon {
    background: white;
}

.mini-wellness-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.mini-wellness-meta {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
}

/* Event Scroll Cards */
.event-scroll-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.event-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.event-scroll-date {
    flex: 0 0 80px;
    background: var(--jt-deep-teal);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    text-align: center;
}

.event-scroll-month {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.event-scroll-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.event-scroll-info {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-scroll-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.event-scroll-meta {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.4;
}

/* Stargazing Spot Cards */
.stargazing-spot-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stargazing-spot-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.stargazing-spot-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stargazing-spot-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
}

.stargazing-spot-location {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.stargazing-spot-location i {
    color: var(--jt-terracotta);
}

.light-pollution-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.light-pollution-badge.minimal {
    background: #d4edda;
    color: #155724;
}

.light-pollution-badge.low {
    background: #fff3cd;
    color: #856404;
}

.stargazing-spot-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* Meteor Shower Table */
.meteor-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.meteor-table th {
    background: var(--jt-sand);
    padding: 1rem;
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jt-stone);
    font-weight: 700;
}

.meteor-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.9375rem;
}

.meteor-table tr:last-child td {
    border-bottom: none;
}

.meteor-table .shower-name {
    font-weight: 600;
    color: #fff;
}

/* Climbing Level Cards */
.climbing-level-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--jt-terracotta);
}

.climbing-level-card.intermediate {
    border-left-color: var(--jt-deep-teal);
}

.climbing-level-card.advanced {
    border-left-color: var(--jt-midnight);
}

.climbing-level-header {
    margin-bottom: 1rem;
}

.climbing-level-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--jt-sand);
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.climbing-level-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.climbing-level-areas {
    font-size: 0.875rem;
    color: var(--jt-terracotta);
    margin-top: 0.25rem;
}

.climbing-level-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* Guide Service Cards */
.guide-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.guide-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.guide-icon {
    width: 56px;
    height: 56px;
    background: var(--jt-cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guide-info {
    flex: 1;
}

.guide-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.guide-meta {
    font-size: 0.875rem;
    color: var(--jt-stone);
}

.guide-price {
    font-weight: 600;
    color: var(--jt-terracotta);
    font-size: 1rem;
}

/* Wellness Destination Cards */
.wellness-destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wellness-destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.wellness-destination-image {
    height: 180px;
    overflow: hidden;
}

.wellness-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wellness-destination-card:hover .wellness-destination-image img {
    transform: scale(1.05);
}

.wellness-destination-body {
    padding: 1.5rem;
}

.wellness-destination-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.wellness-destination-location {
    font-size: 0.8125rem;
    color: var(--jt-terracotta);
    margin-bottom: 0.75rem;
}

.wellness-destination-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* Art Destination Cards */
.art-destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.art-destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.art-destination-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.art-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.art-destination-card:hover .art-destination-image img {
    transform: scale(1.05);
}

.art-destination-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.art-destination-body {
    padding: 1.5rem;
}

.art-destination-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.art-destination-meta {
    font-size: 0.8125rem;
    color: var(--jt-terracotta);
    margin-bottom: 0.75rem;
}

.art-destination-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* Shop Cards */
.shop-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.shop-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.shop-icon {
    width: 52px;
    height: 52px;
    background: var(--jt-cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    font-size: 1.375rem;
    flex-shrink: 0;
}

.shop-content {
    flex: 1;
}

.shop-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.shop-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jt-terracotta);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shop-location {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.shop-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.5;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

/* Info Callout Grid (for climbing/etc) */
.info-callout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-callout-item {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
}

.info-callout-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--jt-terracotta);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-callout-text {
    font-size: 0.9375rem;
    color: var(--jt-midnight);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .info-callout-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--jt-midnight);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: var(--jt-midnight);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    background: var(--jt-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: var(--jt-terracotta);
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    background: var(--jt-terracotta);
    color: white;
}

.quick-link-label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.quick-link-detail {
    display: block;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

@media (max-width: 992px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Venue Cards */
.venue-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.venue-card:hover .venue-card-image img {
    transform: scale(1.05);
}

.venue-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.venue-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--jt-midnight);
    margin: 0 0 0.25rem 0;
}

.venue-card-location {
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.venue-card-location i {
    color: var(--jt-terracotta);
}

.venue-card-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex: 1;
}

.venue-card-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 1rem;
}

.venue-card-details span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.venue-card-details i {
    color: var(--jt-terracotta);
}

.venue-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.venue-card-link:hover {
    gap: 0.625rem;
    color: var(--jt-midnight);
}

.venue-card-park {
    border: 2px solid var(--jt-sage);
}

@media (max-width: 1024px) {
    .venue-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Area Cards */
.area-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.area-cards-grid .area-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    grid-template-columns: none;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.area-card-link {
    text-decoration: none;
    color: var(--jt-midnight);
    display: block;
}

.area-card-image {
    position: relative;
    overflow: hidden;
}

.area-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover .area-card-image img {
    transform: scale(1.05);
}

.area-card-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.area-card-distance {
    background: rgba(255,255,255,0.95);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.area-cards-grid .area-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.area-card-header {
    margin-bottom: 0.75rem;
}

.area-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.area-card-vibe {
    font-size: 0.8125rem;
    color: var(--jt-terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-card-desc {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.area-card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.area-tag {
    background: var(--jt-cream);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--jt-midnight);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

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

/* Attraction Mini Cards */
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.attraction-mini-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.attraction-mini-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.attraction-mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--jt-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--jt-terracotta);
}

.attraction-mini-body {
    flex: 1;
}

.attraction-mini-title {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.375rem 0;
}

.attraction-mini-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.attraction-mini-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

.attraction-mini-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

/* Area Comparison Table */
.area-comparison {
    margin: 2rem 0;
}

.area-comparison .table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--jt-sand);
}

.comparison-table th {
    background: var(--jt-midnight);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.comparison-table th:first-child {
    border-radius: 8px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 8px 0 0;
}

.comparison-table .comparison-label {
    font-weight: 600;
    color: var(--jt-midnight);
    background: var(--jt-cream);
}

.comparison-table tbody tr:hover {
    background: rgba(0,0,0,0.02);
}

/* Events List */
.events-list {
    margin-top: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--jt-sand);
}

.event-item:last-child {
    border-bottom: none;
}

.event-icon {
    width: 40px;
    height: 40px;
    background: var(--jt-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jt-terracotta);
    flex-shrink: 0;
}

.event-name {
    font-weight: 600;
    color: var(--jt-midnight);
    margin-bottom: 0.125rem;
}

.event-timing {
    font-size: 0.8125rem;
    color: var(--jt-stone);
}

/* Animation Fallbacks */
.activity-card,
.quick-link-card,
.restaurant-card,
.coffee-card,
.day-trip-card,
.event-scroll-card,
.stargazing-spot-card,
.climbing-level-card,
.guide-card,
.wellness-destination-card,
.art-destination-card,
.shop-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Wellness Two-Column Feature */
.wellness-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .wellness-feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wellness-feature-image {
        order: -1;
    }
}

.wellness-feature-image img {
    width: 100%;
    border-radius: 24px;
}

/* Photography Tips Box */
.photo-tips-box {
    background: var(--jt-midnight);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.photo-tips-box h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photo-tips-box h3 i {
    color: var(--jt-sunset-gold);
}

.photo-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.photo-tip-item {
    text-align: center;
}

.photo-tip-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jt-sunset-gold);
    margin-bottom: 0.25rem;
}

.photo-tip-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
    .photo-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Booking Tips Box */
.booking-tips-box {
    background: var(--jt-cream);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.booking-tips-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-tips-box h4 i {
    color: var(--jt-terracotta);
}

.booking-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-tips-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: #555;
}

.booking-tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--jt-terracotta);
    font-weight: bold;
}

/* Two Column Layout (alias for content-grid) */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
}

.two-column-layout .main-content > h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.two-column-layout .main-content > h3:first-of-type {
    margin-top: 2rem;
}

.two-column-layout .main-content > .know-before-box,
.two-column-layout .main-content > .info-callout-grid,
.two-column-layout .main-content > .booking-tips-box {
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar List */
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.9375rem;
    color: #555;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li strong {
    color: var(--jt-midnight);
}

/* Sidebar Card (simple box) */
.sidebar-card {
    background: var(--jt-cream);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--jt-midnight);
}

/* ========================================
    Guide Cards
======================================== */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991.98px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.guide-card-link {
    text-decoration: none;
    color: var(--jt-midnight);
    display: block;
}

.guide-card-image {
    position: relative;
    overflow: hidden;
}

.guide-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.05);
}

.guide-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--jt-terracotta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.guide-card-body {
    padding: 1.5rem;
}

.guide-card-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.guide-card-desc {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.guide-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
    font-weight: 600;
}

.guide-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.guide-card-stats i {
    color: var(--jt-terracotta);
}

/* ========================================
    Itinerary Timeline
======================================== */
.itinerary-timeline {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--jt-cream);
}

.timeline-day-badge {
    background: var(--jt-terracotta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.timeline-day-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.timeline-stop {
    display: grid;
    grid-template-columns: 80px 40px 1fr;
    gap: 0;
    margin-bottom: 0;
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--jt-terracotta);
    padding-top: 0.25rem;
    text-align: right;
    padding-right: 0.75rem;
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--jt-terracotta);
    border: 3px solid var(--jt-cream);
    flex-shrink: 0;
    margin-top: 0.375rem;
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--jt-sand);
    min-height: 40px;
}

.timeline-stop:last-child .timeline-line {
    display: none;
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-stop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 0.75rem;
}

.timeline-stop-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.timeline-stop-type {
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.type-food { background: #FEF3E2; color: #B8860B; }
.type-hike { background: #E8F5E9; color: #2E7D32; }
.type-scenic { background: #E3F2FD; color: #1565C0; }
.type-culture { background: #F3E5F5; color: #7B1FA2; }
.type-night { background: #1A1A2E; color: #FFD700; }
.type-shop { background: #FFF3E0; color: #E65100; }
.type-drive { background: #ECEFF1; color: #455A64; }

.timeline-stop-desc {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.timeline-stop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
}

.timeline-stop-meta:last-child {
    margin-bottom: 0;
}

.timeline-stop-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.timeline-stop-meta i {
    color: var(--jt-terracotta);
}

.timeline-tip {
    background: var(--jt-cream);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: var(--jt-midnight);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.timeline-tip i {
    color: var(--jt-sunset-gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Timeline responsive: stack on mobile */
@media (max-width: 575.98px) {
    .timeline-stop {
        grid-template-columns: 1fr;
    }
    .timeline-time {
        text-align: left;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 0.25rem;
    }
    .timeline-connector {
        display: none;
    }
    .timeline-content {
        margin-left: 0;
        border-left: 3px solid var(--jt-terracotta);
    }
    .timeline-day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ========================================
    Packing Checklist
======================================== */
.packing-checklist {
    background: var(--jt-cream);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.checklist-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-title i {
    color: var(--jt-terracotta);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.checklist-item i {
    color: var(--jt-sage);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ========================================
    Comparison Table (for guides)
======================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.comparison-table thead th {
    background: var(--jt-midnight);
    color: white;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.comparison-table thead th:first-child {
    border-top-left-radius: 16px;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 16px;
}

.comparison-table tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.9375rem;
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--jt-midnight);
    background: var(--jt-cream);
}

.comparison-table tbody tr:hover td {
    background: rgba(232, 223, 208, 0.3);
}

.comparison-table tbody tr:hover td:first-child {
    background: var(--jt-cream);
}

/* Planning Tips Box */
.planning-tips-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.planning-tips-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem 0;
}

.planning-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planning-tips-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--jt-sand);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.planning-tips-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.planning-tips-list strong {
    color: var(--jt-terracotta);
}

/* Route Map Box */
.route-map-box {
    background: var(--jt-sand);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.route-map-box img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.route-map-note {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin: 0;
}

/* Seasonal Adjustments Box */
.seasonal-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.seasonal-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.seasonal-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--jt-terracotta);
}

.seasonal-item p {
    font-size: 0.9375rem;
    color: var(--jt-stone);
    margin: 0;
    line-height: 1.6;
}

/* Quick Stats Box (for sidebar) */
.quick-stats-box {
    background: var(--jt-terracotta);
    color: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quick-stats-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: white;
}

.quick-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 0.875rem;
}

.quick-stats-list li:last-child {
    border-bottom: none;
}

.quick-stats-list .stat-label {
    opacity: 0.9;
}

.quick-stats-list .stat-value {
    font-weight: 600;
}

/* ========================================
   Ultimate Guide 2026 Styles
======================================== */

/* Ultimate Guide Hero */
.ultimate-guide-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(175deg, var(--jt-midnight) 0%, #1A2238 40%, #A14E2E 70%, #E8845C 90%, #D4A853 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.ultimate-guide-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 45% 22%, rgba(255,255,255,0.9) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 5%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 18%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 88% 12%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 10%, rgba(255,255,255,1) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 28%, rgba(255,255,255,0.6) 0%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.ultimate-guide-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1.2s ease-out;
}

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

.ultimate-guide-hero .hero-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #E8C97A;
    margin-bottom: 1.5rem;
}

.ultimate-guide-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.ultimate-guide-hero h1 span {
    display: block;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: 0.4em;
    color: #E8C97A;
    margin-top: 0.5em;
}

.ultimate-guide-hero .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 1.5rem auto 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.ultimate-guide-hero .hero-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 1.5px solid #E8C97A;
    color: #E8C97A;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    border-radius: 4px;
}

.ultimate-guide-hero .hero-cta:hover {
    background: #E8C97A;
    color: var(--jt-midnight);
}

.hero-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 1;
    background: linear-gradient(to top, var(--jt-cream) 0%, transparent 100%);
    pointer-events: none;
}

/* Table of Contents Bar */
.toc-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,112,79,0.12);
    padding: 0.75rem 1rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.toc-bar::-webkit-scrollbar { height: 0; }

.toc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.toc-bar a {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    color: var(--jt-stone);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 100px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.toc-bar a:hover {
    color: var(--jt-terracotta);
    background: rgba(196,112,79,0.08);
}

/* Guide Section Styles */
.guide-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--section-padding) 2rem;
}

.guide-section-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--section-padding) 2rem;
}

.guide-section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--jt-terracotta);
    margin-bottom: 0.75rem;
}

.guide-divider {
    width: 60px;
    height: 3px;
    background: var(--jt-terracotta);
    margin: 0 0 2rem;
    border-radius: 2px;
}

.guide-lead {
    font-size: 1.1rem;
    color: var(--jt-stone);
    font-weight: 300;
    line-height: 1.8;
}

/* Season Cards */
.season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.season-card {
    padding: 1.75rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.season-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.season-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.season-temp {
    font-family: var(--font-heading);
    font-size: 2rem;
    opacity: 0.25;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
}

.season-spring {
    background: linear-gradient(135deg, #E8F0DB 0%, #D4E4C0 100%);
    color: #2D4A1E;
}
.season-spring h4 { color: #1B3210; }

.season-summer {
    background: linear-gradient(135deg, #FCE4C8 0%, #F5C490 100%);
    color: #6B3A1A;
}
.season-summer h4 { color: #4A2810; }

.season-fall {
    background: linear-gradient(135deg, #F5DFC8 0%, #E8C4A0 100%);
    color: #5A3418;
}
.season-fall h4 { color: #3E2410; }

.season-winter {
    background: linear-gradient(135deg, #D8E4F0 0%, #B8CCE0 100%);
    color: #2A3E56;
}
.season-winter h4 { color: #1A2A3E; }

/* Tip Box */
.tip-box {
    background: linear-gradient(135deg, var(--jt-sand) 0%, #E8DFD0 100%);
    border-left: 4px solid var(--jt-terracotta);
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.tip-box h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--jt-terracotta);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.tip-box p {
    font-size: 0.9rem;
    color: var(--jt-midnight);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Dark Section */
.dark-section {
    background: var(--jt-midnight);
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(1px 1px at 5% 10%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 95% 70%, rgba(255,255,255,0.3) 0%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
}

.dark-section h2 { color: #fff; }
.dark-section h3 { color: #E8C97A; font-family: var(--font-heading); font-size: 1.35rem; margin-top: 2rem; }
.dark-section .guide-section-label { color: #D4A853; }
.dark-section .guide-divider { background: #D4A853; }

.dark-section .tip-box {
    background: rgba(255,255,255,0.05);
    border-left-color: #D4A853;
}

.dark-section .tip-box h4 { color: #D4A853; }
.dark-section .tip-box p { color: rgba(255,255,255,0.6); }

/* Moon Calendar */
.moon-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.moon-month {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.moon-month-name {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4A853;
    margin-bottom: 0.35rem;
}

.moon-month-date {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
}

.moon-month-window {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
}

/* Meteor Table Wrapper */
.meteor-table-wrapper {
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.meteor-rating {
    color: #E8C97A;
    letter-spacing: 2px;
}

.moon-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
}

.moon-excellent { background: rgba(122,175,142,0.2); color: #9BAF8E; }
.moon-good { background: rgba(212,168,83,0.2); color: #E8C97A; }
.moon-poor { background: rgba(212,114,138,0.2); color: #D4728A; }

/* Eclipse Cards */
.eclipse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.eclipse-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.eclipse-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.eclipse-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.eclipse-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.eclipse-card .eclipse-date {
    color: #E8C97A;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.eclipse-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.eclipse-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-top: 0.5rem;
}

.eclipse-tag-highlight {
    background: var(--jt-terracotta);
    color: white;
}

.eclipse-tag-secondary {
    background: rgba(212,168,83,0.2);
    color: #E8C97A;
}

/* Warm Section */
.warm-section {
    background: linear-gradient(165deg, #FBF4E8 0%, var(--jt-sand) 100%);
}

/* Hike Cards */
.hike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hike-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hike-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42,34,24,0.08);
}

.hike-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--jt-midnight);
    margin-bottom: 0.5rem;
}

.hike-card p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.hike-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.hike-tag-easy { background: #E8F5E9; color: #2E7D32; }
.hike-tag-moderate { background: #FFF3E0; color: #E65100; }
.hike-tag-hard { background: #FCE4EC; color: #C62828; }

/* Activity Cards */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.activity-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42,34,24,0.08);
}

.activity-card .activity-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.activity-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--jt-midnight);
    margin-bottom: 0.5rem;
}

.activity-card p {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Event Timeline (2026 version) */
.event-timeline {
    margin-top: 2rem;
    position: relative;
}

.event-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--jt-terracotta), var(--jt-sunset-gold), var(--jt-sage));
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.event-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--jt-terracotta);
    border: 3px solid var(--jt-cream);
    box-shadow: 0 0 0 2px var(--jt-terracotta);
    flex-shrink: 0;
    margin-top: 0.35rem;
    position: relative;
    left: 19px;
    z-index: 2;
}

.event-content {
    padding-left: 0.5rem;
}

.event-date {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--jt-terracotta);
    margin-bottom: 0.25rem;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--jt-midnight);
}

.event-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-top: 0.25rem;
    line-height: 1.6;
}

/* Dining List */
.dining-list {
    margin-top: 1.5rem;
}

.dining-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    align-items: flex-start;
}

.dining-item:last-child { border-bottom: none; }

.dining-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jt-sand);
    border-radius: 12px;
}

.dining-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--jt-midnight);
}

.dining-type {
    font-size: 0.75rem;
    color: var(--jt-terracotta);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.15rem;
}

.dining-desc {
    font-size: 0.875rem;
    color: var(--jt-stone);
    margin-top: 0.35rem;
    line-height: 1.6;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-block {
    padding: 1.75rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--jt-midnight);
    margin-bottom: 0.75rem;
}

.info-block p, .info-block li {
    font-size: 0.875rem;
    color: var(--jt-stone);
    line-height: 1.6;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-block li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.info-block li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--jt-terracotta);
    font-weight: 600;
}

/* Ultimate Guide Back Link */
.guide-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--jt-terracotta);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.guide-back-link:hover {
    color: var(--jt-burnt-orange);
}

.guide-back-link i {
    font-size: 1rem;
}

/* Hero Stars Animation */
.hero-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-star {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0;
}

.hero-star.small { width: 1px; height: 1px; }
.hero-star.medium { width: 2px; height: 2px; }
.hero-star.large { width: 3px; height: 3px; box-shadow: 0 0 4px 1px rgba(255,255,255,0.4); }

/* Hero Meteors - Pure CSS Animation */
.hero-meteors {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.meteor {
    position: absolute;
    width: 300px;
    height: 1px;
    transform: rotate(-45deg);
    background-image: linear-gradient(to right, #fff, rgba(255,255,255,0));
    opacity: 0;
}

.meteor::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 5px;
    border-radius: 50%;
    margin-top: -2px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 0 15px 3px #fff;
}

/* Meteor animation keyframes */
@keyframes meteor {
    0% {
        opacity: 1;
        margin-top: -300px;
        margin-right: -300px;
    }
    12% {
        opacity: 0;
    }
    15% {
        margin-top: 300px;
        margin-left: -600px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Individual meteor positions and timing - varied for natural look */
.meteor-1 {
    top: 80px;
    left: 25%;
    animation: meteor 5s linear infinite;
    animation-delay: 0s;
}

.meteor-2 {
    top: 120px;
    left: 55%;
    animation: meteor 7s linear infinite;
    animation-delay: 1.5s;
}

.meteor-3 {
    top: 60px;
    left: 80%;
    animation: meteor 4s linear infinite;
    animation-delay: 3s;
}

.meteor-4 {
    top: 200px;
    left: 40%;
    animation: meteor 6s linear infinite;
    animation-delay: 4.5s;
}

.meteor-5 {
    top: 150px;
    left: 70%;
    animation: meteor 8s linear infinite;
    animation-delay: 2s;
}

.meteor-6 {
    top: 90px;
    left: 15%;
    animation: meteor 5.5s linear infinite;
    animation-delay: 6s;
}

.meteor-7 {
    top: 180px;
    left: 90%;
    animation: meteor 4.5s linear infinite;
    animation-delay: 8s;
}

.meteor-8 {
    top: 100px;
    left: 45%;
    animation: meteor 7.5s linear infinite;
    animation-delay: 10s;
}

/* Best Time to Visit - Season Comparison */
.season-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.season-comparison-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.season-comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--jt-terracotta);
}

.season-comparison-card.best {
    border-color: var(--jt-terracotta);
    background: linear-gradient(135deg, var(--jt-cream) 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.season-comparison-card.best::before {
    content: "✓ BEST";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--jt-terracotta);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.season-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.season-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.season-stars {
    display: flex;
    gap: 0.25rem;
}

.season-stars .star {
    color: var(--jt-terracotta);
    font-size: 1.1rem;
}

.season-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.season-details li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
}

.season-details li strong {
    display: inline-block;
    min-width: 90px;
    color: #333;
    font-weight: 600;
}

/* Month Breakdown Cards */
.month-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.month-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.month-card.best { border-left-color: var(--jt-terracotta); background: var(--jt-cream); }
.month-card.great { border-left-color: #a8d5ba; }
.month-card.good { border-left-color: #ffc078; }
.month-card.avoid { border-left-color: #ff8c8c; }

.month-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.month-card .verdict {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.month-card .verdict.best { background: var(--jt-terracotta); color: white; }
.month-card .verdict.great { background: #a8d5ba; color: white; }
.month-card .verdict.good { background: #ffc078; color: white; }
.month-card .verdict.avoid { background: #ff8c8c; color: white; }

.month-details {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Best For Grid */
.best-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.best-for-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.best-for-card i {
    font-size: 2.5rem;
    color: var(--jt-terracotta);
    margin-bottom: 1rem;
}

.best-for-card h4 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.best-for-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Wildflower Section */
.wildflower-section {
    background: linear-gradient(135deg, var(--jt-cream) 0%, #f5f0f0 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--jt-terracotta);
}

.wildflower-section h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Crowd Calendar */
.crowd-calendar { margin: 2rem 0; }
.crowd-calendar h3 { margin-bottom: 1.5rem; color: #333; font-weight: 600; }

.crowd-month-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.crowd-month-label {
    min-width: 80px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.crowd-bar-container {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    height: 30px;
    overflow: hidden;
    position: relative;
}

.crowd-bar {
    height: 100%;
    background: linear-gradient(90deg, #a8d5ba 0%, var(--jt-terracotta) 50%, #ff8c8c 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.crowd-level {
    min-width: 50px;
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}
