@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

/* --- CSS variables for "Wanderlust Chronicle" Magazine Theme --- */
:root {
    --bg: #FAFAF7;
    --bg-alt: #F0EFEA;
    --fg: #1A1A1A;
    --fg-muted: #6B6B6B;
    --accent: #C4402E;
    --accent-hover: #A83524;
    --accent-2: #2D5A44;
    --accent-2-light: #3E7A5C;
    --border: #D8D5CE;
    --border-light: #ECEAE4;
    --card-shadow: 0 2px 12px rgba(0,0,0,0.06);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --reading-width: 680px;
    --max-width: 1200px;
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Source Serif 4', Georgia, serif;
    line-height: 1.75;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--fg);
}

p {
    color: var(--fg-muted);
    font-weight: 300;
    font-size: 1.1rem;
}

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

a:hover {
    color: var(--accent-hover);
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Core Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.reading-column {
    max-width: var(--reading-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-green { color: var(--accent-2); }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 0.75rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    color: var(--fg-muted);
}

/* --- Header / Sticky Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--fg);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--fg-muted);
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* --- Burger Menu --- */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* --- Full-Bleed Cover Hero --- */
.hero {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 550px;
    overflow: hidden;
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(250,250,247,1) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.2s forwards;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--fg);
    text-shadow: 0 2px 20px rgba(250,250,247,0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--fg-muted);
    max-width: 550px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.6s forwards;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.7s 0.8s forwards;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196,64,46,0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--fg);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* --- Filmstrip Tour Carousel --- */
.tours-filmstrip-section {
    padding: 4rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.tours-filmstrip {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 2rem 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.tours-filmstrip::-webkit-scrollbar {
    height: 6px;
}
.tours-filmstrip::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* Also support standard 3-col tours-grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tour-card {
    scroll-snap-align: start;
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    background: var(--bg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.tour-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.tour-provider-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.6rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 2;
}

.tour-provider-badge.viator {
    background-color: #ff5a5f;
    color: #fff;
}

.tour-provider-badge.headout {
    background-color: #ec1943;
    color: #fff;
}

.tour-price-tag {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.6rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 2;
}

.tour-info {
    padding: 1.5rem;
}

.tour-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-family: 'IBM Plex Mono', monospace;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #D4A24E;
}

.tour-reviews {
    color: var(--fg-muted);
}

.tour-duration {
    color: var(--fg-muted);
}

.tour-features {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.tour-features li {
    font-size: 0.85rem;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-features li::before {
    content: '—';
    color: var(--accent);
    font-weight: 600;
}

.tour-button {
    width: 100%;
}

/* --- Split Section (Reading Column + Image) --- */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.split-image {
    transition: var(--transition-smooth);
}

.split-image-container:hover .split-image {
    transform: scale(1.03);
}

.split-badge {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: rgba(45, 90, 68, 0.08);
    border: 1px solid rgba(45, 90, 68, 0.2);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.split-content p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* --- Pull Quote --- */
.pull-quote {
    position: relative;
    margin: 3rem -3rem 3rem -3rem;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent);
    background: var(--bg-alt);
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--fg);
}

.pull-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-style: normal;
    color: var(--fg-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Features Grid (Page Navigation Cards) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--fg);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--fg-muted);
}

/* --- Glass Panel (backward compat) --- */
.glass-panel {
    background: var(--bg);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* --- Transport Cards --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.transport-card {
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
}

.transport-icon-box {
    background: rgba(196, 64, 46, 0.06);
    border: 1px solid rgba(196, 64, 46, 0.15);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.transport-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.transport-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--border-light);
    padding-top: 0.75rem;
}

.transport-detail-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

.transport-detail-item span:first-child {
    color: var(--fg-muted);
}

.transport-detail-item span:last-child {
    font-weight: 500;
    color: var(--fg);
}

/* --- Pricing Cards --- */
.pricing-flex {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
}

.pricing-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--accent);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-amount span {
    font-size: 0.9rem;
    color: var(--fg-muted);
    font-weight: 300;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.pricing-list-check {
    color: var(--accent-2);
    font-weight: bold;
}

/* --- Masonry Photo Gallery --- */
.masonry-gallery {
    columns: 3;
    column-gap: 1.25rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.masonry-item:hover {
    box-shadow: var(--card-shadow);
    transform: translateY(-2px);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.masonry-item:hover img {
    transform: scale(1.03);
}

.masonry-caption {
    padding: 0.75rem 1rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--fg-muted);
    background: var(--bg);
}

/* --- Seasonal Calendar Grid --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.calendar-cell {
    padding: 1.5rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.calendar-cell:hover {
    border-color: var(--accent);
}

.calendar-month {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.calendar-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.calendar-tag {
    font-size: 0.75rem;
    color: var(--fg-muted);
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: -7px;
    background-color: var(--bg);
    border: 3px solid var(--accent);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-right::after { left: -7px; }

.timeline-content {
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
}

.timeline-number {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.4rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

/* --- FAQ (Drop-Cap Answers) --- */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-light);
    overflow: hidden;
    background: var(--bg);
}

.faq-summary {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--fg);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
    content: '−';
}

