:root {
    --bg-primary: #f0ece4;
    --bg-secondary: #e6e0d4;
    --bg-tertiary: #d9d0c0;
    --bg-dark: #1a2e1a;
    --bg-dark-2: #243524;
    --text-primary: #1a1e16;
    --text-secondary: #4a5340;
    --text-muted: #7a846c;
    --accent: #2d6a4f;
    --accent-hover: #388b64;
    --accent-light: rgba(45, 106, 79, 0.1);
    --accent-gold: #d4a373;
    --border: #c8bfa8;
    --border-dark: #2e4030;
    --stone: #a8997e;
    --white: #faf8f4;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -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 28px;
}
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 28px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 600;
    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-ring {
    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: rgba(240, 236, 228, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
}
.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: 'Bitter', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}
.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 26px;
    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: 36px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    box-shadow: 0 8px 32px rgba(26, 46, 26, 0.12);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-light);
    color: var(--accent);
    padding-left: 28px;
}
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 26, 0.85) 0%, rgba(26, 46, 26, 0.35) 55%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 28px 68px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero h1 {
    font-family: 'Bitter', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 720px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(250, 248, 244, 0.8);
    line-height: 1.7;
    max-width: 560px;
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
}
.intro-section {
    padding: 80px 0;
    background: var(--white);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}
.intro-text h2 {
    font-family: 'Bitter', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.25;
}
.intro-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 46, 26, 0.18);
}
.intro-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.articles-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.section-title {
    font-family: 'Bitter', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 48px;
    line-height: 1.2;
}
.articles-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 28px;
}
.article-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}
.article-card.featured {
    grid-row: 1 / 3;
}
.card-image {
    position: relative;
    overflow: hidden;
}
.article-card.featured .card-image {
    height: 320px;
}
.article-card:not(.featured) .card-image {
    height: 180px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .card-image img {
    transform: scale(1.06);
}
.card-body {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}
.card-body h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.35;
}
.article-card.featured .card-body h3 {
    font-size: 1.45rem;
}
.card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.65;
}
.card-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-link:hover {
    color: var(--accent-hover);
}
.card-link::after {
    content: '\2192';
    transition: transform 0.2s ease;
}
.card-link:hover::after {
    transform: translateX(4px);
}
.features-section {
    padding: 80px 0;
    background: var(--bg-dark);
}
.features-section .section-label {
    color: var(--accent-gold);
}
.features-section .section-title {
    color: var(--white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-item {
    padding: 36px 28px;
    background: var(--bg-dark-2);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    transition: border-color 0.3s ease;
}
.feature-item:hover {
    border-color: var(--accent-gold);
}
.feature-num {
    font-family: 'Bitter', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 16px;
}
.feature-item h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.feature-item p {
    color: rgba(250, 248, 244, 0.6);
    font-size: 0.95rem;
    line-height: 1.65;
}
.gallery-section {
    padding: 80px 0;
    background: var(--bg-primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 26, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 56px 0 40px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}
.article-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(45, 106, 79, 0.2) 0%, transparent 70%);
}
.article-header .container-narrow {
    position: relative;
    z-index: 1;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(250, 248, 244, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent-gold);
}
.back-link::before {
    content: '\2190';
}
.article-header h1 {
    font-family: 'Bitter', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.article-meta {
    color: rgba(250, 248, 244, 0.55);
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}
.article-hero {
    max-width: 1000px;
    margin: -40px auto 0;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}
.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(26, 46, 26, 0.22);
    display: block;
}
.article-body {
    padding: 56px 0;
}
.article-intro {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 36px;
    line-height: 1.85;
}
.article-body h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 44px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body ul {
    margin: 20px 0 20px 28px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-light);
    transition: border-color 0.2s ease;
}
.article-body a:hover {
    border-color: var(--accent);
}
.article-image-block {
    margin: 36px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.article-image-block img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.article-footer-nav {
    margin-top: 52px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.about-page, .contact-page, .policy-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 52px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
}
.page-header h1 {
    font-family: 'Bitter', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.about-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.contact-info h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1rem;
}
.contact-info a {
    color: var(--accent);
    text-decoration: none;
}
.contact-details {
    background: var(--bg-secondary);
    padding: 28px;
    border-radius: 12px;
    margin-top: 28px;
    border: 1px solid var(--border);
}
.contact-details p {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.contact-details p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-details strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}
.contact-details span {
    color: var(--text-primary);
    font-size: 1rem;
}
.contact-note {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 24px;
    margin-top: 28px;
}
.contact-note p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.policy-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.policy-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.02rem;
}
.policy-content ul {
    margin: 16px 0 16px 28px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
}
.site-footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--border-dark);
    padding: 64px 0 28px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 56px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Bitter', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: rgba(250, 248, 244, 0.55);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(250, 248, 244, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent-gold);
}
.footer-col p {
    color: rgba(250, 248, 244, 0.55);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-col p a {
    color: var(--accent-gold);
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}
.footer-bottom p {
    color: rgba(250, 248, 244, 0.35);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--border-dark);
    padding: 20px 28px;
    z-index: 9000;
    display: none;
}
.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: rgba(250, 248, 244, 0.75);
    font-size: 0.95rem;
}
.cookie-content a {
    color: var(--accent-gold);
    text-decoration: none;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cookie-btn.accept {
    background: var(--accent);
    color: var(--white);
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: rgba(250, 248, 244, 0.7);
    border: 1px solid var(--border-dark);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: rgba(250, 248, 244, 0.5);
    color: var(--white);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: var(--white);
    padding: 36px;
    border-radius: 14px;
    max-width: 500px;
    width: 90%;
}
.modal-inner h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 22px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
}
.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: 28px;
}
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-image {
        order: -1;
    }
    .articles-layout {
        grid-template-columns: 1fr;
    }
    .article-card.featured {
        grid-row: auto;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 2px solid var(--border);
        padding: 20px 28px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
    }
    .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: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding: 0 0 0 16px;
        margin-top: 0;
        box-shadow: none;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
    .hero {
        min-height: 420px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child {
        grid-column: auto;
    }
    .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-footer-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}
