@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Special+Elite&display=swap');

/* --- CSS variables for "Postcard" Retro Analog Theme --- */
:root {
    --bg: #F4EDE4;
    --bg-card: #FFFDF8;
    --bg-dark: #3D3229;
    --fg: #3D3229;
    --fg-muted: #7A6E60;
    --accent: #B85C38;
    --accent-hover: #9E4D2F;
    --accent-2: #5C8A6B;
    --accent-3: #D4A24E;
    --border: #D8CFC2;
    --border-light: #E8E0D5;
    --stamp-border: #C4402E;
    --card-shadow: 0 4px 16px rgba(61,50,41,0.12);
    --card-shadow-hover: 0 8px 28px rgba(61,50,41,0.18);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1100px;
}

/* --- 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: 'Lora', Georgia, serif;
    line-height: 1.75;
    overflow-x: hidden;
    /* Subtle paper texture noise */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--fg);
}

p {
    color: var(--fg-muted);
    font-weight: 400;
    font-size: 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;
}

/* --- Handwritten Captions --- */
.handwritten {
    font-family: 'Special Elite', cursive;
}

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

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

.section {
    padding: 5rem 0;
}

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

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

.section-title::after {
    content: '✦';
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: var(--accent-3);
}

.text-center .section-title::after {
    text-align: center;
}

.section-subtitle {
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    font-style: italic;
}

/* --- Header / Torn-Paper Ribbon Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-card);
    transition: var(--transition-smooth);
    /* Torn paper bottom edge */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% calc(100% - 6px),
        97% 100%, 94% calc(100% - 4px), 91% 100%, 88% calc(100% - 3px),
        85% 100%, 82% calc(100% - 5px), 79% 100%, 76% calc(100% - 4px),
        73% 100%, 70% calc(100% - 3px), 67% 100%, 64% calc(100% - 5px),
        61% 100%, 58% calc(100% - 4px), 55% 100%, 52% calc(100% - 3px),
        49% 100%, 46% calc(100% - 5px), 43% 100%, 40% calc(100% - 4px),
        37% 100%, 34% calc(100% - 3px), 31% 100%, 28% calc(100% - 5px),
        25% 100%, 22% calc(100% - 4px), 19% 100%, 16% calc(100% - 3px),
        13% 100%, 10% calc(100% - 5px), 7% 100%, 4% calc(100% - 4px),
        1% 100%, 0% calc(100% - 3px)
    );
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(61,50,41,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
}

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

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

.nav-link {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 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-3);
    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: 22px;
    height: 2px;
    background-color: var(--fg);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* --- Postcard Hero --- */
.hero {
    position: relative;
    padding: 7rem 0 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-postcard {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    padding: 0;
    overflow: hidden;
}

.hero-postcard-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-stamp {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 80px;
    height: 90px;
    border: 3px dashed var(--stamp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,253,248,0.9);
    transform: rotate(4deg);
    font-size: 2rem;
    z-index: 2;
    animation: stampPlop 0.6s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.hero-postcard-content {
    padding: 2rem 2.5rem;
}

.hero-tagline {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    color: var(--accent-3);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--fg-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-btn-container {
    display: flex;
    gap: 1rem;
}

/* Alt hero for backward compatibility */
.hero.hero-fullscreen {
    padding: 0;
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero.hero-fullscreen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(244,237,228,0.2) 0%, rgba(244,237,228,0.85) 70%, var(--bg) 100%);
    z-index: 1;
}

.hero.hero-fullscreen .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-card);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184,92,56,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);
}

/* --- Polaroid / Postcard Cards --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px) rotate(0deg) !important;
}

/* --- Polaroid Photo Grid --- */
.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.polaroid {
    background: var(--bg-card);
    padding: 0.75rem 0.75rem 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    /* Random tilts applied via JS */
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.03) !important;
    box-shadow: var(--card-shadow-hover);
    z-index: 10;
}

.polaroid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.polaroid-caption {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    color: var(--fg);
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.3;
}

/* --- Travel Voucher Tour Cards --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.tour-card::after {
    /* Perforated tear-off edge on the right */
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    border-right: 2px dashed var(--border);
}

.tour-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

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

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    /* Vintage filter */
    filter: sepia(0.1) saturate(0.9);
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
    filter: sepia(0) saturate(1);
}

.tour-provider-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    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.6rem;
    right: 0.6rem;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.3rem 0.6rem;
    font-family: 'Special Elite', cursive;
    font-weight: 400;
    font-size: 0.95rem;
    z-index: 2;
}

.tour-info { padding: 1.5rem; }

.tour-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    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: 0.75rem;
    font-size: 0.8rem;
}

