:root {
    --cream: #faf6ed;
    --cream-dark: #f0e8d8;
    --espresso: #2c2418;
    --espresso-light: #4a3926;
    --gold: #c6a15b;
    --gold-dark: #a07d48;
    --gold-glow: rgba(198, 161, 91, 0.12);
    --sage: #7a8b6e;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.5;
    overflow-x: hidden;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 246, 237, 0.94);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 161, 91, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--espresso);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    margin-top: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5ede1 0%, #e8dccc 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.4;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(198, 161, 91, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--espresso);
}

.hero-accent {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #5a4a38;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.stat-label {
    font-size: 0.8rem;
    color: #7a6a58;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #8a7a68;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.route-section-header, .cafes-section {
    margin-bottom: 3rem;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.section-label span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.highlight {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #7a6a58;
    font-size: 0.95rem;
}

.route-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.route-btn {
    background: var(--white);
    border: 1px solid rgba(198, 161, 91, 0.3);
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.route-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.route-btn.active {
    background: var(--espresso);
    border-color: var(--espresso);
    color: var(--white);
}

.btn-badge {
    font-size: 0.7rem;
    background: rgba(0,0,0,0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.route-btn.active .btn-badge {
    background: rgba(255,255,255,0.2);
}

.route-info {
    background: var(--white);
    border-radius: 32px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(198, 161, 91, 0.15);
}

.route-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-dark);
}

.route-icon {
    font-size: 2.5rem;
}

.route-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.route-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--sage);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.stop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.stop-list li {
    background: var(--cream);
    padding: 1.2rem 1.5rem;
    border-radius: 24px;
    transition: all 0.2s;
    border-left: 3px solid var(--gold);
}

.stop-list li strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 0.5rem;
}

.stop-note {
    color: #6a5a48;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cafes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.cafe-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.cafe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cafe-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #e8dccc, #d4c4a8);
    transition: transform 0.5s;
}

.cafe-card:hover .cafe-img {
    transform: scale(1.02);
}

.cafe-name {
    font-weight: 600;
    margin: 1rem 0 1rem;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: -0.2px;
}

.footer {
    background: var(--espresso);
    color: var(--cream);
    margin-top: 4rem;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.7rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .route-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .route-info {
        padding: 1.2rem;
    }
    
    .route-header h2 {
        font-size: 1.4rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .map-container {
        height: 220px;
    }
}