:root {
    --cream: #FFF8F0;
    --cream-dark: #F5EBE0;
    --paper: #FFFDF9;
    --charcoal: #3D3D3D;
    --charcoal-light: #5A5A5A;
    --terracotta: #C4785E;
    --terracotta-light: #E8A88C;
    --terracotta-dark: #A65F47;
    --sage: #7BA68A;
    --sage-light: #A8D4B8;
    --sage-dark: #5E8A6E;
    --mustard: #E5A84B;
    --mustard-light: #F5D08A;
    --coral: #E8967A;
    --sky: #87CEEB;
    --orange: #FF6B35;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 1000;
}

/* ===== NAVIGATION ===== */
.nav {
    background: var(--paper);
    border-bottom: 3px solid var(--cream-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo-icon {
    width: auto;
    height: 50px;
    border-radius: 8px;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 0 var(--terracotta-dark),
                0 0 0 3px var(--paper),
                0 0 0 5px var(--cream-dark);
    transition: all 0.3s ease;
    object-fit: contain;
}

.nav-logo-icon:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 4px 4px 0 var(--terracotta-dark),
                0 0 0 3px var(--paper),
                0 0 0 5px var(--terracotta-light);
}

.nav-logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-logo-text span {
    color: var(--terracotta);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--charcoal-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--mustard);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--charcoal);
}

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

.nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    box-shadow: 3px 3px 0 var(--sage-dark);
    transition: all 0.2s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--sage-dark);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.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, -6px);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mustard-light);
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    transform: rotate(-2deg);
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--terracotta);
    position: relative;
}

.hero h1 .underline {
    position: relative;
}

.hero h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--mustard-light);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-intro {
    font-size: 18px;
    color: var(--charcoal-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-intro strong {
    color: var(--charcoal);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    box-shadow: 4px 4px 0 var(--terracotta-dark);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--terracotta-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    border: 3px solid var(--cream-dark);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

/* Hero Photo Collage */
.hero-photos {
    position: relative;
    height: 500px;
}

.polaroid {
    position: absolute;
    background: white;
    width: 280px;
    padding: 14px 14px 48px 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.polaroid:hover {
    z-index: 10 !important;
    transform: scale(1.05) rotate(0deg) !important;
}

.polaroid-img {
    width: 252px;
    height: 186px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.polaroid-caption {
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
    font-family: 'Caveat', cursive;
    font-size: 18px;
    color: var(--charcoal);
    text-align: center;
}

.polaroid-1 {
    top: 20px;
    left: 20px;
    transform: rotate(-8deg);
    z-index: 3;
}

.polaroid-2 {
    top: 40px;
    right: 30px;
    transform: rotate(6deg);
    z-index: 2;
}

.polaroid-3 {
    bottom: 60px;
    left: 60px;
    transform: rotate(4deg);
    z-index: 4;
}

.polaroid-4 {
    bottom: 40px;
    right: 50px;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Tape decoration - hidden on polaroids */
.polaroid .tape {
    display: none;
}

/* Decorative elements */
.hero-doodle {
    position: absolute;
    font-size: 32px;
    opacity: 0.6;
}

.doodle-1 { top: 0; right: 100px; transform: rotate(15deg); }
.doodle-2 { bottom: 20px; left: 0; transform: rotate(-10deg); }

/* ===== OUR STORY SECTION ===== */
.story-section {
    padding: 100px 24px;
    background: var(--paper);
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--terracotta) 0px,
        var(--terracotta) 20px,
        transparent 20px,
        transparent 30px
    );
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-tag i[class*="ph-"] {
    font-size: 26px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 48px;
}

.story-photo {
    position: relative;
}

.story-frame {
    background: white;
    padding: 16px 16px 60px 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.story-frame-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.story-frame-caption {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--charcoal);
    text-align: center;
    margin-top: 16px;
}

.story-stamp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transform: rotate(12deg);
    box-shadow: 3px 3px 0 var(--sage-dark);
}

.story-stamp-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-stamp-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.story-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.story-text p strong {
    color: var(--charcoal);
}

.story-quote {
    background: var(--cream);
    padding: 20px 24px;
    border-left: 4px solid var(--mustard);
    border-radius: 0 12px 12px 0;
    margin-top: 24px;
}

.story-quote p {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--charcoal);
    font-style: normal;
    margin: 0;
}

/* ===== ADVENTURES SECTION ===== */
.adventures-section {
    padding: 100px 24px;
    background: var(--cream);
}

.adventures-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adventures-header {
    text-align: center;
    margin-bottom: 60px;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    overflow: visible;
    padding: 12px;
    margin: -12px;
}

.adventure-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.adventure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Tape holding card from top center */
.adventure-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 60px;
    height: 22px;
    /* Translucent tape base with subtle color variation */
    background:
        /* Fibrous texture overlay */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 2px,
            rgba(200, 180, 140, 0.05) 3px
        ),
        /* Horizontal crease lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 4px,
            rgba(200, 170, 100, 0.08) 5px,
            transparent 6px
        ),
        /* Main tape gradient - more translucent */
        linear-gradient(
            180deg,
            rgba(255, 240, 200, 0.75) 0%,
            rgba(255, 235, 180, 0.7) 40%,
            rgba(250, 225, 160, 0.72) 100%
        );
    z-index: 10;
    /* Layered shadow for lifted tape effect */
    box-shadow:
        0 1px 1px rgba(0,0,0,0.06),
        0 2px 4px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.05);
    /* Tape has a matte finish */
    backdrop-filter: blur(0.5px);
    /* Torn/jagged edges */
    clip-path: polygon(
        /* Left torn edge */
        0% 15%, 2% 5%, 3% 20%, 5% 0%, 7% 12%, 8% 3%,
        /* Top edge */
        10% 0%, 90% 0%,
        /* Right torn edge */
        92% 8%, 93% 0%, 95% 15%, 97% 2%, 98% 18%, 100% 10%,
        /* Bottom right corner down */
        100% 85%, 98% 95%, 97% 82%, 95% 100%, 93% 88%, 92% 97%,
        /* Bottom edge */
        90% 100%, 10% 100%,
        /* Left torn edge bottom */
        8% 92%, 7% 100%, 5% 85%, 3% 98%, 2% 88%, 0% 95%
    );
}

