:root {
    --bg-primary: #0f1117;
    --bg-secondary: #171b24;
    --bg-tertiary: #1e2330;
    --bg-card: #1a1f2e;
    --text-primary: #eef0f5;
    --text-secondary: #9ba3b8;
    --text-muted: #5c6478;
    --accent: #4caf82;
    --accent-hover: #5cc994;
    --accent-muted: rgba(76, 175, 130, 0.12);
    --accent-border: rgba(76, 175, 130, 0.3);
    --border: #252b3b;
    --border-light: #2e3547;
    --header-height: 70px;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 28px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-wheel {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}
.logo-mark {
    color: var(--accent);
    display: flex;
    align-items: center;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}
.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
    background: var(--accent-muted);
}
.nav-dropdown {
    position: relative;
}
.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.75em;
    opacity: 0.7;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
}
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(76, 175, 130, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}
.hero-label {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 12px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    border-radius: 4px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}
.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.hero-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.img-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    pointer-events: none;
}
.intro-section {
    padding: 96px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}
.section-label {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}
.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1rem;
}
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.routes-section {
    padding: 96px 0;
}
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    line-height: 1.3;
}
.routes-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}
.routes-secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.route-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.route-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.route-image {
    position: relative;
    overflow: hidden;
}
.route-featured .route-image {
    height: 300px;
}
.routes-secondary .route-image {
    height: 180px;
}
.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.route-card:hover .route-image img {
    transform: scale(1.04);
}
.route-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.route-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.route-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}
.route-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}
.route-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.route-content h3 a:hover {
    color: var(--accent);
}
.route-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}
.route-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.route-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
}
.read-more {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    align-self: flex-start;
}
.read-more:hover {
    color: var(--accent-hover);
}
.tips-section {
    padding: 96px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.tip-item {
    padding: 32px;
    background: var(--bg-tertiary);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.tip-item:hover {
    border-color: var(--accent-border);
}
.tip-icon {
    color: var(--accent);
    margin-bottom: 16px;
}
.tip-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.tip-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}
.article-header {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 20px;
    transition: color 0.2s;
    font-family: 'Space Mono', monospace;
}
.back-link:hover {
    color: var(--accent);
}
.article-category {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
    padding: 4px 10px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    border-radius: 4px;
}
.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}
.article-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 640px;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: 'Space Mono', monospace;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.meta-sep {
    color: var(--border-light);
}
.article-hero {
    padding: 48px 0 0;
    background: var(--bg-secondary);
}
.article-figure {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}
.article-figure img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.article-figure figcaption {
    padding: 12px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    font-family: 'Space Mono', monospace;
    line-height: 1.5;
}
.article-body {
    padding: 64px 0 80px;
}
.article-intro {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.85;
    font-weight: 400;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.article-body h2:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.article-body ul {
    margin: 20px 0 20px 0;
    color: var(--text-secondary);
}
.article-body ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}
.article-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.85em;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-border);
    transition: border-color 0.2s, color 0.2s;
}
.article-body a:hover {
    color: var(--accent-hover);
    border-color: var(--accent);
}
.article-nav {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.nav-prev, .nav-next {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}
.nav-prev:hover, .nav-next:hover {
    color: var(--accent-hover);
}
.inner-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 48px;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-family: 'Space Mono', monospace;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}
.about-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}
.about-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 14px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-border);
}
.about-text a:hover {
    color: var(--accent-hover);
}
.contact-layout {
    max-width: 680px;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.75;
}
.contact-details {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 28px;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.contact-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}
.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.policy-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.policy-content ul {
    margin: 16px 0 20px 0;
    color: var(--text-secondary);
}
.policy-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
}
.policy-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.85em;
}
.policy-content a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-border);
}
.policy-content a:hover {
    color: var(--accent-hover);
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 20px 28px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-primary);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    padding: 36px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.83rem;
    margin-top: 6px;
    margin-left: 28px;
    line-height: 1.5;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 28px;
    }
    .hero-image-wrap img {
        height: 320px;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .routes-grid {
        grid-template-columns: 1fr;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    .about-layout {
        grid-template-columns: 1fr;
    }
    .about-image-wrap img {
        height: 260px;
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px 28px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav .nav-list > li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .article-figure img {
        height: 280px;
    }
    .article-nav {
        flex-direction: column;
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .intro-stats {
        flex-direction: column;
    }
    .article-figure img {
        height: 220px;
    }
}
