*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #f5f0e8;
    --color-bg-dark: #1a1410;
    --color-text: #2c2416;
    --color-text-light: #6b5c46;
    --color-accent: #8b4513;
    --color-accent-light: #c4863a;
    --color-gold: #c9a84c;
    --color-white: #faf7f2;
    --color-border: #ddd4c0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    --font-ui: 'Montserrat', sans-serif;
    --header-h: 72px;
    --max-w: 1200px;
    --radius: 4px;
    --shadow: 0 2px 20px rgba(44,36,22,0.1);
    --shadow-lg: 0 8px 40px rgba(44,36,22,0.18);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--color-accent-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--color-text);
}

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

address { font-style: normal; }

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--color-gold);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.loader-arc {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201,168,76,0.2);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,20,16,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    height: var(--header-h);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.site-logo:hover, .footer-logo:hover { color: var(--color-gold); }
.logo-icon {
    font-size: 1.6rem;
    color: var(--color-gold);
    line-height: 1;
}
.logo-text em {
    display: block;
    font-size: 0.65rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-family: var(--font-ui);
    font-weight: 500;
    line-height: 1;
}

.main-nav { margin-left: auto; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block;
    padding: 8px 14px;
    color: rgba(250,247,242,0.85);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--color-gold);
    background: rgba(201,168,76,0.08);
}
.nav-list .arrow {
    font-size: 0.7rem;
    margin-left: 4px;
    opacity: 0.7;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--color-bg-dark);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 18px;
    color: rgba(250,247,242,0.8);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 400;
    transition: color var(--transition), background var(--transition);
    border-bottom: 1px solid rgba(201,168,76,0.08);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
    color: var(--color-gold);
    background: rgba(201,168,76,0.08);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
}
.mobile-overlay.active { display: block; }

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,20,16,0.92) 0%, rgba(26,20,16,0.3) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px 64px;
    width: 100%;
}
.hero-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: 20px;
    max-width: 700px;
    font-style: italic;
}
.hero-content p {
    font-size: 1.1rem;
    color: rgba(250,247,242,0.75);
    max-width: 540px;
    margin-bottom: 32px;
}
.btn-hero {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}
.btn-hero:hover {
    background: var(--color-accent-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--color-text);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 540px;
    margin: 0 auto;
}
.divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 16px auto 0;
}

.sites-section {
    padding: 88px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.site-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.site-card:first-child {
    grid-column: span 2;
}
.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.site-card:first-child .card-img-wrap {
    aspect-ratio: 21/9;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.site-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-year {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-bg-dark);
    color: var(--color-gold);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 2px;
}
.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-category {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}
.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-style: italic;
}
.card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    flex: 1;
    margin-bottom: 20px;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--color-accent-light); }
.card-link::after { content: '\2192'; }

.highlight-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2d1f0e 100%);
    padding: 96px 24px;
}
.highlight-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.highlight-text .section-header {
    text-align: left;
    margin-bottom: 24px;
}
.highlight-text .section-tag { color: var(--color-gold); }
.highlight-text .section-header h2 { color: var(--color-white); }
.highlight-text .divider { margin: 16px 0 0; }
.highlight-text p {
    color: rgba(250,247,242,0.75);
    margin-top: 24px;
    margin-bottom: 16px;
}
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding-top: 36px;
}
.stat-item { text-align: center; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.5);
}
.highlight-img {
    position: relative;
}
.highlight-img img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.highlight-img-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -24px;
    left: -24px;
    border: 3px solid var(--color-gold);
    border-radius: 4px;
    z-index: -1;
}

.articles-section {
    padding: 88px 24px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.article-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.article-card .card-img-wrap {
    aspect-ratio: auto;
    height: 100%;
}
.article-card .card-img-wrap img {
    height: 100%;
    object-fit: cover;
}
.article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.article-body p {
    font-size: 0.87rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.page-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-hero .hero-bg {
    transform: scale(1.02);
}
.page-hero .hero-content {
    padding: 48px 24px 56px;
}
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    font-style: italic;
}
.page-hero .breadcrumb {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: rgba(250,247,242,0.6);
    margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--color-gold); }
.page-hero .breadcrumb a:hover { color: var(--color-accent-light); }

.article-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}
.article-content h2 {
    font-size: 1.6rem;
    margin: 36px 0 16px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}