.adventure-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.adventure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.4s ease;
    filter: saturate(1.05) contrast(1.02);
}

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

.adventure-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.adventure-category.weird { background: var(--orange); color: white; }
.adventure-category.film { background: var(--sky); color: var(--charcoal); }
.adventure-category.parks { background: var(--sage); color: white; }
.adventure-category.local { background: var(--mustard); color: var(--charcoal); }
.adventure-category.seasonal { background: var(--coral); color: white; }
.adventure-category.history { background: var(--charcoal); color: white; }

.adventure-content {
    padding: 24px;
    background: white;
    border-radius: 0 0 16px 16px;
}

.adventure-date {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.adventure-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.3;
}

.adventure-excerpt {
    font-size: 14px;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.adventure-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-dark);
}

.adventure-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
}

/* Remove default tape from featured card */
.adventure-featured::before {
    display: none;
}

/* Corner tape elements for featured card */
.adventure-featured .tape {
    position: absolute;
    width: 70px;
    height: 24px;
    /* Translucent tape base with subtle color variation */
    background:
        /* Fibrous texture overlay */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 2px,
            rgba(200, 180, 140, 0.05) 3px
        ),
        /* Horizontal crease lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 4px,
            rgba(200, 170, 100, 0.08) 5px,
            transparent 6px
        ),
        /* Main tape gradient - more translucent */
        linear-gradient(
            180deg,
            rgba(255, 240, 200, 0.75) 0%,
            rgba(255, 235, 180, 0.7) 40%,
            rgba(250, 225, 160, 0.72) 100%
        );
    z-index: 10;
    /* Layered shadow for lifted tape effect */
    box-shadow:
        0 1px 1px rgba(0,0,0,0.06),
        0 2px 4px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.05);
    backdrop-filter: blur(0.5px);
    pointer-events: none;
}

/* Top-left tape */
.adventure-featured .tape-tl {
    top: -8px;
    left: -8px;
    transform: rotate(-45deg);
    /* Torn edges - variant 1 */
    clip-path: polygon(
        0% 20%, 2% 8%, 4% 22%, 6% 0%, 8% 15%, 10% 5%,
        12% 0%, 88% 0%,
        90% 10%, 92% 0%, 94% 18%, 96% 5%, 98% 12%, 100% 8%,
        100% 80%, 98% 92%, 96% 78%, 94% 100%, 92% 85%, 90% 95%,
        88% 100%, 12% 100%,
        10% 90%, 8% 100%, 6% 82%, 4% 95%, 2% 85%, 0% 92%
    );
}

/* Top-right tape */
.adventure-featured .tape-tr {
    top: -8px;
    right: -8px;
    transform: rotate(45deg);
    /* Torn edges - variant 2 */
    clip-path: polygon(
        0% 12%, 3% 0%, 5% 18%, 7% 6%, 9% 0%, 11% 14%,
        13% 0%, 87% 0%,
        89% 8%, 91% 0%, 93% 20%, 95% 4%, 97% 16%, 100% 5%,
        100% 88%, 97% 100%, 95% 82%, 93% 95%, 91% 100%, 89% 86%,
        87% 100%, 13% 100%,
        11% 88%, 9% 100%, 7% 84%, 5% 96%, 3% 90%, 0% 100%
    );
}

/* Bottom-left tape */
.adventure-featured .tape-bl {
    bottom: -8px;
    left: -8px;
    transform: rotate(45deg);
    /* Torn edges - variant 3 */
    clip-path: polygon(
        0% 10%, 2% 0%, 4% 15%, 7% 3%, 9% 18%, 11% 0%,
        14% 0%, 86% 0%,
        88% 12%, 90% 0%, 93% 16%, 95% 8%, 98% 20%, 100% 6%,
        100% 92%, 98% 100%, 95% 84%, 93% 98%, 90% 88%, 88% 100%,
        86% 100%, 14% 100%,
        11% 85%, 9% 100%, 7% 88%, 4% 96%, 2% 82%, 0% 94%
    );
}

/* Bottom-right tape */
.adventure-featured .tape-br {
    bottom: 8px;
    right: -16px;
    transform: rotate(-45deg);
    /* Torn edges - variant 4 */
    clip-path: polygon(
        0% 18%, 3% 5%, 5% 20%, 8% 0%, 10% 12%, 12% 2%,
        15% 0%, 85% 0%,
        87% 15%, 90% 2%, 92% 18%, 95% 6%, 97% 14%, 100% 0%,
        100% 85%, 97% 98%, 95% 80%, 92% 100%, 90% 86%, 87% 96%,
        85% 100%, 15% 100%,
        12% 92%, 10% 100%, 8% 86%, 5% 98%, 3% 88%, 0% 100%
    );
}

/* Second card: tape on both top corners */
.adventure-second::before {
    display: none;
}

