/*
Theme Name: Les Merveilleuses Theme
Theme URI: https://lesmerveilleuses-paris.com
Author: Les Merveilleuses Paris
Author URI: https://lesmerveilleuses-paris.com
Description: Thème magazine de mode et bijoux pour lesmerveilleuses-paris.com. Design éditorial haut de gamme, typographie Cormorant Garamond, palette crème / encre / or.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lesmerveilleuses
*/

/* ==========================================================================
   TABLE DES MATIÈRES
   ==========================================================================
   1. VARIABLES CSS
   2. RESET & BASE
   3. LAYOUT GÉNÉRAL
   4. HEADER & NAVIGATION
   5. HERO FRONT PAGE
   6. SECTIONS FRONT PAGE (articles, catégories, édito, newsletter)
   7. ARCHIVES & CATÉGORIES
   8. SINGLE & PAGES
   9. SIDEBAR & SOMMAIRE
   10. BREADCRUMB
   11. PAGINATION
   12. FOOTER
   13. UTILITAIRES & ANIMATIONS
   14. RESPONSIVE
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES CSS
   ========================================================================== */

:root {
    /* Palette Les Merveilleuses */
    --cream:       #F5F0E8;
    --cream-dark:  #EAE3D5;
    --ink:         #1A1614;
    --ink-soft:    #3D3530;
    --gold:        #B8965A;
    --gold-light:  #D4AF72;
    --gold-pale:   #F0E6CC;
    --white:       #FDFAF5;
    --muted:       #8A7F74;

    /* Typographie */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Jost', system-ui, sans-serif;

    /* Espacements */
    --spacing-xs:  0.5rem;
    --spacing-sm:  1rem;
    --spacing-md:  1.5rem;
    --spacing-lg:  2rem;
    --spacing-xl:  3rem;
    --spacing-2xl: 4rem;

    /* Largeurs */
    --max-width: 1200px;
    --max-width-content: 800px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

p { margin-bottom: var(--spacing-sm); }

ul, ol {
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   3. LAYOUT GÉNÉRAL
   ========================================================================== */

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container--narrow { max-width: var(--max-width-content); }

.main-content {
    flex: 1;
    padding: var(--spacing-xl) 0;
    padding-top: 0;
}

/* Compensation header fixe sur les pages intérieures */
body:not(.home) .main-content {
    padding-top: 64px;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(184, 150, 90, 0.25);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 24px rgba(26, 22, 20, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 3rem;
    gap: var(--spacing-lg);
}

/* Logo */
.site-logo a {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3em;
}

.site-logo a em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

/* Logo image : pas de hauteur fixe — laisse WordPress servir la taille native.
   On borne uniquement en hauteur max pour ne pas déborder du header.
   L'image doit être uploadée en haute résolution (SVG de préférence, ou PNG 2x). */
.site-logo img {
    max-height: 48px;
    width: auto;
    height: auto;
    image-rendering: -webkit-optimize-contrast; /* netteté sur Webkit */
    image-rendering: crisp-edges;
}

/* Navigation principale — margin-left: auto la pousse à droite */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    padding: 0;
    margin: 0;
}

.main-nav a {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 0.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 100%;
}

/* Menu mobile toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    flex-direction: column;
    gap: 5px;
    order: 2;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: var(--transition);
}

/* ==========================================================================
   5. HERO FRONT PAGE
   ========================================================================== */

.hero-frontpage {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
}

/* ── Gauche : Article à la une ── */
.hero-left {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14, 10, 8, 0.92) 0%,
        rgba(14, 10, 8, 0.55) 45%,
        rgba(14, 10, 8, 0.25) 100%
    );
}

