*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-deep: #1b4332;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #95d5b2;
    --green-mist: #d8f3dc;
    --earth-dark: #3d2b1f;
    --earth-mid: #6b4c3b;
    --earth-warm: #c9a87c;
    --cream: #f8f4ee;
    --cream-dark: #ede8df;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-article: 'Lora', Georgia, serif;
    --font-ui: 'Space Grotesk', system-ui, sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--green-deep);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-family: var(--font-ui);
}

.skip-link:focus {
    top: 0;
}

/* PAGE LOADER */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-leaf {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--green-pale);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(82, 183, 136, 0.2);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-mark {
    display: flex;
    align-items: center;
}

.logo-mark svg {
    width: 36px;
    height: 36px;
}

.logo-text {
    color: var(--green-pale);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-pale);
    background: rgba(82, 183, 136, 0.12);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown.open .dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--green-deep);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: var(--radius);
    list-style: none;
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 0.875rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--green-pale);
    background: rgba(82, 183, 136, 0.12);
}

/* MAIN CONTENT */
.main-content {
    min-height: 60vh;
}

/* HERO */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.4) 60%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    background: rgba(82, 183, 136, 0.25);
    border: 1px solid rgba(82, 183, 136, 0.5);
    color: var(--green-pale);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-text h1 em {
    font-style: italic;
    color: var(--green-pale);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-light);
    color: var(--green-deep);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(8px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION TITLES */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--green-mid);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.2;
}

.section-subtitle {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
}

/* INTRO SECTION */
.intro-section {
    padding: 5rem 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--green-deep);
    margin-bottom: 1.25rem;
}

.intro-text p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.image-credit {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* DESTINATIONS SECTION */
.destinations-section {
    padding: 5rem 0;
    background: var(--cream);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green-deep);
    color: var(--green-pale);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-body p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.meta-item {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-mid);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
    color: var(--green-deep);
    gap: 0.7rem;
}

.card-link::after {
    content: '\2192';
}

/* TIPS SECTION */
.tips-section {
    padding: 5rem 0;
    background: var(--green-deep);
    color: var(--white);
}

.tips-section .section-title {
    color: var(--white);
}

.tips-section .section-tag {
    color: var(--green-pale);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tip-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(82, 183, 136, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
}

.tip-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(82, 183, 136, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.tip-item h3 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-pale);
    margin-bottom: 0.75rem;
}

.tip-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ARTICLE PAGE */
.article-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--green-deep);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,67,50,0.9) 0%, rgba(27,67,50,0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.article-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    width: 100%;
    color: var(--white);
}

.article-hero-content .article-tag {
    display: inline-block;
    background: rgba(82, 183, 136, 0.25);
    border: 1px solid rgba(82, 183, 136, 0.5);
    color: var(--green-pale);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.article-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
}

.article-hero-content .article-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.article-hero-content .article-meta span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.article-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.article-body {
    font-family: var(--font-article);
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green-deep);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--green-mid);
    margin: 2rem 0 0.75rem;
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
    margin: 1rem 0 1.25rem 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body a {
    color: var(--green-mid);
    text-decoration: underline;
    text-decoration-color: rgba(45,106,79,0.4);
}

.article-body a:hover {
    color: var(--green-deep);
}

.article-image-block {
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image-block img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.article-image-block figcaption {
    background: var(--cream-dark);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-ui);
}

.info-box {
    background: var(--green-mist);
    border-left: 4px solid var(--green-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.info-box h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-deep);
    margin-bottom: 0.75rem;
}

.info-box p, .info-box li {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-family: var(--font-body);
}

/* SIDEBAR */
.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green-mist);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-ui);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-widget a::before {
    content: '\25B8';
    color: var(--green-light);
    font-size: 0.7rem;
}

.sidebar-widget a:hover {
    color: var(--green-mid);
}

.park-facts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.fact-label {
    color: var(--text-light);
    font-family: var(--font-ui);
    flex-shrink: 0;
}

.fact-value {
    color: var(--text-dark);
    font-family: var(--font-ui);
    font-weight: 500;
    text-align: right;
}

/* ABOUT PAGE */
.about-page {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.about-content .subtitle {
    color: var(--green-mid);
    font-family: var(--font-ui);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-values {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--cream-dark);
}

.about-values h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-deep);
    margin-bottom: 1.5rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-dot {
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.value-item h3 {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* CONTACT PAGE */
.contact-page {
    padding: 5rem 0;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-details {
    background: var(--green-mist);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--green-deep);
    margin: 1.5rem 0 0.75rem;
}

/* POLICY PAGE */
.policy-page {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.policy-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--green-deep);
    margin-bottom: 0.5rem;
}

.policy-page .updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-ui);
}

.policy-page h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--green-deep);
    margin: 2rem 0 0.75rem;
}

.policy-page p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-page ul {
    margin: 0.75rem 0 1rem 1.5rem;
    color: var(--text-mid);
}

.policy-page li {
    margin-bottom: 0.4rem;
}

/* FOOTER */
.site-footer {
    background: var(--earth-dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-pale);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-update {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-pale);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--green-pale);
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-family: var(--font-ui);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--green-pale);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 700px;
    background: var(--earth-dark);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    display: none;
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from { transform: translateX(-50%) translateY(20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.cookie-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--green-pale);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--green-light);
    color: var(--green-deep);
}

.cookie-btn.accept:hover {
    background: var(--green-pale);
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.cookie-btn.settings {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-btn.settings:hover {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.cookie-modal.visible {
    display: flex;
}

.modal-inner {
    background: var(--earth-dark);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
}

.modal-inner h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.cookie-option p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding-left: 1.75rem;
}

.modal-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* RELATED ARTICLES */
.related-section {
    padding: 4rem 0;
    background: var(--cream-dark);
}

.related-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.related-card-img {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card-body {
    padding: 1rem 1rem 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-card-tag {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-mid);
    margin-bottom: 0.4rem;
}

.related-card-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--green-deep);
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--green-deep);
        padding: 1rem;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(82, 183, 136, 0.2);
        z-index: 99;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.75rem 1rem;
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0,0,0,0.2);
        padding: 0.25rem 0 0.25rem 1rem;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-hero {
        height: 320px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