.adventure-second .tape {
    position: absolute;
    width: 60px;
    height: 22px;
    /* Translucent tape base with subtle color variation */
    background:
        /* Fibrous texture overlay */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 2px,
            rgba(200, 180, 140, 0.05) 3px
        ),
        /* Horizontal crease lines */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 4px,
            rgba(200, 170, 100, 0.08) 5px,
            transparent 6px
        ),
        /* Main tape gradient - more translucent */
        linear-gradient(
            180deg,
            rgba(255, 240, 200, 0.75) 0%,
            rgba(255, 235, 180, 0.7) 40%,
            rgba(250, 225, 160, 0.72) 100%
        );
    z-index: 10;
    /* Layered shadow for lifted tape effect */
    box-shadow:
        0 1px 1px rgba(0,0,0,0.06),
        0 2px 4px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.05);
    backdrop-filter: blur(0.5px);
    pointer-events: none;
}

.adventure-second .tape-tl {
    top: -8px;
    left: -8px;
    transform: rotate(-45deg);
    /* Torn edges - variant 5 */
    clip-path: polygon(
        0% 8%, 2% 0%, 5% 14%, 7% 2%, 10% 18%, 12% 6%,
        14% 0%, 86% 0%,
        88% 10%, 91% 0%, 94% 15%, 96% 5%, 98% 18%, 100% 10%,
        100% 90%, 98% 100%, 96% 82%, 94% 96%, 91% 85%, 88% 100%,
        86% 100%, 14% 100%,
        12% 88%, 10% 100%, 7% 85%, 5% 98%, 2% 90%, 0% 100%
    );
}

.adventure-second .tape-tr {
    top: 4px;
    right: -16px;
    transform: rotate(45deg);
    /* Torn edges - variant 6 */
    clip-path: polygon(
        0% 14%, 3% 2%, 6% 18%, 8% 0%, 11% 12%, 13% 4%,
        15% 0%, 85% 0%,
        87% 8%, 90% 0%, 93% 14%, 96% 4%, 98% 16%, 100% 2%,
        100% 86%, 98% 98%, 96% 80%, 93% 100%, 90% 84%, 87% 95%,
        85% 100%, 15% 100%,
        13% 90%, 11% 100%, 8% 82%, 6% 94%, 3% 86%, 0% 98%
    );
}

.adventure-featured .adventure-img {
    height: auto;
    aspect-ratio: 16/9;
    font-size: 72px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.adventure-featured .adventure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.adventure-featured .adventure-content {
    padding: 24px 32px 32px;
}

.adventure-featured .adventure-title {
    font-size: 26px;
}

.adventure-featured .adventure-excerpt {
    font-size: 15px;
}

/* ===== 50 STATES JOURNEY ===== */
/* ===== JOURNEY / 50 STATES SECTION ===== */
.journey-section {
    padding: 100px 24px 120px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture */
.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.journey-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Compass decoration */
.journey-compass {
    position: absolute;
    top: -30px;
    right: -60px;
    width: 160px;
    height: 160px;
    color: var(--mustard);
    opacity: 0.15;
    animation: compass-spin 120s linear infinite;
}

@keyframes compass-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.compass-svg {
    width: 100%;
    height: 100%;
}

/* Header */
.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--mustard) 0%, var(--terracotta) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(229, 168, 75, 0.3);
}

.journey-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.journey-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Content layout */
.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Odometer counter */
.journey-odometer {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px solid rgba(229, 168, 75, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.journey-odometer::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 14px;
    pointer-events: none;
}

.odometer-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.odometer-display {
    margin-bottom: 24px;
}

.odometer-digits {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.odometer-digit {
    font-family: 'Fredoka', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--mustard);
    line-height: 1;
    text-shadow:
        0 0 30px rgba(229, 168, 75, 0.5),
        0 4px 0 rgba(0,0,0,0.2);
}

.odometer-separator {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    color: rgba(255,255,255,0.3);
}

.odometer-total {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* Progress track with minivan */
.odometer-progress {
    margin-top: 8px;
}

.odometer-track {
    height: 16px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.1) 0px,
            rgba(255,255,255,0.1) 8px,
            transparent 8px,
            transparent 16px
        ),
        rgba(255,255,255,0.05);
    border-radius: 10px;
    position: relative;
    overflow: visible;
    border: 2px dashed rgba(255,255,255,0.2);
}

.odometer-fill {
    height: 100%;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
    transition: width 1s ease-out;
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.3),
        0 0 12px rgba(0,0,0,0.3);
    border: 2px solid #1a1a1a;
    margin: -2px 0 -2px -2px;
}

/* Road center line */
.odometer-fill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6px;
    right: 6px;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        90deg,
        var(--mustard) 0px,
        var(--mustard) 10px,
        transparent 10px,
        transparent 20px
    );
    opacity: 0.8;
}

.odometer-car {
    position: absolute;
    right: -24px;
    bottom: 100%;
    margin-bottom: 4px;
    width: 52px;
    height: auto;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.4));
    animation: car-bounce 2s ease-in-out infinite;
}