.hero-tag {
    position: absolute;
    top: calc(64px + 2rem);
    left: 4rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 400;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-issue {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(184,150,90,0.7);
    margin-bottom: 1.25rem;
    font-weight: 400;
    display: block;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-excerpt {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(253, 250, 245, 0.6);
    max-width: 32ch;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(212, 175, 114, 0.55);
    background: transparent;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.hero-cta:hover {
    border-color: var(--gold-light);
    background: rgba(184, 150, 90, 0.12);
    color: var(--gold-light);
}

.hero-cta svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transition: transform var(--transition);
}

.hero-cta:hover svg { transform: translateX(3px); }

/* ── Droite : Édito ── */
.hero-right {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4.5rem;
    padding-top: calc(64px + 5rem);
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 0.5px solid rgba(184,150,90,0.08);
}

.hero-right::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 0.5px solid rgba(184,150,90,0.06);
}

.hero-edito-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-edito-accent-line {
    width: 28px;
    height: 0.5px;
    background: var(--gold);
}

.hero-edito-accent-label {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero-edito-quote {
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}

.hero-edito-quote-mark {
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 0.6;
    color: rgba(184,150,90,0.25);
    display: block;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-edito-quote-text {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 0;
}

.hero-edito-quote-text em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-edito-sep {
    width: 100%;
    height: 0.5px;
    background: rgba(184,150,90,0.15);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.hero-edito-cta-block {
    position: relative;
    z-index: 2;
}

.hero-edito-cta-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(184,150,90,0.5);
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-edito-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    transition: gap var(--transition);
}

.hero-edito-cta:hover { gap: 1.75rem; }

.hero-edito-cta-text {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.hero-edito-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border: 0.5px solid rgba(184,150,90,0.4);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}

.hero-edito-cta:hover .hero-edito-cta-arrow {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-edito-cta-arrow svg {
    width: 16px; height: 16px;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition);
}

.hero-edito-cta:hover .hero-edito-cta-arrow svg {
    stroke: var(--ink);
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(184,150,90,0.35);
    font-weight: 400;
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
}

.scroll-line {
    width: 40px;
    height: 0.5px;
    background: rgba(184,150,90,0.25);
}

/* ==========================================================================
   6. SECTIONS FRONT PAGE
   ========================================================================== */

/* ── Divider or ── */
.lm-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 4rem;
    margin: 5rem 0 4rem;
}

.lm-divider-line {
    flex: 1;
    height: 0.5px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.lm-divider-ornament {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lm-divider-diamond {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.lm-divider-text {
    font-family: var(--serif);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: italic;
    white-space: nowrap;
}

/* ── En-tête de section ── */
.lm-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 4rem;
    margin-bottom: 3rem;
}

.lm-section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.lm-section-title em {
    font-style: italic;
    color: var(--gold);
}

.lm-section-link {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    transition: color var(--transition), gap var(--transition);
}

.lm-section-link:hover { color: var(--gold); gap: 0.75rem; }

/* ── Grille 8 articles ── */
.lm-articles-grid {
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-bottom: 6rem;
}

.lm-article-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
}

.lm-article-card a.card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.lm-article-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lm-article-card:hover .lm-article-bg-img { transform: scale(1.04); }

/* Filtres couleur par catégorie */
.lm-article-filter {
    position: absolute;
    inset: 0;
    transition: opacity var(--transition);
}

.filter-bijoux {
    background: linear-gradient(to top,
        rgba(80, 20, 45, 0.82) 0%,
        rgba(80, 20, 45, 0.35) 50%,
        rgba(80, 20, 45, 0.15) 100%);
}

.filter-mode {
    background: linear-gradient(to top,
        rgba(15, 25, 60, 0.82) 0%,
        rgba(15, 25, 60, 0.35) 50%,
        rgba(15, 25, 60, 0.15) 100%);
}

.filter-accessoires {
    background: linear-gradient(to top,
        rgba(55, 30, 10, 0.85) 0%,
        rgba(55, 30, 10, 0.4) 50%,
        rgba(55, 30, 10, 0.18) 100%);
}

.filter-bienetre {
    background: linear-gradient(to top,
        rgba(20, 45, 35, 0.82) 0%,
        rgba(20, 45, 35, 0.35) 50%,
        rgba(20, 45, 35, 0.15) 100%);
}

.filter-morphologie {
    background: linear-gradient(to top,
        rgba(45, 15, 55, 0.82) 0%,
        rgba(45, 15, 55, 0.35) 50%,
        rgba(45, 15, 55, 0.15) 100%);
}

.filter-default {
    background: linear-gradient(to top,
        rgba(18, 14, 12, 0.88) 0%,
        rgba(18, 14, 12, 0.3) 50%,
        rgba(18, 14, 12, 0.1) 100%);
}

.lm-article-card:hover .lm-article-filter { opacity: 0.88; }

.lm-article-overlay {
    position: absolute;
    inset: 0;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.lm-article-cat {
    font-size: 0.55rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.6rem;
    font-weight: 400;
    display: block;
}

.lm-article-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.lm-article-excerpt {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(253, 250, 245, 0.6);
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.lm-article-card:hover .lm-article-excerpt {
    max-height: 60px;
    opacity: 1;
}

.lm-article-meta {
    font-size: 0.6rem;
    color: rgba(253,250,245,0.4);
    letter-spacing: 0.05em;
}

/* ── Catégories ── */
.lm-categories-section {
    padding: 0 4rem;
    margin-bottom: 7rem;
}

.lm-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.lm-cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 2/3;
    background: var(--ink);
}

.lm-cat-card a.cat-link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.lm-cat-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.lm-cat-card:hover .lm-cat-bg { transform: scale(1.05); }

/* Fond de couleur si pas d'image */
.cat-bg-bijoux       { background: linear-gradient(160deg, #2A1E24 0%, #1A1218 100%); }
.cat-bg-mode         { background: linear-gradient(160deg, #28201A 0%, #1A1410 100%); }
.cat-bg-accessoires  { background: linear-gradient(160deg, #1E2826 0%, #121A18 100%); }
.cat-bg-bienetre     { background: linear-gradient(160deg, #20201A 0%, #141410 100%); }
.cat-bg-morphologie  { background: linear-gradient(160deg, #281E20 0%, #1A1214 100%); }
.cat-bg-default      { background: linear-gradient(160deg, #282020 0%, #1A1414 100%); }

.lm-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,14,12,0.85) 30%, transparent 100%);
    z-index: 2;
}

.lm-cat-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem 1.25rem;
    text-align: center;
    z-index: 3;
}

.lm-cat-icon {
    width: 32px; height: 32px;
    margin: 0 auto 0.75rem;
    opacity: 0.6;
    stroke: var(--gold-light);
    fill: none;
    stroke-width: 1;
    transition: opacity var(--transition);
    display: block;
}

.lm-cat-card:hover .lm-cat-icon { opacity: 1; }

.lm-cat-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.lm-cat-desc {
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(253, 250, 245, 0.5);
    font-weight: 300;
    font-family: var(--sans);
    margin-bottom: 0;
}

.lm-cat-line {
    display: block;
    width: 24px;
    height: 0.5px;
    background: var(--gold);
    margin: 0.75rem auto 0;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.lm-cat-card:hover .lm-cat-line { transform: scaleX(1); }

/* ── Strip édito (articles mis à jour) ── */
.lm-editorial-strip {
    background: var(--ink);
    padding: 5rem 4rem;
    margin-bottom: 6rem;
    display: grid;
    grid-template-columns: 1fr 2px 2fr;
    gap: 4rem;
    align-items: start;
}

.lm-editorial-label {
    font-family: var(--serif);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    display: block;
}

.lm-editorial-quote {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0;
}

.lm-editorial-sep {
    background: rgba(184,150,90,0.25);
    height: 100%;
    min-height: 80px;
    align-self: stretch;
}

.lm-editorial-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.lm-editorial-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    cursor: pointer;
    align-items: start;
}

.lm-editorial-item a {
    display: contents;
    color: inherit;
}

.lm-editorial-thumb {
    width: 64px;
    height: 64px;
    overflow: hidden;
    flex-shrink: 0;
}

.lm-editorial-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.lm-editorial-item:hover .lm-editorial-thumb img { transform: scale(1.08); }

.lm-editorial-item-cat {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-weight: 400;
    display: block;
}

.lm-editorial-item-title {
    font-family: var(--serif);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.lm-editorial-item-meta {
    font-size: 0.58rem;
    color: rgba(253,250,245,0.35);
    margin-bottom: 0;
}

/* ── Newsletter ── */
.lm-newsletter {
    margin: 0 4rem 7rem;
    background: var(--gold-pale);
    border: 0.5px solid rgba(184,150,90,0.3);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lm-newsletter-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    display: block;
}

.lm-newsletter-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.lm-newsletter-title em {
    font-style: italic;
    color: var(--gold);
}

.lm-newsletter-desc {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 0;
}

.lm-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lm-newsletter-input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(184,150,90,0.4);
    padding: 0.75rem 0;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition);
    letter-spacing: 0.02em;
    width: 100%;
}

.lm-newsletter-input::placeholder { color: var(--muted); }
.lm-newsletter-input:focus { border-color: var(--gold); }

.lm-newsletter-btn {
    margin-top: 0.5rem;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    transition: background var(--transition), letter-spacing var(--transition);
    align-self: flex-start;
}

.lm-newsletter-btn:hover {
    background: var(--gold);
    letter-spacing: 0.28em;
}

.lm-newsletter-note {
    font-size: 0.65rem;
    color: var(--muted);
    margin-top: 0;
}

/* ==========================================================================
   7. ARCHIVES & CATÉGORIES
   ========================================================================== */

.archive-header {
    padding: var(--spacing-2xl) 4rem var(--spacing-xl);
    background: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
}

.archive-header__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,10,8,0.85) 0%, rgba(14,10,8,0.4) 100%);
}

.archive-header__content {
    position: relative;
    z-index: 2;
}

.archive-header__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.archive-header__title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.archive-header__description {
    color: rgba(253,250,245,0.6);
    font-size: 0.9rem;
    max-width: 55ch;
    margin-bottom: 0;
}

.archive-posts {
    padding: var(--spacing-xl) 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

/* ==========================================================================
   8. SINGLE & PAGES
   ========================================================================== */

/* ── Header article : fond sombre pleine largeur, 2/3 méta | 1/3 image ── */
.article-header {
    background: var(--cream-dark);
    padding: 5rem 4rem 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 0.5px solid rgba(184,150,90,0.2);
}

/* Halo doré décoratif en arrière-plan */
.article-header::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(184,150,90,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.article-header__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-header__cat {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Petite ligne avant la catégorie */
.article-header__cat::before {
    content: '';
    display: block;
    width: 20px;
    height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.article-header__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

/* Ornement entre le titre et les méta */
.article-header__ornament {
    display: block;
    width: 40px;
    height: 0.5px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 1.5rem;
}

.article-header__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 300;
}

.article-header__author,
.article-header__date,
.article-header__update,
.article-header__reading {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.article-header__author svg,
.article-header__date svg,
.article-header__reading svg {
    width: 13px; height: 13px;
    stroke: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
    fill: none;
}

.article-header__update {
    color: var(--gold);
    font-style: italic;
}

.article-header__sep { color: rgba(184,150,90,0.3); }

/* Image à la une : ombre solide décalée + profondeur */
.article-header__thumbnail {
    position: relative;
    z-index: 1;
}

.article-header__thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    translate: 10px 10px;
    background: var(--gold);
    opacity: 0.35;
    z-index: -1;
}

.article-header__thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    translate: 18px 18px;
    background: rgba(26,22,20,0.15);
    z-index: -2;
}

.article-header__thumbnail img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* ── Introduction pleine largeur — fond crème, pas de transition sombre ── */
.article-intro-wrap {
    background: var(--cream);
    padding: 0 4rem;
}

/* ── Introduction pleine largeur ── */
.article-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 0 4rem;
    border-bottom: 0.5px solid rgba(184,150,90,0.2);
    position: relative;
}

/* Guillemet décoratif sur l'intro */
.article-intro::before {
    content: '"';
    position: absolute;
    top: 1.5rem; left: -1rem;
    font-family: var(--serif);
    font-size: 6rem;
    line-height: 1;
    color: rgba(184,150,90,0.12);
    font-style: italic;
    pointer-events: none;
}

.article-intro__media {
    margin-bottom: 2.5rem;
}

/* Pleine largeur pour tous les médias dans l'intro */
.article-intro__media > *,
.article-intro__media figure,
.article-intro__media .wp-block-embed,
.article-intro__media .wp-block-table {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Vidéo embed dans l'intro — ratio 16/9 forcé */
.article-intro__media .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25% !important; /* override inline style WordPress */
    height: 0 !important;
    overflow: hidden;
}

.article-intro__media .wp-block-embed__wrapper iframe,
.article-intro__media iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset;
}

.article-intro__text {
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--ink);
    font-weight: 400;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.article-intro__text p { margin-bottom: var(--spacing-md); }
.article-intro__text p:last-child { margin-bottom: 0; }

/* ── Corps : sommaire sticky | texte ── */
.article-body-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4rem 6rem;
    align-items: start;
}

/* ── Sommaire sticky ── */
.article-toc {
    position: sticky;
    top: calc(64px + 2rem);
    max-height: calc(100vh - 64px - 4rem);
    overflow-y: auto;
    scrollbar-width: none;
    padding: 1.5rem;
    background: rgba(240,230,204,0.3);
    border: 0.5px solid rgba(184,150,90,0.15);
}

.article-toc::-webkit-scrollbar { display: none; }

.toc__title {
    font-size: 0.55rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 0.5px solid rgba(184,150,90,0.25);
}

.toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc__item { margin-bottom: 0; }

.toc__link {
    display: block;
    font-size: 0.76rem;
    line-height: 1.4;
    color: var(--muted);
    padding: 0.5rem 0 0.5rem 0.75rem;
    border-left: 1.5px solid rgba(184,150,90,0.15);
    transition: color var(--transition), border-color var(--transition), padding-left var(--transition);
    font-weight: 300;
}

.toc__link:hover { padding-left: 1rem; color: var(--ink-soft); border-left-color: rgba(184,150,90,0.4); }
.toc__link.active { color: var(--gold); border-left-color: var(--gold); padding-left: 1rem; font-weight: 400; }

/* Sommaire mobile */
.toc-mobile {
    display: none;
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-md);
    z-index: 1100;
}

.toc-mobile__toggle {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--sans);
}

.toc-mobile__content {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    background: var(--ink);
    padding: var(--spacing-md);
    min-width: 260px;
    max-height: 60vh;
    overflow-y: auto;
    border: 0.5px solid rgba(184,150,90,0.2);
}

.toc-mobile__content.active { display: block; }

/* ── Corps de l'article (sections H2+) ── */
.article-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

/* H2 avec accent doré à gauche et fond très léger */
.article-body h2 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--ink);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    line-height: 1.15;
    background: linear-gradient(to right, rgba(240,230,204,0.5), transparent);
    border-left: 2px solid var(--gold);
    position: relative;
}

.article-body h2:first-child { margin-top: 0; }

/* H3 avec petit tiret doré */
.article-body h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.article-body h3::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
    position: relative;
    top: -0.1em;
}

.article-body p { margin-bottom: 1.35rem; }
.article-body p:last-child { margin-bottom: 0; }

.article-body strong { font-weight: 500; color: var(--ink); }

.article-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(184,150,90,0.35);
    transition: text-decoration-color var(--transition), color var(--transition);
}

.article-body a:hover {
    color: var(--ink);
    text-decoration-color: var(--ink);
}

.article-body ul,
.article-body ol {
    padding-left: 1.25rem;
    margin-bottom: 1.35rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* Puces personnalisées */
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker {
    color: var(--gold);
    font-family: var(--serif);
    font-style: italic;
}

/* Blockquote éditorial */
.article-body blockquote {
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 2.5rem;
    background: var(--ink);
    border-left: 3px solid var(--gold);
    position: relative;
}

.article-body blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5rem; left: 1rem;
    font-family: var(--serif);
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(184,150,90,0.3);
    font-style: italic;
}

.article-body blockquote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.article-body img,
.article-body figure {
    max-width: 100%;
    margin: 2.5rem 0;
}

.article-body figure img { width: 100%; }

.article-body figcaption {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.6rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Tableaux */
/* Tableaux — sélecteurs Gutenberg inclus */
.article-body table,
.article-body .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.88rem;
    border: 0.5px solid rgba(184,150,90,0.2);
}

.article-body .wp-block-table {
    margin: 2.5rem 0;
    overflow-x: auto; /* tableau responsive */
}

.article-body .wp-block-table figure,
.article-body .wp-block-table figcaption {
    margin: 0;
}

.article-body thead,
.article-body .wp-block-table thead {
    background: var(--ink);
}

.article-body th,
.article-body .wp-block-table th {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    padding: 1rem 1.25rem;
    text-align: left;
    border-right: 0.5px solid rgba(184,150,90,0.15);
}

.article-body th:last-child,
.article-body .wp-block-table th:last-child { border-right: none; }

.article-body td,
.article-body .wp-block-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 0.5px solid rgba(184,150,90,0.12);
    border-right: 0.5px solid rgba(184,150,90,0.08);
    vertical-align: top;
    line-height: 1.6;
    color: var(--ink-soft);
}

