*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --forest: #1e3a2f;
    --forest-mid: #2d5540;
    --forest-light: #4a7c5f;
    --pine: #3d6b53;
    --stone: #5c4f3d;
    --stone-light: #8a7a66;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d2;
    --gold: #c9a84c;
    --gold-light: #e0c472;
    --sand: #d4c5a9;
    --text-dark: #1a2d22;
    --text-mid: #3d4f3a;
    --text-light: #6b7c65;
    --white: #ffffff;
    --shadow: 0 6px 32px rgba(20,40,28,0.14);
    --radius: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Merriweather', serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.78;
    font-size: 16px;
}

a { color: var(--forest-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--forest);
    color: var(--cream);
    z-index: 1000;
    padding: 20px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.32);
}
.cookie-content {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-content p { flex: 1; font-size: 0.88rem; min-width: 220px; font-family: 'Lato', sans-serif; line-height: 1.6; }
.cookie-content a { color: var(--gold-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie {
    padding: 9px 22px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-accept { background: var(--gold); color: var(--forest); }
.btn-accept:hover { background: var(--gold-light); }
.btn-reject { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.26); }
.btn-reject:hover { border-color: var(--gold); color: var(--gold-light); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--forest);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,168,76,0.4);
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.02em;
}
.logo-text em { color: var(--gold); font-style: italic; }

.main-nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(245,240,232,0.75);
    padding: 8px 14px;
    border-radius: 5px;
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(201,168,76,0.1); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--forest);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    min-width: 230px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li a {
    display: block;
    padding: 9px 18px;
    font-size: 0.78rem;
    color: rgba(245,240,232,0.7);
    letter-spacing: 0.04em;
}
.dropdown li a:hover { color: var(--gold); background: rgba(201,168,76,0.07); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: min(320px, 92vw);
    height: calc(100vh - 72px);
    background: var(--forest);
    z-index: 850;
    padding: 20px 0;
    transition: right var(--transition);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(0,0,0,0.55);
    z-index: 840;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; }
.mobile-menu li a {
    display: block;
    padding: 13px 28px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
}
.mobile-menu li a:hover { color: var(--gold); }
.mobile-group-label {
    padding: 12px 28px 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/78/Hiking_path_in_RN_du_Neouvielle_%281%29.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.hero-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 700;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { color: rgba(245,240,232,0.72); font-size: 1.04rem; font-family: 'Lato', sans-serif; max-width: 460px; margin-bottom: 38px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    background: var(--gold);
    color: var(--forest);
    padding: 13px 30px;
    border-radius: var(--radius);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); color: var(--forest); }
.btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(245,240,232,0.3);
    transition: all var(--transition);
    display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    height: 400px;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(201,168,76,0.18);
}
.hero-visual img:first-child {
    grid-column: span 2;
    height: 230px;
}
.hero-visual img:not(:first-child) { height: 155px; }

.section { padding: 86px 28px; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 58px; }
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.section-label::before, .section-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    color: var(--forest);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-sub { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1rem; font-family: 'Lato', sans-serif; }

.trails-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
}
.trail-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.trail-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(20,40,28,0.2); }
.trail-card.featured { grid-column: span 2; }
.card-img {
    width: 100%;
    object-fit: cover;
}
.trail-card.featured .card-img { height: 310px; }
.trail-card:not(.featured) .card-img { height: 200px; }
.card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.card-difficulty {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.difficulty-hard { background: rgba(180,40,40,0.1); color: #b42828; }
.difficulty-medium { background: rgba(201,168,76,0.12); color: #8a6a10; }
.difficulty-easy { background: rgba(74,124,95,0.12); color: #2d6642; }
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}
.trail-card.featured .card-title { font-size: 1.55rem; }
.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.card-meta span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-light);
}
.card-excerpt { color: var(--text-mid); font-size: 0.94rem; flex: 1; margin-bottom: 18px; line-height: 1.68; font-family: 'Lato', sans-serif; }
.card-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-mid);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    transition: all var(--transition);
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover { color: var(--gold); }
.card-link:hover::after { transform: translateX(4px); }

.stats-strip {
    background: var(--forest-mid);
    padding: 64px 28px;
}
.stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.62);
}

.section-alt { background: var(--cream-dark); }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}
.split-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.24;
}
.split-text p { color: var(--text-mid); margin-bottom: 16px; font-family: 'Lato', sans-serif; font-size: 0.97rem; line-height: 1.78; }
.split-img-wrap { position: relative; }
.split-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.split-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--forest);
    color: var(--cream);
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid rgba(201,168,76,0.3);
    text-align: center;
    min-width: 140px;
}
.split-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.split-badge span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.55);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tip-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 26px;
    box-shadow: 0 2px 16px rgba(20,40,28,0.08);
    border-left: 4px solid var(--forest-light);
    transition: transform var(--transition);
}
.tip-card:hover { transform: translateY(-3px); }
.tip-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: rgba(74,124,95,0.18);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}
.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 10px;
}
.tip-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.68; font-family: 'Lato', sans-serif; }