@keyframes car-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.odometer-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* Recent destinations */
.journey-recent {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.recent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.recent-state {
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    transition: all 0.2s ease;
}

.recent-state:hover {
    background: var(--mustard);
    border-color: var(--mustard);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.recent-state.is-new {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.recent-state.is-new:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta-light);
}

/* CTA Button */
.journey-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    background: linear-gradient(135deg, var(--mustard) 0%, var(--terracotta) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    box-shadow:
        0 6px 0 rgba(0,0,0,0.2),
        0 10px 30px rgba(229, 168, 75, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.journey-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 rgba(0,0,0,0.2),
        0 15px 40px rgba(229, 168, 75, 0.4);
}

.journey-cta:active {
    transform: translateY(0);
    box-shadow:
        0 3px 0 rgba(0,0,0,0.2),
        0 5px 20px rgba(229, 168, 75, 0.3);
}

.journey-cta-icon {
    font-size: 24px;
}

.journey-cta-arrow {
    transition: transform 0.3s ease;
}

.journey-cta:hover .journey-cta-arrow {
    transform: translateX(4px);
}

/* Decorative doodles */
.journey-doodle {
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    pointer-events: none;
}

.doodle-plane {
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.doodle-star {
    bottom: 20%;
    right: 5%;
    animation: twinkle 3s ease-in-out infinite;
}

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

@keyframes twinkle {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.1); }
}

/* ===== CHAPTERS (CATEGORIES) ===== */
.chapters-section {
    padding: 100px 24px;
    background: var(--paper);
}

.chapters-container {
    max-width: 1100px;
    margin: 0 auto;
}

.chapters-header {
    text-align: center;
    margin-bottom: 60px;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.chapter-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 16/9;
}

/* Chapter card thumbnail backgrounds */
.chapter-card.weird {
    background: url('https://img.youtube.com/vi/UL_DMZnad8k/maxresdefault.jpg') center/cover no-repeat;
}
.chapter-card.film {
    background: url('https://img.youtube.com/vi/7W95Nmfwglo/maxresdefault.jpg') center/cover no-repeat;
}
.chapter-card.parks {
    background: url('https://img.youtube.com/vi/EkhnWc-paw0/maxresdefault.jpg') center/cover no-repeat;
}
.chapter-card.local {
    background: url('https://img.youtube.com/vi/H6LZxHrp-Bs/maxresdefault.jpg') center/cover no-repeat;
}
.chapter-card.seasonal {
    background: url('https://img.youtube.com/vi/k7G4ovtKw10/maxresdefault.jpg') center/cover no-repeat;
}
.chapter-card.history {
    background: url('https://img.youtube.com/vi/7OvrPxleiiI/maxresdefault.jpg') center/cover no-repeat;
}

.chapter-card:hover {
    transform: translateY(-4px);
    border-color: var(--cream-dark);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.chapter-content {
    background: rgba(0, 0, 0, 0.75);
    padding: 10px 14px;
    text-align: left;
}

.chapter-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.chapter-count {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

/* ===== NEWSLETTER POSTCARD ===== */
.newsletter-section {
    padding: 100px 24px;
    background: var(--cream);
}

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

.postcard {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
}

.postcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        var(--cream-dark) 0px,
        var(--cream-dark) 10px,
        transparent 10px,
        transparent 20px
    );
}

.postcard-left {
    padding: 48px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.postcard-left h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.postcard-left p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.postcard-left a {
    color: white;
}

.postcard-stamp {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 80px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

.postcard-stamp::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px dashed var(--cream-dark);
}

.postcard-stamp-text {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: var(--charcoal);
    line-height: 1;
}

.postcard-right {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.postcard-lines {
    margin-bottom: 24px;
    position: relative;
}

.postcard-line {
    height: 2px;
    background: var(--cream-dark);
    margin-bottom: 24px;
    position: relative;
}

.postcard-line:first-child::before {
    content: 'To:';
    position: absolute;
    left: 0;
    top: -20px;
    font-family: 'Caveat', cursive;
    font-size: 18px;
    color: var(--charcoal-light);
}

.postcard-recipient {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--charcoal);
    position: absolute;
    top: -33px;
    left: 43px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 14px 20px;
    border: 3px solid var(--cream-dark);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.newsletter-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Quicksand', sans-serif;
}

.newsletter-btn {
    padding: 16px 24px;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--sage-dark);
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--sage-dark);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 3px 3px 0 var(--sage-dark);
}

.newsletter-success {
    text-align: center;
    padding: 24px;
}

.newsletter-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.newsletter-success h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.newsletter-success p {
    color: var(--text-muted);
    margin: 0;
}

.newsletter-error {
    background: #fee;
    border: 1px solid #c00;
    color: #900;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 14px;
}

.newsletter-error p {
    margin: 0;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    padding: 80px 24px;
    background: var(--cream-dark);
}

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

.support-header {
    margin-bottom: 48px;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

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

.support-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.support-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.support-card p {
    font-size: 14px;
    color: var(--charcoal-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--terracotta);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mustard);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    color: white;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--terracotta);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--terracotta-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--mustard);
}