.faq-item[open] .faq-summary {
    border-bottom: 1px solid var(--border-light);
    color: var(--accent);
}

.faq-answer {
    padding: 1.5rem;
}

.faq-answer p:first-of-type::first-letter {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--accent);
}

/* --- Sticky TOC Sidebar --- */
.page-with-toc {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    border-left: 1px solid var(--border-light);
    padding-left: 1.5rem;
}

.toc-sidebar h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-muted);
    margin-bottom: 1rem;
}

.toc-sidebar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toc-sidebar a {
    font-size: 0.85rem;
    color: var(--fg-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.toc-sidebar a:hover,
.toc-sidebar a.active {
    color: var(--accent);
}

/* --- Route Waypoints --- */
.waypoints {
    position: relative;
    padding-left: 3rem;
}

.waypoints::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dotted var(--border);
}

.waypoint {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg);
    border: 1px solid var(--border-light);
}

.waypoint-number {
    position: absolute;
    left: -3rem;
    top: 1.5rem;
    width: 30px;
    height: 30px;
    background: var(--accent);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

/* --- Weather Widget --- */
.weather-widget-section {
    padding: 3rem;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.om-weather-widget {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.weather-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--fg-muted);
}

.weather-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.weather-data {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fg);
}

.weather-info { text-align: left; }
.weather-info .city {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}
.weather-info .desc {
    font-size: 0.85rem;
    text-transform: capitalize;
    color: var(--fg-muted);
}

.weather-stats {
    font-size: 0.8rem;
    color: var(--fg-muted);
    text-align: right;
}

/* --- Map Container --- */
.map-container {
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 420px;
}

/* --- Info Points List --- */
.info-points {
    list-style: none;
    margin-top: 1.5rem;
}

.info-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-point-bullet {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.info-point-text strong {
    color: var(--fg);
}

/* --- Footer --- */
.footer {
    background-color: var(--fg);
    color: var(--bg);
    border-top: 4px solid var(--accent);
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

.footer p, .footer .footer-links a, .footer .footer-contact-item {
    color: rgba(250,250,247,0.6);
}

.footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.footer-contact-icon {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(250,250,247,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: rgba(250,250,247,0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
}

/* --- Image Credits --- */
.image-credit {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--fg-muted);
    opacity: 0.5;
    text-align: right;
    margin-top: 0.3rem;
    padding-right: 0.4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.image-credit a {
    text-decoration: underline;
    color: inherit;
}

.image-credit:hover {
    opacity: 1;
    color: var(--accent);
}

/* --- Scroll Animation Classes --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .page-with-toc { grid-template-columns: 1fr; }
    .toc-sidebar { display: none; }
    .burger { display: block; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-light);
        z-index: 1000;
    }

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

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .split-content { order: -1; }
    .transport-grid { grid-template-columns: 1fr; }
    .pricing-flex { flex-direction: column; }
    .tours-grid { grid-template-columns: 1fr; }
    .masonry-gallery { columns: 2; }
    .calendar-grid { grid-template-columns: repeat(3, 1fr); }
    .pull-quote { margin-left: 0; margin-right: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }

    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 22px; }
    .timeline-right { left: 0%; }
}

@media (max-width: 480px) {
    .calendar-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-gallery { columns: 1; }
    .hero { height: 70vh; }
}