.page-hero {
    background: var(--forest);
    padding: 80px 28px 64px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-inner { max-width: 880px; margin: 0 auto; }
.breadcrumb {
    font-family: 'Raleway', sans-serif;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    margin-bottom: 18px;
}
.breadcrumb a { color: rgba(245,240,232,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.9rem);
    color: var(--cream);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.page-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
}
.page-meta span { color: var(--gold-light); }

.article-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 28px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}
.article-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--forest);
    font-weight: 700;
    margin: 40px 0 16px;
}
.article-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--forest-mid);
    font-weight: 700;
    margin: 28px 0 10px;
}
.article-main p { color: var(--text-mid); margin-bottom: 16px; font-family: 'Lato', sans-serif; font-size: 0.97rem; line-height: 1.8; }
.article-main ul, .article-main ol { padding-left: 24px; margin-bottom: 16px; }
.article-main li { color: var(--text-mid); margin-bottom: 7px; font-family: 'Lato', sans-serif; font-size: 0.96rem; }
.article-img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}
.article-quote {
    border-left: 4px solid var(--gold);
    margin: 30px 0;
    padding: 18px 28px;
    background: var(--cream-dark);
    border-radius: 0 8px 8px 0;
}
.article-quote p {
    font-family: 'Merriweather', serif;
    font-size: 1.14rem;
    color: var(--forest-mid);
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}
.article-updated {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}
.article-sources { margin-top: 30px; }
.article-sources h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-light);
    margin-bottom: 10px;
}
.article-sources li { font-size: 0.88rem; font-family: 'Lato', sans-serif; }
.article-sources a { color: var(--forest-mid); }
.article-sources a:hover { color: var(--gold); }

.info-box {
    background: rgba(74,124,95,0.08);
    border: 1px solid rgba(74,124,95,0.2);
    border-radius: 10px;
    padding: 22px 26px;
    margin: 28px 0;
}
.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 10px;
}
.info-box ul { padding-left: 20px; }
.info-box li { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 6px; font-family: 'Lato', sans-serif; }

.article-sidebar { position: sticky; top: 90px; }
.sidebar-block {
    background: var(--white);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(20,40,28,0.08);
}
.sidebar-block h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cream-dark);
}
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 9px; }
.sidebar-links a {
    font-size: 0.88rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
    font-family: 'Lato', sans-serif;
}
.sidebar-links a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.sidebar-links a:hover { color: var(--forest); }
.sidebar-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.sidebar-note {
    background: var(--forest);
    color: var(--cream);
    border-radius: 10px;
    padding: 20px 22px;
    font-size: 0.9rem;
    line-height: 1.68;
    font-family: 'Lato', sans-serif;
}
.sidebar-note strong { color: var(--gold-light); }

.text-page { max-width: 860px; margin: 0 auto; padding: 70px 28px; }
.text-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--forest);
    font-weight: 700;
    margin: 40px 0 14px;
}
.text-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--forest-mid);
    font-weight: 700;
    margin: 26px 0 10px;
}
.text-page p { color: var(--text-mid); margin-bottom: 14px; font-family: 'Lato', sans-serif; font-size: 0.96rem; line-height: 1.78; }
.text-page ul { padding-left: 22px; margin-bottom: 14px; }
.text-page li { color: var(--text-mid); margin-bottom: 6px; font-family: 'Lato', sans-serif; font-size: 0.95rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(20,40,28,0.08);
    border-top: 4px solid var(--forest-light);
}
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 12px;
}
.contact-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 8px; font-family: 'Lato', sans-serif; }
.contact-card a { color: var(--forest-mid); font-weight: 700; }
.contact-card a:hover { color: var(--gold); }

.site-footer {
    background: var(--forest);
    color: var(--cream);
    padding: 64px 28px 0;
}
.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--cream);
    display: inline-block;
    margin-bottom: 14px;
    font-weight: 700;
}
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-brand p { color: rgba(245,240,232,0.46); font-size: 0.88rem; line-height: 1.68; font-family: 'Lato', sans-serif; }
.footer-nav h4, .footer-resources h4, .footer-contact h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-nav ul, .footer-resources ul { list-style: none; }
.footer-nav li, .footer-resources li { margin-bottom: 8px; }
.footer-nav a, .footer-resources a {
    color: rgba(245,240,232,0.5);
    font-size: 0.88rem;
    transition: color var(--transition);
    font-family: 'Lato', sans-serif;
}
.footer-nav a:hover, .footer-resources a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(245,240,232,0.5); font-size: 0.88rem; margin-bottom: 8px; font-family: 'Lato', sans-serif; }
.footer-contact a { color: rgba(245,240,232,0.7); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(245,240,232,0.26);
    font-family: 'Lato', sans-serif;
}
.footer-bottom a { color: rgba(245,240,232,0.4); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trails-grid { grid-template-columns: 1fr 1fr; }
    .trail-card.featured { grid-column: span 2; }
    .article-wrap { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .split-layout { gap: 48px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero { min-height: 74vh; }
    .split-layout { grid-template-columns: 1fr; }
    .split-badge { display: none; }
    .tips-grid { grid-template-columns: 1fr; }
    .trails-grid { grid-template-columns: 1fr; }
    .trail-card.featured { grid-column: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .section { padding: 58px 16px; }
    .hero-content { padding: 64px 16px; }
    .article-wrap { padding: 46px 16px; }
    .text-page { padding: 46px 16px; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
    .stats-strip { padding: 48px 16px; }
}