/* ===== MEDIA KIT PAGE ===== */
/* ===== MEDIA KIT PAGE ===== */
.media-hero {
    padding: 140px 24px 100px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 50%, var(--terracotta-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.media-hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.media-doodle {
    position: absolute;
    font-size: 48px;
    opacity: 0.3;
    animation: float-gentle 6s ease-in-out infinite;
}

.doodle-plane {
    top: 15%;
    left: 8%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.doodle-camera {
    top: 20%;
    right: 10%;
    transform: rotate(10deg);
    animation-delay: -2s;
}

.doodle-star {
    bottom: 25%;
    left: 12%;
    font-size: 36px;
    animation-delay: -4s;
}

.doodle-map {
    bottom: 20%;
    right: 15%;
    font-size: 42px;
    animation-delay: -1s;
}

.doodle-compass {
    top: 40%;
    left: 5%;
    font-size: 32px;
    animation-delay: -3s;
}

.doodle-tent {
    bottom: 35%;
    right: 8%;
    font-size: 38px;
    animation-delay: -5s;
}

.doodle-sun {
    top: 12%;
    left: 25%;
    font-size: 34px;
    animation-delay: -2.5s;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-15px) rotate(var(--rotation, 0deg)); }
}

.media-stamp {
    position: absolute;
    top: 20%;
    right: 8%;
    width: 90px;
    height: 90px;
    border: 4px dashed rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    opacity: 0.6;
}

.media-stamp span {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.media-hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-hero .section-tag {
    color: var(--cream);
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.media-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin: 24px 0 28px;
    line-height: 1.15;
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 12px;
    background: rgba(255,255,255,0.25);
    border-radius: 4px;
    z-index: -1;
}

.media-intro {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.media-hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-badge-item {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* Media Section - Partnership Cards */
.media-section {
    padding: 100px 24px;
    background: var(--cream);
    position: relative;
}

.media-container {
    max-width: 1100px;
    margin: 0 auto;
}

.media-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.media-section-header .section-tag {
    margin-bottom: 16px;
    display: inline-block;
}

.media-section-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--charcoal);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    background: white;
    padding: 40px 32px 36px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--cream-dark);
}

.media-card[data-category="press"]:hover { border-color: var(--terracotta-light); }
.media-card[data-category="brand"]:hover { border-color: var(--mustard-light); }
.media-card[data-category="tourism"]:hover { border-color: var(--sage-light); }

.media-card-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--charcoal);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-card[data-category="press"] .media-card-badge { background: var(--terracotta); }
.media-card[data-category="brand"] .media-card-badge { background: var(--mustard); color: var(--charcoal); }
.media-card[data-category="tourism"] .media-card-badge { background: var(--sage-dark); }

.media-card-icon {
    margin-bottom: 20px;
    display: block;
}

.media-card-icon i[class*="ph-"] {
    font-size: 64px;
    --ph-duotone-opacity: 0.25;
}

.media-card[data-category="press"] .media-card-icon i { color: var(--terracotta); }
.media-card[data-category="brand"] .media-card-icon i { color: var(--mustard); }
.media-card[data-category="tourism"] .media-card-icon i { color: var(--sage-dark); }

.media-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.media-card p {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-bottom: 24px;
}

.media-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--cream);
    border-radius: 12px;
    padding: 8px 0;
}

.media-list li {
    font-size: 14px;
    color: var(--charcoal);
    padding: 10px 16px 10px 40px;
    position: relative;
    transition: background 0.2s ease;
}

.media-list li:hover {
    background: rgba(255,255,255,0.6);
}

.media-list li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    color: var(--sage);
    font-weight: 700;
}

/* Stats Section */
.media-stats {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.media-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(196, 120, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(229, 168, 75, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-header {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.stats-tag {
    color: var(--mustard) !important;
    background: rgba(229, 168, 75, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.media-stats h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

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

.stat-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.stat-icon {
    margin-bottom: 16px;
}

.stat-icon i[class*="ph-"] {
    font-size: 48px;
    color: var(--mustard);
    --ph-duotone-opacity: 0.35;
}

.stat-number {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--mustard);
    margin-bottom: 8px;
    line-height: 1.1;
}

.stat-label {
    font-size: 15px;
    opacity: 0.7;
    font-weight: 500;
}

/* Download Section */
.media-download {
    padding: 100px 24px;
    background: var(--paper);
    position: relative;
}

.media-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--terracotta) 0%, var(--mustard) 50%, var(--sage) 100%);
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-header .section-tag {
    margin-bottom: 16px;
    display: inline-block;
}

.media-download h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.download-subtitle {
    font-size: 18px;
    color: var(--charcoal-light);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: white;
    padding: 0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.download-card-basic:hover { border-color: var(--terracotta-light); }
.download-card-complete:hover { border-color: var(--sage-light); }

.download-tag {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--terracotta);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.download-tag-premium {
    background: var(--sage-dark);
}

.download-content {
    padding: 48px 36px 24px;
    flex-grow: 1;
}

.download-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.download-content p {
    font-size: 15px;
    color: var(--charcoal-light);
    line-height: 1.65;
    margin-bottom: 20px;
}

.download-features {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.download-features li {
    font-size: 14px;
    color: var(--charcoal);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px dashed var(--cream-dark);
}

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

.download-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--sage);
    font-weight: 700;
}

.download-card .download-btn {
    margin: 0 24px 24px;
    justify-content: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 120, 94, 0.3);
}

.download-btn i[class*="ph-"] {
    font-size: 22px;
}

.download-btn-request {
    background: var(--sage-dark);
}

.download-btn-request:hover {
    background: var(--sage);
    box-shadow: 0 8px 24px rgba(123, 166, 138, 0.3);
}

/* Contact Section */
.media-contact {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.contact-postcard {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.1),
        0 1px 3px rgba(0,0,0,0.05);
    position: relative;
    border: 3px solid var(--cream-dark);
}

.contact-postcard::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 2px dashed var(--cream-dark);
    border-radius: 16px;
    pointer-events: none;
}

.contact-postcard-decoration {
    position: absolute;
    top: 24px;
    right: 24px;
}

.contact-stamp {
    width: 80px;
    height: 80px;
    border: 3px solid var(--terracotta);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--coral) 100%);
    color: white;
    box-shadow: 2px 2px 0 var(--terracotta-dark);
}

.contact-stamp span {
    font-family: 'Fredoka', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-contact h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.contact-content > p {
    font-size: 17px;
    color: var(--charcoal-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--coral) 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 120, 94, 0.3);
}

.contact-email-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 28px rgba(196, 120, 94, 0.4);
}

.contact-email-btn i[class*="ph-"] {
    font-size: 26px;
}