.article-body td:last-child,
.article-body .wp-block-table td:last-child { border-right: none; }

.article-body tr:last-child td,
.article-body .wp-block-table tr:last-child td { border-bottom: none; }

/* Lignes alternées */
.article-body tbody tr:nth-child(odd) td { background: rgba(245,240,232,0.6); }
.article-body tbody tr:nth-child(even) td { background: var(--white); }
.article-body .wp-block-table tbody tr:nth-child(odd) td { background: rgba(245,240,232,0.6); }
.article-body .wp-block-table tbody tr:nth-child(even) td { background: var(--white); }

/* Hover ligne */
.article-body tbody tr:hover td,
.article-body .wp-block-table tbody tr:hover td {
    background: rgba(184,150,90,0.06);
}

.article-body iframe,
.article-body video {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: none;
    margin: 2.5rem 0;
    display: block;
}

/* Wrapper Gutenberg embed — override le padding-bottom inline de WordPress */
.article-body .wp-block-embed {
    margin: 2.5rem 0;
}

.article-body .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25% !important;
    height: 0 !important;
    overflow: hidden;
}

.article-body .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    aspect-ratio: unset;
}

/* Pages statiques */
.page-simple {
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
}

.page-simple__header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 0.5px solid rgba(184,150,90,0.2);
}

