:root {
    --bg-primary: #1c1a14;
    --bg-secondary: #252318;
    --bg-tertiary: #2e2b1e;
    --bg-card: #2a2720;
    --text-primary: #f0ead8;
    --text-secondary: #b8ad94;
    --text-muted: #7a7260;
    --accent: #7a9e4e;
    --accent-hover: #8fb85c;
    --accent-muted: rgba(122, 158, 78, 0.15);
    --accent-gold: #c9a84c;
    --accent-gold-muted: rgba(201, 168, 76, 0.15);
    --border: #3d3928;
    --border-light: #4a4535;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-leaf {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(28, 26, 20, 0.98) 0%, rgba(28, 26, 20, 0.92) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-emblem {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-leaf {
    font-size: 1.4rem;
    color: var(--bg-primary);
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
.logo-tagline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.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(--text-primary);
    transition: all 0.3s ease;
    display: block;
}
.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 .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.75rem;
    opacity: 0.6;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    margin-top: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-muted);
    color: var(--accent);
}
.hero {
    position: relative;
    height: 85vh;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 26, 20, 0.1) 0%,
        rgba(28, 26, 20, 0.3) 40%,
        rgba(28, 26, 20, 0.85) 80%,
        rgba(28, 26, 20, 0.97) 100%
    );
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 72px;
    width: 100%;
}
.hero-label {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    border: 1px solid var(--accent);
    padding: 4px 14px;
    border-radius: 20px;
}
.hero-text {
    max-width: 680px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: background 0.2s ease;
}
.hero-cta:hover {
    background: var(--accent-hover);
}
.intro-section {
    padding: 90px 0;
    background: var(--bg-secondary);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}
.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.stat-item {
    text-align: center;
    padding: 28px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.articles-section {
    padding: 90px 0;
}
.section-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 40px;
}
.articles-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}
.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.article-card {
    background: var(--bg-card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.article-featured {
    display: flex;
    flex-direction: column;
}
.article-image {
    position: relative;
    overflow: hidden;
}
.article-featured .article-image {
    height: 300px;
}
.articles-secondary .article-image {
    height: 170px;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-image img {
    transform: scale(1.06);
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-muted);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Source Sans 3', sans-serif;
}
.article-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-tag {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 8px;
}
.article-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}
.article-content p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}
.article-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: color 0.2s ease;
    align-self: flex-start;
}
.article-link:hover {
    color: var(--accent-hover);
}
.features-section {
    padding: 90px 0;
    background: var(--bg-secondary);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-item {
    padding: 32px 24px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.feature-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}
.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.highlight-section {
    padding: 90px 0;
}
.highlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.highlight-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.highlight-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.image-credit-full {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Source Sans 3', sans-serif;
    margin-top: 8px;
    text-align: center;
}
.highlight-label {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 4px;
}
.highlight-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}
.highlight-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.8;
}
.highlight-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}
.highlight-link:hover {
    color: var(--accent-hover);
    border-color: var(--accent-hover);
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 56px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Source Sans 3', sans-serif;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent);
}
.article-tag-header {
    display: inline-block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 14px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
}
.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-family: 'Source Sans 3', sans-serif;
}
.meta-sep {
    margin: 0 10px;
    opacity: 0.4;
}
.article-hero-image {
    padding: 40px 0;
    background: var(--bg-secondary);
}
.article-hero-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.article-body {
    padding: 56px 0;
}
.article-intro {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.85;
    font-weight: 300;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}
.article-body ul {
    margin: 20px 0 20px 24px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.7;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-muted);
    transition: all 0.2s ease;
}
.article-body a:hover {
    color: var(--accent-hover);
    border-color: var(--accent-hover);
}
.article-tip {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 32px 0;
}
.article-tip h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 600;
}
.article-tip p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    margin-bottom: 0;
}
.article-nav {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.article-nav-link {
    color: var(--accent);
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.article-nav-link:hover {
    color: var(--accent-hover);
}
.page-section {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 48px;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: 'Source Sans 3', sans-serif;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.about-image-block img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}
.detail-item h3 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
}
.detail-item p {
    color: var(--text-primary);
    font-size: 1rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}
.contact-info-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info-block h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.contact-details-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}
.contact-row {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-label {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    min-width: 80px;
    padding-top: 2px;
}
.contact-value {
    color: var(--text-primary);
    font-size: 0.98rem;
}
.contact-topics h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.topics-list {
    list-style: none;
    padding: 0;
}
.topics-list li {
    color: var(--text-secondary);
    font-size: 0.98rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}
.topics-list li::before {
    content: '\2618';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
    top: 12px;
}
.policy-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.policy-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}
.policy-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
    font-size: 1rem;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}
.cookie-content a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Source Sans 3', sans-serif;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--bg-primary);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject,
.cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 14px;
    max-width: 480px;
    width: 90%;
    border: 1px solid var(--border);
}
.modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    .stat-item {
        flex: 1;
    }
}
@media (max-width: 968px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .highlight-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .about-details {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .logo-tagline {
        display: none;
    }
    .main-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 999;
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
    .hero {
        height: 70vh;
        min-height: 480px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .intro-stats {
        flex-direction: column;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .article-nav {
        flex-direction: column;
    }
    .highlight-image img {
        height: 280px;
    }
}
@media (max-width: 480px) {
    .hero-inner {
        padding-bottom: 48px;
    }
    .hero-cta {
        width: 100%;
        text-align: center;
    }
    .modal-buttons {
        flex-direction: column;
    }
}