.contact-note {
    font-size: 14px;
    color: var(--charcoal-light);
    margin-top: 24px;
    opacity: 0.8;
}

/* ===== SELECT PARTNERS SECTION ===== */
.partners-section {
    padding: 100px 24px;
    background: var(--paper);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--mustard) 0px,
        var(--mustard) 12px,
        transparent 12px,
        transparent 24px,
        var(--sage) 24px,
        var(--sage) 36px,
        transparent 36px,
        transparent 48px
    );
}

.partners-header {
    text-align: center;
    margin-bottom: 56px;
}

.partners-header .section-tag {
    margin-bottom: 16px;
    display: inline-block;
}

.partners-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.partners-subtitle {
    font-size: 18px;
    color: var(--charcoal-light);
}

.partners-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.partners-row:last-child {
    margin-bottom: 0;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 12px;
}

.partner-card:hover {
    transform: translateY(-6px);
}

.partner-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.partner-card:hover .partner-logo {
    transform: scale(1.08);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    line-height: 1.3;
}

.partner-card:hover .partner-name {
    color: var(--terracotta);
}


/* Partner card staggered animation */
.partner-card {
    animation: fadeInUp 0.4s ease-out both;
}

.partner-card:nth-child(1) { animation-delay: 0.05s; }
.partner-card:nth-child(2) { animation-delay: 0.1s; }
.partner-card:nth-child(3) { animation-delay: 0.15s; }
.partner-card:nth-child(4) { animation-delay: 0.2s; }
.partner-card:nth-child(5) { animation-delay: 0.25s; }
.partner-card:nth-child(6) { animation-delay: 0.3s; }
.partner-card:nth-child(7) { animation-delay: 0.35s; }

/* ===== 50 STATES MAP PAGE ===== */
.map-hero {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-light) 100%);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-2 0a2 2 0 1 0 4 0a2 2 0 1 0-4 0' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.map-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.map-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Caveat', cursive;
    font-size: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.map-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.map-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.visited-count {
    background: rgba(255,255,255,0.25);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Google Journey Map Section */
.journey-map-section {
    background: var(--charcoal);
    padding: 40px 24px;
    position: relative;
}

.journey-map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 16px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.journey-map-container::before {
    content: '🗺️ Our Adventure Map';
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--mustard);
    color: var(--charcoal);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.journey-map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    display: block;
}

/* US Map Section */
/* View Toggle */
.view-toggle-container {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.view-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    background: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-toggle-btn svg {
    width: 18px;
    height: 18px;
}

.view-toggle-btn:hover {
    border-color: var(--sage);
    color: var(--charcoal);
}

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

.view-toggle-btn.active svg {
    stroke: white;
}

/* Show toggle on tablet and desktop */
@media (min-width: 769px) {
    .view-toggle-container {
        display: flex;
    }
}

.us-map-section {
    background: var(--cream);
    padding: 40px 24px 60px;
    position: relative;
}

.us-map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.us-map {
    width: 100%;
    height: auto;
    display: block;
}

.state {
    transition: all 0.3s ease;
    cursor: pointer;
    stroke: var(--charcoal);
    stroke-width: 0.5;
}

.state:hover {
    stroke: #000;
    stroke-width: 3;
}

.state.visited {
    stroke: #000;
    stroke-width: 1.5;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
    transition: all 0.2s ease;
}

.state.visited:hover {
    stroke: #000;
    stroke-width: 3;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));
    opacity: 1;
}

.state.pending {
    fill: #e8e0d5;
    stroke: #000;
    stroke-width: 1.5;
}

.state.pending:hover {
    fill: #d9cfc2;
    stroke: #000;
    stroke-width: 3;
}

.state-link {
    outline: none;
}

/* Tooltip */
.state-tooltip {
    position: fixed;
    background: var(--charcoal);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Fredoka', sans-serif;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1000;
    z-index: 100;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.state-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.state-tooltip.visited {
    background: var(--sage-dark);
}

.tooltip-name {
    display: block;
    font-weight: 600;
    font-size: 16px;
}

/* Thumbnail Overlay */
.state-thumbnail-overlay {
    position: absolute;
    width: 320px;
    background: white;
    border: 2px solid #000;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 50;
}

.state-thumbnail-overlay.visible {
    opacity: 1;
    transform: scale(1);
}

.thumbnail-image {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-label {
    display: block;
    padding: 12px 16px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    background: white;
    text-align: center;
    border-top: 2px solid var(--sage);
}

.thumbnail-coming-soon {
    display: none;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e8e0d5 0%, #d9cfc2 100%);
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--charcoal);
    opacity: 0.7;
}

/* State Cards - Polaroid Style */
/* ===== STATE CARDS - Adventure Passport Style ===== */
.state-cards-container {
    display: none;
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
}

/* Show cards when toggled on desktop */
.state-cards-container.desktop-visible {
    display: flex;
}

/* Hide map when cards are shown */
.us-map-desktop.hidden {
    display: none;
}

.state-cards-heading {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.state-cards-heading::after {
    content: '✈';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    opacity: 0.6;
}

.state-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin: 0 auto;
}

/* Desktop card grid - 3 columns */
@media (min-width: 769px) {
    .state-cards-container.desktop-visible .state-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
        gap: 28px;
    }
}

/* Base card styles - remove link styling */
a.state-card,
a.state-card:link,
a.state-card:hover,
a.state-card:visited,
a.state-card:active,
.state-card,
.state-card:link,
.state-card:hover,
.state-card:visited,
.state-card:active {
    text-decoration: none !important;
    display: block;
    color: inherit !important;
}