.page-simple__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 300;
}

.page-simple__content {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================================================
   10. BREADCRUMB
   ========================================================================== */

.breadcrumb {
    padding: var(--spacing-sm) 4rem;
    font-size: 0.75rem;
    color: var(--muted);
    border-bottom: 0.5px solid rgba(184,150,90,0.15);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '›';
    color: rgba(184,150,90,0.4);
}

.breadcrumb__link { color: var(--muted); }
.breadcrumb__link:hover { color: var(--gold); }
.breadcrumb__current { color: var(--ink-soft); }

/* ==========================================================================
   11. PAGINATION
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 0.5px solid rgba(184,150,90,0.15);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 var(--spacing-sm);
    font-size: 0.8rem;
    font-family: var(--sans);
    transition: all var(--transition);
}

.pagination a {
    color: var(--muted);
    border: 0.5px solid transparent;
}

.pagination a:hover {
    color: var(--gold);
    border-color: rgba(184,150,90,0.3);
}

.pagination .current {
    color: var(--white);
    background: var(--ink);
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.site-footer {
    background: var(--ink);
    padding: 5rem 4rem 3rem;
    color: rgba(253,250,245,0.5);
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand em {
    color: var(--gold-light);
    font-style: italic;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.75;
    max-width: 26ch;
    margin-bottom: 0;
}

.footer-col-title {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(253,250,245,0.45);
    font-weight: 300;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 0.5px solid rgba(253,250,245,0.08);
    font-size: 0.7rem;
}

.footer-bottom-tagline {
    font-style: italic;
    font-family: var(--serif);
    font-size: 0.85rem;
    color: rgba(212,175,114,0.4);
}

/* ==========================================================================
   13. UTILITAIRES & ANIMATIONS
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Animations hero */
@keyframes lmFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lmFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero-tag        { animation: lmFadeIn  0.8s ease 0.2s both; }
.hero-issue      { animation: lmFadeUp  0.8s ease 0.4s both; }
.hero-title      { animation: lmFadeUp  0.9s ease 0.5s both; }
.hero-excerpt    { animation: lmFadeUp  0.9s ease 0.65s both; }
.hero-cta        { animation: lmFadeUp  0.9s ease 0.8s both; }

.hero-edito-accent    { animation: lmFadeUp 0.9s ease 0.6s both; }
.hero-edito-quote     { animation: lmFadeUp 0.9s ease 0.75s both; }
.hero-edito-sep       { animation: lmFadeIn 0.8s ease 0.9s both; }
.hero-edito-cta-block { animation: lmFadeUp 0.9s ease 1s both; }
.hero-scroll-hint     { animation: lmFadeIn 0.8s ease 1.1s both; }

/* Badge "nouveau" */
.badge-new {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    font-weight: 400;
    font-family: var(--sans);
    z-index: 5;
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .lm-articles-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
    .hero-frontpage { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { min-height: 70vh; }
    .hero-right { padding: 4rem 3rem; }
    .article-header { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem 2.5rem; }
    .article-header__thumbnail { order: -1; }
    .article-header__thumbnail img { aspect-ratio: 16/9; }
    .article-intro { padding: 0 1.5rem 2.5rem; }
    .article-body-layout { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 4rem; }
    .article-toc { display: none; }
    .toc-mobile { display: block; }
    .lm-editorial-strip { grid-template-columns: 1fr; }
    .lm-editorial-sep { display: none; }
    .lm-newsletter { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 1.5rem; }
    .main-nav { display: none; }
    .menu-toggle { display: flex; }

    #main-nav.active {
        display: flex;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--ink);
        padding: 2rem;
        flex-direction: column;
        gap: 0;
    }

    #main-nav.active ul { flex-direction: column; gap: 0; }

    #main-nav.active a {
        color: var(--white);
        display: block;
        padding: 1rem 0;
        border-bottom: 0.5px solid rgba(184,150,90,0.1);
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .lm-divider,
    .lm-section-header,
    .lm-articles-grid,
    .lm-categories-section,
    .lm-newsletter { padding-left: 1.5rem; padding-right: 1.5rem; }

    .lm-articles-grid { grid-template-columns: 1fr; }
    .lm-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .lm-editorial-strip { padding: 3rem 1.5rem; }
    .lm-editorial-articles { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .site-footer { padding: 3rem 1.5rem 2rem; }
    .breadcrumb { padding: var(--spacing-sm) 1.5rem; }
    .archive-header { padding: 3rem 1.5rem 2rem; }
    .archive-posts { padding: 2rem 1.5rem; grid-template-columns: 1fr; }
}
