@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&family=Space+Mono:wght@400;700&display=swap');

:root {
    --forest: #1a2e1a;
    --moss: #3d5a2e;
    --sage: #7a9e6f;
    --stone: #b8a98a;
    --sand: #e8dfc8;
    --cream: #f5f0e8;
    --bark: #5c3d1e;
    --sky: #6b9db8;
    --white: #fefcf8;
    --text: #1e1e1e;
    --muted: #666;
    --border: #d4c9b0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
}

a { color: var(--moss); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bark); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.loader-pine {
    width: 48px;
    height: 48px;
    border: 3px solid var(--sage);
    border-top-color: var(--sand);
    border-radius: 50%;
    animation: spin .9s linear infinite;
}
.loader-text {
    font-family: 'Space Mono', monospace;
    color: var(--sand);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HEADER ===== */
#site-header {
    background: var(--forest);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--moss);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--sage);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--sand);
    line-height: 1.1;
}
.logo-sub {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sage);
    letter-spacing: .1em;
    text-transform: uppercase;
}

nav.main-nav { display: flex; gap: 6px; align-items: center; }
nav.main-nav a {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--sand);
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: background .2s, color .2s;
}
nav.main-nav a:hover { background: var(--moss); color: var(--white); }
nav.main-nav a.active { background: var(--sage); color: var(--forest); }

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--sand);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    background: var(--forest);
    border-top: 1px solid var(--moss);
    padding: 16px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--sand);
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-nav a:hover { background: var(--moss); color: var(--white); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 82vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.hero-content {
    background: var(--forest);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 56px;
    position: relative;
    z-index: 2;
}
.hero-content::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--forest);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 3;
}
.hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sage);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero h1 em {
    color: var(--stone);
    font-style: italic;
}
.hero-desc {
    font-size: 16px;
    color: var(--sand);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sage);
    color: var(--forest);
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    transition: background .2s, transform .15s;
}
.hero-cta:hover { background: var(--stone); transform: translateY(-2px); color: var(--forest); }
.hero-cta svg { width: 16px; height: 16px; }

.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,46,26,.4), transparent);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 48px;
}
.section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sage);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.25;
}
.section-header p {
    margin-top: 14px;
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    font-weight: 300;
}

/* ===== FEATURED ARTICLES ===== */
.featured-section {
    padding: 88px 0 72px;
    background: var(--white);
}
.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}
.article-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.article-card.large { grid-row: span 2; display: flex; flex-direction: column; }
.card-img { overflow: hidden; }
.card-img img { transition: transform .4s; }
.article-card:hover .card-img img { transform: scale(1.03); }
.card-img-lg { height: 320px; }
.card-img-lg img { height: 100%; width: 100%; object-fit: cover; }
.card-img-sm { height: 180px; }
.card-img-sm img { height: 100%; width: 100%; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--moss);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}
.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.35;
    margin-bottom: 12px;
}
.article-card.large .card-body h3 { font-size: 1.45rem; }
.card-body p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    font-weight: 300;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.card-date {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .08em;
}
.card-link {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--moss);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.card-link:hover { color: var(--bark); }

/* ===== GEAR CATEGORIES ===== */
.categories-section {
    padding: 80px 0;
    background: var(--cream);
}
.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: var(--sage); }
.cat-icon {
    width: 64px;
    height: 64px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cat-icon svg { width: 28px; height: 28px; fill: var(--sage); }
.cat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 10px;
}
.cat-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}
.cat-count {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sage);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ===== TRAIL SPLIT ===== */
.trail-section {
    padding: 96px 0;
    background: var(--forest);
    overflow: hidden;
}
.trail-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 520px;
}
.trail-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    border-radius: 4px;
    overflow: hidden;
}
.trail-images img { width: 100%; height: 100%; object-fit: cover; }
.trail-text {
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trail-text .section-eyebrow { color: var(--sage); }
.trail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin: 12px 0 24px;
}
.trail-text p {
    font-size: 15.5px;
    color: var(--sand);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
}
.trail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.stat-item {}
.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--stone);
    line-height: 1;
}
.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sage);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== GEAR REVIEWS SECTION ===== */
.reviews-section {
    padding: 88px 0;
    background: var(--white);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.review-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
}
.review-img { overflow: hidden; }
.review-img img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.review-body { padding: 28px; }
.review-brand {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--moss);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}
.review-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
    line-height: 1.3;
}
.review-score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.score-num {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--moss);
}
.score-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.score-fill {
    height: 100%;
    background: var(--sage);
    border-radius: 2px;
}
.review-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}
.review-specs {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.spec-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    background: var(--forest);
    color: var(--sage);
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 88px 0;
    background: var(--sand);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 24px;
}
.about-text p {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
}
.about-credentials {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-left: 4px solid var(--moss);
    border-radius: 0 4px 4px 0;
}
.about-credentials p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}
.about-credentials strong { color: var(--forest); font-weight: 600; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 4px; width: 100%; height: 480px; object-fit: cover; }
.about-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--forest);
    color: var(--sand);
    padding: 16px 20px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .06em;
}
.about-badge strong { display: block; font-size: 20px; color: var(--stone); margin-bottom: 2px; }