.state-card *,
a.state-card * {
    text-decoration: none !important;
    color: inherit !important;
}

.state-cards-container a {
    text-decoration: none !important;
    color: inherit !important;
}

/* Card Frame - Postcard style */
.state-card-frame {
    background: var(--paper);
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.08),
        0 2px 4px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 3px solid transparent;
}

/* Visited cards get a special border */
.state-card.visited .state-card-frame {
    border-color: var(--sage);
}

.state-card.visited .state-card-frame:hover {
    transform: translateY(-8px) rotate(-1.5deg);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(0,0,0,0.1);
}

/* Photo area */
.state-card-photo {
    overflow: hidden;
    position: relative;
    background: var(--charcoal);
}

.state-card-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.state-card.visited:hover .state-card-photo img {
    transform: scale(1.08);
}

/* Play button overlay */
.state-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.4) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.state-card-play svg {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.state-card.visited:hover .state-card-play {
    opacity: 1;
}

.state-card.visited:hover .state-card-play svg {
    transform: scale(1);
}

/* Empty state for unvisited */
.state-card-photo.empty {
    aspect-ratio: 16 / 9;
    background:
        repeating-linear-gradient(
            45deg,
            var(--cream) 0px,
            var(--cream) 10px,
            var(--cream-dark) 10px,
            var(--cream-dark) 20px
        );
    border: none;
    position: relative;
}

.state-card-photo.empty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.8) 0%,
        rgba(255,255,255,0.4) 100%
    );
}

.state-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--terracotta);
    z-index: 1;
}

.state-card-placeholder svg {
    width: 28px;
    height: 28px;
    opacity: 0.7;
}

.state-card-placeholder span {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.8;
}

/* Caption area */
.state-card-caption {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--paper);
    border-top: 2px dashed var(--cream-dark);
}

.state-card-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal) !important;
    text-align: left;
    line-height: 1.2;
    text-decoration: none !important;
}

/* Badges - Passport stamp style */
.state-card-badge {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 4px;
    background: var(--sage);
    color: white;
    transform: rotate(-3deg);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.state-card-badge.soon {
    background: var(--cream-dark);
    color: var(--charcoal-light);
    border: 1px dashed var(--charcoal-light);
    transform: rotate(2deg);
    box-shadow: none;
    opacity: 0.7;
}

/* Pending cards styling */
.state-card.pending .state-card-frame {
    border-color: var(--cream-dark);
}

.state-card.pending {
    opacity: 0.85;
}

.state-card.pending:hover {
    opacity: 1;
}

.state-card.pending .state-card-frame:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 24px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.06);
}

/* Animation on load */
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.state-card {
    animation: cardSlideIn 0.4s ease-out both;
}

.state-card:nth-child(1) { animation-delay: 0.02s; }
.state-card:nth-child(2) { animation-delay: 0.04s; }
.state-card:nth-child(3) { animation-delay: 0.06s; }
.state-card:nth-child(4) { animation-delay: 0.08s; }
.state-card:nth-child(5) { animation-delay: 0.1s; }
.state-card:nth-child(6) { animation-delay: 0.12s; }
.state-card:nth-child(7) { animation-delay: 0.14s; }
.state-card:nth-child(8) { animation-delay: 0.16s; }
.state-card:nth-child(9) { animation-delay: 0.18s; }

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px dashed var(--cream-dark);
}

.legend-swatch {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid;
}

.legend-swatch.legend-visited {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-color: var(--sage-dark);
}

.legend-swatch.legend-pending {
    background: var(--cream-dark);
    border-color: var(--charcoal-light);
    border-style: dashed;
}

/* States List Section */
.states-list-section {
    background: var(--paper);
    padding: 60px 24px 80px;
}

.states-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.states-list-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    text-align: center;
    color: var(--charcoal);
    margin: 0 0 32px;
}

.states-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.state-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Quicksand', sans-serif;
}

.state-list-item.visited {
    background: white;
    border: 2px solid var(--sage);
    color: var(--charcoal);
}

.state-list-item.visited:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 166, 138, 0.3);
}

.state-list-item.pending {
    background: var(--cream);
    border: 2px dashed var(--cream-dark);
    color: var(--charcoal-light);
}

.state-list-abbr {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    background: var(--cream-dark);
    padding: 4px 8px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.state-list-item.visited .state-list-abbr {
    background: var(--sage-light);
    color: var(--sage-dark);
}

.state-list-item.visited:hover .state-list-abbr {
    background: rgba(255,255,255,0.3);
    color: white;
}

.state-list-name {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
}

.state-list-icon {
    font-size: 12px;
    opacity: 0.7;
}

.state-list-soon {
    font-size: 11px;
    font-style: italic;
    opacity: 0.6;
}

/* Legacy styles kept for compatibility */
.states-section {
    padding: 100px 24px;
    background: var(--paper);
}

.states-container {
    max-width: 1200px;
    margin: 0 auto;
}

.states-header {
    text-align: center;
    margin-bottom: 48px;
}

.states-intro {
    font-size: 16px;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 16px auto 0;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}


.states-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--cream-dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--charcoal-light);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-visited {
    background: var(--sage);
    border: 2px solid var(--sage-dark);
}