.tour-rating { display: flex; align-items: center; gap: 0.2rem; color: var(--accent-3); }
.tour-reviews { color: var(--fg-muted); }
.tour-duration { color: var(--fg-muted); font-family: 'Special Elite', cursive; }

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

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

.tour-features li::before {
    content: '✧';
    color: var(--accent-3);
}

.tour-button { width: 100%; }

/* --- Split Section --- */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    padding: 0.75rem;
    box-shadow: var(--card-shadow);
}

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

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

.split-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: rgba(92, 138, 107, 0.1);
    border: 1px dashed rgba(92, 138, 107, 0.4);
    font-family: 'Special Elite', cursive;
    font-size: 0.75rem;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
}

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

.split-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.feature-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-3px) rotate(0deg);
    box-shadow: var(--card-shadow-hover);
}

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

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

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

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

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

.transport-icon-box {
    background: rgba(184, 92, 56, 0.08);
    border: 1px dashed rgba(184, 92, 56, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.transport-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

.pricing-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background: var(--bg-dark);
    color: var(--bg-card);
    border: 3px solid var(--fg);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-3);
}

.pricing-card p, .pricing-card .pricing-list-item {
    color: rgba(255,253,248,0.7);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--accent-3);
    color: var(--bg-dark);
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
}

.pricing-header {
    border-bottom: 1px dashed rgba(255,253,248,0.2);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.6rem;
    color: var(--bg-card);
    margin-bottom: 0.4rem;
}

.pricing-amount {
    font-family: 'Special Elite', cursive;
    font-size: 2.5rem;
    color: var(--accent-3);
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-amount span { font-size: 0.9rem; color: rgba(255,253,248,0.5); }

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

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

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

/* --- Newspaper Clipping (History/Legends) --- */
.newspaper-clipping {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
}

.newspaper-clipping::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--fg) 0px,
        var(--fg) 8px,
        transparent 8px,
        transparent 12px
    );
}

.newspaper-clipping h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--fg);
    padding-bottom: 0.5rem;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: 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;
    right: -10px;
    top: 22px;
    font-size: 1rem;
    color: var(--accent-3);
    z-index: 1;
}

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

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

.timeline-number {
    font-family: 'Libre Baskerville', 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 with Drop-Caps --- */
.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-card);
    box-shadow: var(--card-shadow);
}

.faq-summary {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    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: 0.9rem;
    color: var(--accent-3);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after { transform: rotate(45deg); }
.faq-item[open] .faq-summary { border-bottom: 1px dashed var(--border); color: var(--accent); }

.faq-answer { padding: 1.5rem; }

.faq-answer p:first-of-type::first-letter {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--accent);
    font-weight: 700;
}

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

.season-cell {
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    text-align: center;
}

.season-month {
    font-family: 'Special Elite', cursive;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.season-icon { font-size: 2rem; margin-bottom: 0.4rem; }

.season-tag {
    font-size: 0.7rem;
    color: var(--fg-muted);
    font-style: italic;
}

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

.om-weather-widget {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    box-shadow: var(--card-shadow);
    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 --- */
.map-container {
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    height: 400px;
}

/* --- Info Points --- */
.info-points { list-style: none; margin-top: 1.25rem; }
.info-point { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; }
.info-point-bullet { color: var(--accent-3); font-weight: bold; }
.info-point-text strong { color: var(--fg); }

/* --- Image Credits --- */
.image-credit {
    font-family: 'Special Elite', cursive;
    font-size: 0.65rem;
    color: var(--fg-muted);
    opacity: 0.5;
    text-align: right;
    margin-top: 0.3rem;
    transition: var(--transition-smooth);
}
.image-credit a { text-decoration: underline; color: inherit; }
.image-credit:hover { opacity: 1; color: var(--accent); }

/* --- Footer --- */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-card);
    padding: 3.5rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer p, .footer .footer-links a, .footer .footer-contact-item {
    color: rgba(255,253,248,0.6);
}

.footer .footer-links a:hover {
    color: var(--bg-card);
    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-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--bg-card);
    position: relative;
    padding-bottom: 0.4rem;
}

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

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.footer-contact-icon { color: var(--accent-3); }

.footer-bottom {
    border-top: 1px dashed rgba(255,253,248,0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: rgba(255,253,248,0.4);
    font-size: 0.8rem;
}

/* --- 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; } }

@keyframes stampPlop {
    0% { transform: rotate(15deg) scale(0); opacity: 0; }
    60% { transform: rotate(-2deg) scale(1.15); opacity: 1; }
    100% { transform: rotate(4deg) scale(1); opacity: 1; }
}

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

    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        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: 2rem; }
    .hero-postcard-image { height: 280px; }
    .section-title { font-size: 2.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; }
    .polaroid-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .season-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .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) {
    .season-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stamp { width: 60px; height: 70px; font-size: 1.5rem; }
}