.article-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.article-content h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--color-accent);
}
.article-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 1.2rem;
}
.article-content ul li { margin-bottom: 6px; }
.article-content a {
    border-bottom: 1px solid rgba(139,69,19,0.3);
}
.article-content a:hover { border-bottom-color: var(--color-accent); }
.article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-img {
    margin: 32px 0;
    border-radius: 6px;
    overflow: hidden;
}
.article-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.article-img figcaption {
    font-size: 0.78rem;
    color: var(--color-text-light);
    padding: 8px 0 0;
    font-style: italic;
}

.article-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-widget {
    background: var(--color-white);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sidebar-widget h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
    font-style: italic;
}
.info-table { width: 100%; }
.info-table tr { border-bottom: 1px solid var(--color-border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
    padding: 8px 0;
    font-size: 0.85rem;
    vertical-align: top;
}
.info-table td:first-child {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    width: 45%;
    padding-right: 12px;
}
.related-list li { margin-bottom: 10px; }
.related-list a {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.related-list a::before {
    content: '\2192';
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.related-list a:hover { color: var(--color-accent); }

.simple-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 24px;
}
.simple-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 8px;
    font-style: italic;
}
.simple-page .page-meta {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}
.simple-page h2 {
    font-size: 1.4rem;
    margin: 36px 0 14px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}
.simple-page h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}
.contact-box {
    background: var(--color-white);
    border-radius: 6px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.contact-box h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    font-style: italic;
    color: var(--color-accent);
}
.contact-box p, .contact-box address p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}
.contact-box a { color: var(--color-accent); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(201,168,76,0.25);
    padding: 18px 24px;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text p {
    font-size: 0.88rem;
    color: rgba(250,247,242,0.75);
    margin: 0;
}
.cookie-text a { color: var(--color-gold); }
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}
.btn {
    display: inline-block;
    padding: 9px 22px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.btn-accept {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}
.btn-accept:hover { background: var(--color-accent-light); color: var(--color-white); }
.btn-reject {
    background: transparent;
    color: rgba(250,247,242,0.7);
    border: 1px solid rgba(250,247,242,0.25);
}
.btn-reject:hover {
    background: rgba(250,247,242,0.08);
    color: var(--color-white);
}

.site-footer {
    background: var(--color-bg-dark);
    color: rgba(250,247,242,0.7);
    padding: 64px 24px 0;
}
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(250,247,242,0.5);
    margin: 0;
}
.footer-col h3 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(250,247,242,0.6);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-white); }
.footer-contact address p {
    font-size: 0.88rem;
    color: rgba(250,247,242,0.6);
    margin-bottom: 6px;
}
.footer-contact address p a {
    color: rgba(250,247,242,0.6);
    transition: color var(--transition);
}
.footer-contact address p a:hover { color: var(--color-gold); }
.footer-sources {
    margin-top: 16px;
}
.footer-sources p {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.4);
    margin-bottom: 8px;
}
.footer-sources a {
    display: block;
    font-size: 0.82rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}
.footer-sources a:hover { color: var(--color-accent-light); }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(250,247,242,0.35);
}
.footer-bottom a {
    color: rgba(250,247,242,0.4);
    transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--color-gold); }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }

@media (max-width: 1024px) {
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
    .site-card:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .highlight-inner { grid-template-columns: 1fr; }
    .highlight-img { display: none; }
}
@media (max-width: 768px) {
    :root { --header-h: 60px; }
    .burger-btn { display: flex; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-h));
        background: var(--color-bg-dark);
        padding: 24px 0;
        overflow-y: auto;
        transition: right 0.35s ease;
        z-index: 95;
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-list > li { width: 100%; }
    .nav-list > li > a {
        padding: 14px 24px;
        border-radius: 0;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255,255,255,0.04);
        display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .dropdown li a { padding: 10px 24px 10px 38px; }
    .sites-grid { grid-template-columns: 1fr; }
    .site-card:first-child { grid-column: span 1; }
    .articles-grid { grid-template-columns: 1fr; }
    .article-card { grid-template-columns: 120px 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .highlight-stats { grid-template-columns: repeat(3, 1fr); }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { margin-left: 0; }
}
@media (max-width: 480px) {
    .article-card { grid-template-columns: 1fr; }
    .article-card .card-img-wrap { height: 180px; }
    .highlight-stats { grid-template-columns: 1fr 1fr; }
}