/* ===== FOOTER ===== */
footer {
    background: var(--forest);
    color: var(--sand);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { margin-bottom: 14px; }
.footer-brand p {
    font-size: 14px;
    color: rgba(232,223,200,.6);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}
.footer-contact {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--sage);
}
.footer-contact a { color: var(--sage); }
.footer-col h4 {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sage);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(232,223,200,.7);
    transition: color .2s;
}
.footer-col ul li a:hover { color: var(--sand); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(232,223,200,.4);
}
.footer-bottom a { color: rgba(232,223,200,.5); }
.footer-bottom a:hover { color: var(--sand); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest);
    border-top: 3px solid var(--moss);
    padding: 20px 24px;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
#cookie-banner.visible { display: flex; }
.cookie-text {
    font-size: 14px;
    color: var(--sand);
    line-height: 1.6;
    flex: 1;
    min-width: 280px;
}
.cookie-text a { color: var(--sage); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept, .btn-reject {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .1s;
}
.btn-accept { background: var(--sage); color: var(--forest); }
.btn-accept:hover { background: var(--stone); transform: translateY(-1px); }
.btn-reject { background: transparent; color: var(--sand); border: 1px solid rgba(255,255,255,.2); }
.btn-reject:hover { background: rgba(255,255,255,.05); }

/* ===== SINGLE ARTICLE PAGE ===== */
.page-hero {
    background: var(--forest);
    padding: 72px 0 56px;
}
.page-hero .section-eyebrow { color: var(--sage); margin-bottom: 16px; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 720px;
    margin-bottom: 20px;
}
.page-hero-meta {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.meta-item {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sage);
    letter-spacing: .08em;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    padding: 64px 0 96px;
    align-items: start;
}
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--forest);
    margin: 40px 0 16px;
    line-height: 1.3;
}
.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest);
    margin: 28px 0 12px;
}
.article-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}
.article-content ul, .article-content ol {
    margin: 16px 0 20px 24px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
}
.article-content li { margin-bottom: 6px; }
.article-content .article-img {
    margin: 32px 0;
    border-radius: 4px;
    overflow: hidden;
}
.article-content .article-img img { width: 100%; max-height: 460px; object-fit: cover; }
.article-content .article-img figcaption {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    padding: 10px 0;
    letter-spacing: .04em;
}
.article-content .info-box {
    background: var(--sand);
    border-left: 4px solid var(--moss);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 4px 4px 0;
}
.article-content .info-box p { margin: 0; font-size: 14.5px; }

.sidebar-widget {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sage);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}
.sidebar-widget ul li a:hover { color: var(--moss); }
.related-meta {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .06em;
    display: block;
    margin-top: 3px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail svg { width: 18px; height: 18px; fill: var(--sage); margin-top: 2px; flex-shrink: 0; }
.contact-detail-text {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--text);
}
.contact-detail-text a { color: var(--moss); }

.contact-card {
    background: var(--forest);
    border-radius: 4px;
    padding: 36px;
    color: var(--sand);
}
.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}
.contact-card p {
    font-size: 14px;
    color: rgba(232,223,200,.7);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 20px;
}
.contact-card .email-link {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--sage);
    word-break: break-all;
}

/* ===== POLICY PAGE ===== */
.policy-section {
    padding: 64px 0 96px;
    background: var(--white);
}
.policy-content {
    max-width: 760px;
}
.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin: 36px 0 14px;
}
.policy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest);
    margin: 24px 0 10px;
}
.policy-content p, .policy-content li {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
}
.policy-content ul { margin: 12px 0 16px 24px; }
.policy-content li { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .article-card.large { grid-row: span 1; }
    .card-img-lg { height: 240px; }
    .trail-split { grid-template-columns: 1fr; }
    .trail-text { padding: 40px 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap img { height: 360px; }
    .about-badge { left: 16px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    nav.main-nav { display: none; }
    .burger-btn { display: flex; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 56px 28px; }
    .hero-content::after { display: none; }
    .hero-image { height: 280px; }
    .articles-grid { grid-template-columns: 1fr; }
    .cats-grid { grid-template-columns: 1fr; }
    .review-card { grid-template-columns: 1fr; }
    .review-img img { min-height: 200px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .trail-stats { grid-template-columns: 1fr 1fr; }
}
