:root {
    --color-bg: #f4f1ec;
    --color-bg-alt: #eae5dc;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-accent: #3a7d44;
    --color-accent-dark: #2d6235;
    --color-accent-light: #e8f3ea;
    --color-warm: #c47b3a;
    --color-warm-light: #faf3eb;
    --color-border: #d4cfc6;
    --color-card: #ffffff;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-mono: 'Source Code Pro', monospace;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.site-header {
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-desktop {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #ffffff;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100% - 64px);
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
    z-index: 99;
    padding: 32px 24px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}

.mobile-menu .menu-section-title {
    color: var(--color-warm);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,42,26,0.4), rgba(26,42,26,0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    color: #ffffff;
    max-width: 700px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-warm);
}

.hero-stat .label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    font-family: var(--font-mono);
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.route-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.route-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.route-card-body {
    padding: 28px;
}

.route-card-body .tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.route-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.route-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.route-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.route-card-link:hover {
    gap: 10px;
}

.info-block {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.info-block h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.info-block p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.article-header {
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
    padding: 48px 24px 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #ffffff;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: #ffffff;
}

.article-meta {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

.article-hero {
    max-width: 960px;
    margin: -20px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.article-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.article-body {
    padding: 48px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.article-body p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-body a {
    color: var(--color-accent);
    text-decoration: underline;
}

.article-intro {
    font-size: 1.1rem;
    font-family: var(--font-accent);
    font-style: italic;
    border-left: 3px solid var(--color-warm);
    padding-left: 20px;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.article-image {
    margin: 36px 0;
}

.article-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.info-box {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    margin: 32px 0;
}

.info-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 4px 0;
}

.tip-box {
    background: var(--color-warm-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 4px solid var(--color-warm);
    margin: 32px 0;
}

.tip-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.tip-box ul {
    list-style: none;
    padding: 0;
}

.tip-box ul li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 4px 0;
}

.article-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.article-footer-nav a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.article-footer-nav a:hover {
    color: var(--color-accent-dark);
}

.hero-article {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
}

.hero-article .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-article .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,42,26,0.3), rgba(26,42,26,0.85));
}

.hero-article .hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px 48px;
    width: 100%;
}

.hero-breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: rgba(255,255,255,0.9);
}

.hero-content .hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}

.hero-meta {
    display: flex;
    gap: 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 20px;
}

.hero-meta strong {
    color: var(--color-warm);
}

.article-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-layout h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    margin: 48px 0 20px;
    color: var(--color-text);
}

.article-layout h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 36px 0 14px;
    color: var(--color-text);
}

.article-layout p {
    font-size: 1.02rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-layout ul,
.article-layout ol {
    margin: 0 0 20px 24px;
    color: var(--color-text-light);
}

.article-layout a {
    color: var(--color-accent);
    text-decoration: underline;
}

.article-image-block {
    margin: 36px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-box {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
    margin: 32px 0;
}

.detail-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box ul li {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 4px 0;
}

.detail-box p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.warm-box {
    border-left-color: var(--color-warm);
    background: var(--color-warm-light);
}

.route-stats-grid,
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.route-stat-card,
.stat-card {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 48px 0;
    border: none;
}

.bottom-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.bottom-nav-link {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.bottom-nav-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.bottom-nav-link .nav-direction {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.bottom-nav-link .nav-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
}

.bottom-nav-link.next {
    text-align: right;
}

.bottom-nav-section {
    padding: 0 24px 80px;
}

.bottom-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.page-hero {
    background: linear-gradient(135deg, #2d3b2d 0%, #1a2a1a 100%);
    padding: 72px 24px 64px;
    text-align: center;
}

.page-hero-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-warm);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.about-block {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.about-block h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.about-block p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-highlight {
    border-left: 3px solid var(--color-warm);
    padding-left: 24px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin: 20px 0;
}

.about-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.about-meta-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.meta-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    margin-top: 4px;
}

.update-notice,
.policy-updated {
    text-align: center;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    color: var(--color-text-light);
    margin-top: 16px;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.contact-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.contact-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.contact-detail-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 28px;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
}

.contact-note {
    border-left: 3px solid var(--color-warm);
    padding-left: 24px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 20px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.policy-block {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.policy-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 32px 0 12px;
    color: var(--color-text);
}

.policy-block h2:first-child {
    margin-top: 0;
}

.policy-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 24px 0 10px;
    color: var(--color-text);
}

.policy-block p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-block ul {
    margin: 0 0 16px 24px;
    color: var(--color-text-light);
}

.policy-block ul li {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 2px 0;
}

.image-credit {
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.7;
    margin-top: 6px;
}

.site-footer {
    background: linear-gradient(135deg, #1a2a1a 0%, #2d3b2d 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 24px 32px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-warm);
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-email a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: var(--color-warm);
}

.footer-update {
    font-size: 0.8rem;
    opacity: 0.6;
}

.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: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: rgba(255,255,255,0.8);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-card);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border: none;
}

.btn-accept {
    background: var(--color-accent);
    color: #ffffff;
}

.btn-accept:hover {
    background: var(--color-accent-dark);
}

.btn-reject {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-reject:hover {
    background: var(--color-bg-alt);
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: 400px;
    }

    .section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-hero img {
        height: 260px;
    }

    .article-body {
        padding: 32px 16px 48px;
    }

    .article-layout {
        padding: 40px 16px 60px;
    }

    .article-layout h2 {
        font-size: 1.5rem;
    }

    .article-image-block img {
        height: 240px;
    }

    .detail-box,
    .info-box,
    .tip-box {
        padding: 20px;
    }

    .route-stats-grid,
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .bottom-nav {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bottom-nav-link.next {
        text-align: left;
    }

    .bottom-nav-inner {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .page-hero {
        padding: 48px 16px 40px;
    }

    .about-block,
    .contact-card,
    .policy-block {
        padding: 28px 20px;
    }

    .about-meta {
        grid-template-columns: 1fr 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .hero-article {
        min-height: 360px;
    }

    .hero-meta {
        gap: 16px;
    }
}
