@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lora:ital,wght@0,400;0,500;1,400&family=Raleway:wght@300;400;600;700&family=Merriweather:wght@300;400;700&display=swap');

:root {
    --forest: #1a3a2a;
    --moss: #2d5a3d;
    --sage: #4a7c59;
    --water: #2a6b8a;
    --lake: #3d8fa8;
    --sky: #a8d5e2;
    --sand: #e8dcc8;
    --cream: #f5f0e8;
    --bark: #6b4c2a;
    --stone: #8a7a6a;
    --white: #fdfcfa;
    --dark: #1a1a1a;
    --text: #2c2c2c;
    --light-text: #5a5a5a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lora', Georgia, serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
}

a {
    color: var(--water);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--moss);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--forest);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-leaf {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--sky);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 16px;
}

.loader-inner span {
    color: var(--sky);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 58, 42, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(168, 213, 226, 0.15);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(26, 58, 42, 0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sage), var(--lake));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    color: var(--sky);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--sky);
    background: rgba(168, 213, 226, 0.1);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 58, 42, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 32px;
    z-index: 999;
    border-bottom: 1px solid rgba(168, 213, 226, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--sky);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 42, 0.75) 0%,
        rgba(42, 107, 138, 0.45) 60%,
        rgba(26, 58, 42, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 32px;
    margin-left: 8%;
}

.hero-tag {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
    background: rgba(168, 213, 226, 0.15);
    border: 1px solid rgba(168, 213, 226, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    color: var(--sky);
}

.hero-desc {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--sky);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--sky);
}

.btn-primary:hover {
    background: transparent;
    color: var(--sky);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
    background: var(--forest);
    padding: 28px 0;
}

.intro-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.strip-icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

.strip-item span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--sage), var(--lake));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== PARKS SECTION ===== */
.parks-section {
    padding: 96px 0;
    background: var(--cream);
}

.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.park-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 58, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 58, 42, 0.15);
}

.park-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.park-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.park-card:hover .park-card-img img {
    transform: scale(1.06);
}

.park-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--forest);
    color: var(--sky);
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.park-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.park-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.3;
}

.park-card-body p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.park-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: var(--stone);
    font-weight: 600;
}

.park-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--moss);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--moss);
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.park-link:hover {
    background: var(--moss);
    color: var(--white);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 96px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 143, 168, 0.15), transparent 70%);
    pointer-events: none;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-img-wrap {
    position: relative;
}

.featured-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.featured-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--lake);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.featured-img-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.featured-img-badge span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.featured-content .section-tag {
    color: var(--sky);
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 16px;
}

.featured-list {
    list-style: none;
    margin: 24px 0 32px;
}

.featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.6;
}

.featured-list li::before {
    content: '—';
    color: var(--sky);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== TIPS SECTION ===== */
.tips-section {
    padding: 96px 0;
    background: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tip-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 36px;
    border-left: 4px solid var(--sage);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateX(4px);
}

.tip-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(74, 124, 89, 0.15);
    line-height: 1;
    margin-bottom: 8px;
}

.tip-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.tip-card p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.75;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px;
    gap: 4px;
    overflow: hidden;
}

.gallery-strip-item {
    overflow: hidden;
    position: relative;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-strip-item:hover img {
    transform: scale(1.06);
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
    margin-top: 70px;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,58,42,0.9) 0%, rgba(26,58,42,0.3) 60%, transparent 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.article-hero-content .section-tag {
    color: var(--sky);
    display: block;
    margin-bottom: 12px;
}

.article-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    max-width: 800px;
    margin-bottom: 16px;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.article-meta-bar span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
}

/* ===== ARTICLE CONTENT ===== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
    align-items: start;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest);
    margin: 48px 0 16px;
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--moss);
    margin: 32px 0 12px;
}

.article-body p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 24px;
}

.article-body li {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 8px;
}

.article-body strong {
    color: var(--forest);
    font-weight: 600;
}

.article-img {
    width: 100%;
    border-radius: 12px;
    margin: 32px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.article-img-caption {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--stone);
    text-align: center;
    margin-top: -24px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.info-box {
    background: linear-gradient(135deg, rgba(26,58,42,0.06), rgba(42,107,138,0.06));
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 12px;
    padding: 28px;
    margin: 32px 0;
}

.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 16px;
}

.info-box ul {
    margin: 0;
    padding-left: 20px;
}

.info-box li {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.quote-block {
    border-left: 4px solid var(--lake);
    padding: 20px 28px;
    margin: 32px 0;
    background: rgba(42, 107, 138, 0.05);
    border-radius: 0 8px 8px 0;
}

.quote-block p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--water);
    margin: 0;
    line-height: 1.7;
}

/* ===== SIDEBAR ===== */
.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cream);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--moss);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--water);
}

.sidebar-links a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--sage);
}

.fact-list {
    list-style: none;
}

.fact-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--cream);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-label {
    color: var(--stone);
    font-weight: 500;
}

.fact-value {
    color: var(--forest);
    font-weight: 700;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 96px 0;
    background: var(--cream);
    margin-top: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sage), var(--lake));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--water);
}

.contact-map {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-map-footer {
    padding: 20px 24px;
}

.contact-map-footer p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
}

/* ===== POLICY PAGE ===== */
.policy-section {
    padding: 96px 0;
    background: var(--cream);
    margin-top: 70px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.policy-updated {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    color: var(--stone);
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: block;
}

.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin: 40px 0 14px;
}

.policy-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 20px 24px;
}

.policy-content li {
    font-family: 'Lora', serif;
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 56px;
}

.footer-brand p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}

.footer-col h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--sky);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item span:first-child {
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span:last-child {
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--sky);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--sky);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    z-index: 8000;
    padding: 20px 32px;
    border-top: 1px solid rgba(168, 213, 226, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--sky);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--sky);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--white);
}

.cookie-reject {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--forest);
    padding: 12px 0;
    margin-top: 70px;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-inner a,
.breadcrumb-inner span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.breadcrumb-inner a:hover {
    color: var(--sky);
}

.breadcrumb-inner .sep {
    color: rgba(255,255,255,0.3);
}

.breadcrumb-inner .current {
    color: var(--sky);
}

/* ===== RELATED ARTICLES ===== */
.related-section {
    padding: 80px 0;
    background: var(--cream);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.related-card-img {
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-img img {
    transform: scale(1.08);
}

.related-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-card-body .section-tag {
    margin-bottom: 6px;
    font-size: 0.68rem;
}

.related-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.35;
    margin-bottom: 8px;
}

.related-card-body p {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    background: var(--forest);
    padding: 80px 0 60px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--sage), var(--lake), var(--sage));
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-header p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.75;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .parks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .featured-img-wrap img {
        height: 360px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .article-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .parks-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-strip-item {
        height: 220px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-img-badge {
        bottom: 16px;
        right: 16px;
    }

    .intro-strip-inner {
        gap: 24px;
    }

    .article-hero-content h1 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .article-layout {
        padding: 40px 20px;
    }

    .header-inner {
        padding: 0 20px;
    }
}
