@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&family=Cormorant+Garamond:wght@300;500;600&family=Montserrat:wght@400;500;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #f5f0e8;
    --warm-beige: #e8dfc8;
    --terracotta: #c0714a;
    --terracotta-dark: #9a5535;
    --clay: #8b6347;
    --forest: #3d5a47;
    --forest-light: #4e7260;
    --gold: #b89650;
    --gold-light: #d4b278;
    --charcoal: #2c2c2c;
    --text-muted: #6b6b6b;
    --border: #d9cdb8;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover { color: var(--terracotta-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============ HEADER ============ */
.site-header {
    background: linear-gradient(135deg, #2c2420 0%, #3d2b1f 50%, #2c2420 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--warm-beige);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: var(--warm-beige);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
    background: rgba(184,150,80,0.15);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--warm-beige);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44,36,32,0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--warm-beige);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c1a10 0%, #4a2c1a 40%, #3d2b1f 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/0/0d/Poterie_de_La_Madeleine_01.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--warm-beige);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-text h1 em {
    color: var(--gold-light);
    font-style: italic;
}

.hero-text p {
    color: #c8bfb0;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
}
.hero-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,113,74,0.4);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(184,150,80,0.3);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.3s;
}
.hero-card:hover {
    background: rgba(184,150,80,0.15);
    border-color: var(--gold-light);
    transform: translateX(6px);
    color: var(--warm-beige);
}
.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 600;
}
.hero-card-desc {
    font-size: 0.82rem;
    color: #a09888;
    margin-top: 2px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ============ ARTICLE CARDS GRID ============ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: all 0.3s;
    border: 1px solid var(--border);
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.article-card:hover .card-img img {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.card-body {
    padding: 24px;
}
.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}
.card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.card-link:hover { gap: 12px; color: var(--terracotta-dark); }

/* ============ FEATURED STRIP ============ */
.featured-strip {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
    padding: 72px 24px;
}

.featured-strip .section {
    padding: 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.featured-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    aspect-ratio: 4/3;
}
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--warm-beige);
    margin-bottom: 20px;
    line-height: 1.3;
}
.featured-content p {
    color: #c0d4c8;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.featured-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #2c2420;
    padding: 13px 26px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 8px;
    text-decoration: none;
}
.featured-content .btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--charcoal);
    padding: 48px 24px;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold-light);
    font-weight: 700;
}
.stat-item p {
    color: #a09888;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* ============ ARTICLE PAGE ============ */
.article-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: var(--charcoal);
}
.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.article-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    background: linear-gradient(to top, rgba(44,36,32,0.9) 0%, transparent 60%);
}
.article-hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--warm-beige);
    max-width: 700px;
    line-height: 1.2;
}

.article-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3a3530;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--charcoal);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--warm-beige);
}
.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--clay);
    margin: 28px 0 12px;
    font-weight: 600;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--charcoal); }
.article-body a {
    color: var(--terracotta);
    text-decoration: underline;
    text-decoration-color: rgba(192,113,74,0.4);
}
.article-body a:hover { text-decoration-color: var(--terracotta); }

.article-body .callout {
    background: var(--warm-beige);
    border-left: 4px solid var(--terracotta);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--clay);
}

.article-body .img-caption {
    margin: 32px 0;
}
.article-body .img-caption img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.article-body .img-caption figcaption {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.article-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}
.article-meta .cat-badge {
    background: var(--terracotta);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--warm-beige);
}
.sidebar-links {
    list-style: none;
}
.sidebar-links li {
    padding: 9px 0;
    border-bottom: 1px solid var(--warm-beige);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    flex-shrink: 0;
}
.sidebar-links a:hover { color: var(--terracotta); }

.toc {
    list-style: none;
    counter-reset: toc;
}
.toc li {
    counter-increment: toc;
    padding: 8px 0;
    border-bottom: 1px solid var(--warm-beige);
    font-size: 0.88rem;
}
.toc li:last-child { border-bottom: none; }
.toc a {
    color: var(--charcoal);
    display: flex;
    gap: 10px;
    align-items: baseline;
}
.toc a::before {
    content: counter(toc) ".";
    color: var(--terracotta);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.toc a:hover { color: var(--terracotta); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: var(--warm-beige);
    padding: 12px 24px;
}
.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
}
.breadcrumb-inner a {
    color: var(--clay);
    text-decoration: none;
}
.breadcrumb-inner a:hover { color: var(--terracotta); }
.breadcrumb-inner .sep { color: #b0a090; }

/* ============ ABOUT PAGE ============ */
.page-hero {
    background: linear-gradient(135deg, #2c1a10 0%, #3d2b1f 100%);
    padding: 80px 24px;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--warm-beige);
    margin-bottom: 16px;
}
.page-hero p {
    color: #c8bfb0;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.about-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}
.value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 600;
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============ CONTACT PAGE ============ */
.contact-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--warm-beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--terracotta);
    flex-shrink: 0;
}
.contact-item-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 2px;
}
.contact-item-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.contact-item-text a {
    color: var(--terracotta);
}

.contact-map-placeholder {
    background: var(--warm-beige);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border: 2px dashed var(--border);
    gap: 12px;
}
.contact-map-placeholder span:first-child {
    font-size: 3rem;
    color: var(--clay);
}
.contact-map-placeholder span:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============ POLICY PAGE ============ */
.policy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 24px;
}
.policy-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.policy-content .updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: block;
}
.policy-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--charcoal);
    margin: 36px 0 12px;
    font-weight: 600;
}
.policy-content p, .policy-content li {
    color: #4a4540;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.97rem;
}
.policy-content ul { padding-left: 20px; }

/* ============ FOOTER ============ */
.site-footer {
    background: #1e1512;
    color: #a09888;
    padding: 64px 24px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 1.15rem; }
.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-beige);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: #857b70;
    font-size: 0.88rem;
    transition: color 0.3s;
    text-decoration: none;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}
.footer-bottom a {
    color: #857b70;
    text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,21,18,0.97);
    border-top: 2px solid var(--gold);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(8px);
}
.cookie-banner.show { display: block; }
.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-inner p {
    color: #c8bfb0;
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}
.cookie-inner a { color: var(--gold-light); }
.cookie-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-accept {
    background: var(--terracotta);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.3s;
}
.cookie-accept:hover { background: var(--terracotta-dark); }
.cookie-reject {
    background: transparent;
    color: #a09888;
    border: 1px solid #4a3f35;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.cookie-reject:hover { border-color: #a09888; color: var(--warm-beige); }

/* ============ PAGE LOADER ============ */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s;
}
#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}
.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid var(--warm-beige);
    border-top-color: var(--terracotta);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; gap: 32px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-cards { display: none; }
    .articles-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .main-nav { display: none; }
    .burger-btn { display: flex; }
    .article-hero-overlay h1 { font-size: 1.8rem; }
    .article-hero-overlay { padding: 28px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-inner { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.7rem; }
    .hero-text h1 { font-size: 1.7rem; }
    .cookie-inner { flex-direction: column; }
}