.legend-pending {
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
    border: 2px dashed var(--terracotta);
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-photos {
        display: none;
    }

    .hero-intro {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-text {
        text-align: left;
    }

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

    .adventure-featured {
        grid-column: span 2;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-compass {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -20px;
    }

    .odometer-digit {
        font-size: 60px;
    }

    .odometer-separator {
        font-size: 30px;
    }

    .odometer-total {
        font-size: 30px;
    }

    .journey-cta {
        padding: 16px 32px;
        font-size: 16px;
    }

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

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

    .postcard::before {
        display: none;
    }

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

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

    .media-card:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

    .media-stamp {
        display: none;
    }

    .media-doodle {
        font-size: 36px;
        opacity: 0.2;
    }

    .partners-row {
        flex-wrap: wrap;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    /* Journey section mobile */
    .journey-section {
        padding: 70px 20px 80px;
    }

    .journey-compass {
        display: none;
    }

    .journey-title {
        font-size: 32px;
    }

    .journey-subtitle {
        font-size: 16px;
    }

    .journey-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .journey-odometer {
        padding: 24px 20px;
    }

    .odometer-digit {
        font-size: 56px;
    }

    .odometer-separator {
        font-size: 28px;
    }

    .odometer-total {
        font-size: 28px;
    }

    .recent-list {
        gap: 8px;
    }

    .recent-state {
        font-size: 13px;
        padding: 8px 14px;
    }

    .journey-cta {
        padding: 16px 28px;
        font-size: 15px;
        margin-top: 36px;
    }

    .journey-cta-icon {
        font-size: 20px;
    }

    .journey-doodle {
        display: none;
    }

    .journey-map-desktop {
        display: none;
    }

    .journey-map-mobile {
        display: block;
    }

    /* Hide SVG map on mobile, show cards */
    .us-map-desktop {
        display: none !important;
    }

    .state-cards-container {
        display: flex !important;
    }

    /* Hide toggle on mobile */
    .view-toggle-container {
        display: none !important;
    }

    .states-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .states-legend {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-bottom: 3px solid var(--cream-dark);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--cream-dark);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        padding: 16px 24px;
    }

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

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

    .adventure-featured .adventure-img {
        min-height: 200px;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .media-hero {
        padding: 100px 24px 70px;
    }

    .media-hero h1 {
        font-size: 32px;
    }

    .media-intro {
        font-size: 16px;
    }

    .media-hero-badges {
        gap: 8px;
    }

    .hero-badge-item {
        padding: 8px 14px;
        font-size: 12px;
    }

    .media-doodle {
        display: none;
    }

    .media-section,
    .media-stats,
    .media-download,
    .media-contact {
        padding: 70px 24px;
    }

    .media-section-header h2,
    .media-stats h2,
    .media-download h2,
    .media-contact h2 {
        font-size: 28px;
    }

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

    .media-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .media-card-badge {
        top: -10px;
        right: 16px;
        font-size: 10px;
        padding: 5px 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-icon i[class*="ph-"] {
        font-size: 28px;
    }

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

    .download-content {
        padding: 40px 24px 20px;
    }

    .download-tag {
        font-size: 10px;
        padding: 5px 36px;
        top: 16px;
        right: -36px;
    }

    .contact-postcard {
        padding: 40px 24px;
    }

    .contact-postcard::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .contact-stamp {
        width: 60px;
        height: 60px;
    }

    .contact-stamp span {
        font-size: 10px;
    }

    .contact-email-btn {
        padding: 16px 24px;
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }

    .download-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .contact-card {
        flex-direction: column;
        padding: 20px 32px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotation)); }
    50% { transform: translateY(-10px) rotate(var(--rotation)); }
}

.polaroid {
    animation: float 6s ease-in-out infinite;
}

.polaroid-1 { --rotation: -8deg; animation-delay: 0s; }
.polaroid-2 { --rotation: 6deg; animation-delay: 1.5s; }
.polaroid-3 { --rotation: 4deg; animation-delay: 3s; }
.polaroid-4 { --rotation: -5deg; animation-delay: 4.5s; }

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

.adventure-card {
    animation: fadeInUp 0.5s ease-out both;
}

.adventure-card:nth-child(1) { animation-delay: 0.1s; }
.adventure-card:nth-child(2) { animation-delay: 0.2s; }
.adventure-card:nth-child(3) { animation-delay: 0.3s; }
.adventure-card:nth-child(4) { animation-delay: 0.4s; }
.adventure-card:nth-child(5) { animation-delay: 0.5s; }

.chapter-card {
    animation: fadeInUp 0.4s ease-out both;
}

.chapter-card:nth-child(1) { animation-delay: 0.1s; }
.chapter-card:nth-child(2) { animation-delay: 0.15s; }
.chapter-card:nth-child(3) { animation-delay: 0.2s; }
.chapter-card:nth-child(4) { animation-delay: 0.25s; }
.chapter-card:nth-child(5) { animation-delay: 0.3s; }
.chapter-card:nth-child(6) { animation-delay: 0.35s; }

/* ===== SKELETON LOADING ===== */
.skeleton .skeleton-img {
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 200px;
}

.skeleton .skeleton-text {
    background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    height: 1em;
    border-radius: 4px;
    display: block;
    width: 80%;
}

.skeleton .adventure-title.skeleton-text {
    width: 90%;
    height: 1.5em;
}

.skeleton .adventure-excerpt.skeleton-text {
    width: 100%;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Chapter card links */
.chapter-card {
    text-decoration: none;
    display: flex;
}

/* Adventure card links */
.adventure-card .adventure-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

.adventure-featured .adventure-link {
    display: contents;
}

/* Fallback for no JavaScript */
.adventures-fallback {
    text-align: center;
    padding: 48px 24px;
    background: var(--paper);
    border-radius: 16px;
    margin-top: 24px;
}

.adventures-fallback p {
    font-size: 16px;
    color: var(--charcoal-light);
}

.adventures-fallback a {
    color: var(--terracotta);
    font-weight: 600;
}
