/* ============================================================
   ZeNomads — Archetype H : Immersif sombre
   Variables — Reset — Layout — Header — Hero — Feed
   Persona — Categories — Footer — Single — Archive — Pages
============================================================ */

/* ---- Variables ---- */
:root {
    --zn-base:        #06090E;
    --zn-surface:     #0D1117;
    --zn-surface2:    #121820;
    --zn-primary:     #00C6FF;
    --zn-primary-dim: rgba(0, 198, 255, 0.10);
    --zn-accent:      #8B5CF6;
    --zn-accent-dim:  rgba(139, 92, 246, 0.10);
    --zn-cta:         #F97316;
    --zn-cta-hover:   #EA6A0A;
    --zn-text:        #E8EDF5;
    --zn-muted:       #7B8A9A;
    --zn-border:      rgba(255, 255, 255, 0.07);
    --zn-glass:       rgba(255, 255, 255, 0.04);
    --zn-glass-b:     rgba(255, 255, 255, 0.09);
    --hh:             72px;
    --radius:         14px;
    --container:      1200px;
    --font-head:      'Syne', sans-serif;
    --font-body:      'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--zn-base);
    color: var(--zn-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Container ---- */
.zn-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ====================================================
   HEADER
==================================================== */
.zn-site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--hh);
    display: flex;
    align-items: center;
    padding: 0 32px;
    transition: background 0.3s, box-shadow 0.3s;
}
.zn-site-header.scrolled {
    background: rgba(6, 9, 14, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--zn-border);
}
.zn-header-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.zn-logo { display: flex; align-items: center; color: var(--zn-text); }
.zn-logo svg { width: 160px; height: 34px; }

/* Nav */
.zn-site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.zn-site-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zn-text);
    transition: color 0.2s;
}
.zn-site-nav a:hover { color: var(--zn-primary); }
.zn-site-nav .menu-contact {
    padding: 8px 18px;
    border: 1px solid var(--zn-primary);
    border-radius: 40px;
    color: var(--zn-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.zn-site-nav .menu-contact:hover {
    background: var(--zn-primary);
    color: var(--zn-base);
}

/* Burger */
.zn-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 201;
}
.zn-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--zn-text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.zn-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.zn-nav-toggle.active span:nth-child(2) { opacity: 0; }
.zn-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav close button (mobile) */
.zn-nav-close {
    display: none;
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--zn-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile logo inside nav */
.zn-nav-logo { display: none; }

/* ====================================================
   HERO — HOMEPAGE (Archetype H)
==================================================== */
.zn-hero-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}
.zn-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.zn-hero-wrap:hover .zn-hero-bg { transform: scale(1); }
.zn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 9, 14, 0.35) 0%,
        rgba(6, 9, 14, 0.55) 40%,
        rgba(6, 9, 14, 0.90) 100%
    );
}
.zn-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--hh) + 60px) 24px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.zn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 40px;
    background: var(--zn-primary-dim);
    border: 1px solid rgba(0, 198, 255, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zn-primary);
    margin-bottom: 24px;
}
.zn-hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--zn-primary);
    box-shadow: 0 0 8px var(--zn-primary);
}
.zn-hero-wrap h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--zn-text);
    max-width: 760px;
    margin-bottom: 20px;
}
.zn-hero-wrap h1 em {
    font-style: normal;
    color: var(--zn-primary);
}
.zn-hero-sub {
    font-size: 1.0625rem;
    color: rgba(232, 237, 245, 0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.zn-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--zn-cta);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 40px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.zn-btn-cta:hover {
    background: var(--zn-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.zn-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--zn-border);
    width: 100%;
}
.zn-stat-item { display: flex; flex-direction: column; gap: 4px; }
.zn-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--zn-text);
    line-height: 1;
}
.zn-stat-num .zn-counter { display: inline-block; }
.zn-stat-label {
    font-size: 0.75rem;
    color: var(--zn-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ====================================================
   FEED ARTICLES (glassmorphism cards)
==================================================== */
.zn-feed-section {
    background: var(--zn-base);
    padding: 96px 0;
}
.zn-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 48px;
}
.zn-section-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--zn-text);
}
.zn-section-head .zn-count {
    font-size: 0.8125rem;
    color: var(--zn-muted);
    font-weight: 500;
}

/* Masonry grid */
.zn-masonry {
    columns: 3;
    column-gap: 24px;
}
.zn-post-tile {
    break-inside: avoid;
    margin-bottom: 24px;
    background: var(--zn-glass);
    border: 1px solid var(--zn-glass-b);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}
.zn-post-tile:hover {
    border-color: rgba(0, 198, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 198, 255, 0.1);
}
.zn-post-tile a { display: block; }
.zn-tile-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.4s;
}
.zn-post-tile:hover .zn-tile-img { transform: scale(1.03); }
.zn-tile-body { padding: 20px; }
.zn-tile-cat {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zn-primary);
    margin-bottom: 10px;
}
.zn-post-tile h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--zn-text);
    margin-bottom: 12px;
    transition: color 0.2s;
}
.zn-post-tile:hover h3 { color: var(--zn-primary); }
.zn-tile-meta {
    font-size: 0.75rem;
    color: var(--zn-muted);
    display: flex;
    gap: 12px;
}

/* ====================================================
   PERSONA BAND (Archetype H — sombre + halo)
==================================================== */
.zn-persona-band {
    background: var(--zn-surface);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.zn-persona-band::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.zn-persona-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 72px;
}
.zn-persona-photo-wrap {
    flex-shrink: 0;
    position: relative;
    width: 280px;
}
.zn-persona-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
}
.zn-persona-photo-wrap img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--zn-glass-b);
    position: relative;
    z-index: 1;
}
.zn-persona-content { flex: 1; }
.zn-persona-role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zn-accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zn-persona-role::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--zn-accent);
}
.zn-persona-content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--zn-text);
    line-height: 1.15;
    margin-bottom: 20px;
}
.zn-persona-bio {
    color: rgba(232, 237, 245, 0.72);
    line-height: 1.75;
    font-size: 1rem;
    max-width: 520px;
}
.zn-persona-bio p { margin-bottom: 12px; }
.zn-persona-bio p:last-child { margin-bottom: 0; }
.zn-persona-bio ul { padding-left: 0; margin-bottom: 12px; }
.zn-persona-bio li { padding-left: 20px; position: relative; margin-bottom: 6px; }
.zn-persona-bio li::before { content: '—'; position: absolute; left: 0; color: var(--zn-primary); }
.zn-persona-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 28px;
    border: 1px solid var(--zn-accent);
    border-radius: 40px;
    color: var(--zn-accent);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.zn-persona-cta:hover { background: var(--zn-accent); color: #fff; }

/* ====================================================
   CATEGORIES — néons sur fond noir
==================================================== */
.zn-cat-section {
    background: var(--zn-base);
    padding: 96px 0;
}
.zn-cat-section h2 {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--zn-text);
    margin-bottom: 48px;
    text-align: center;
}
.zn-cat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.zn-cat-item {
    background: var(--zn-surface);
    border: 1px solid var(--zn-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    cursor: pointer;
}
.zn-cat-item:hover {
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 24px rgba(0, 198, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}
.zn-cat-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zn-primary-dim);
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 12px;
    color: var(--zn-primary);
    flex-shrink: 0;
}
.zn-cat-icon svg { width: 22px; height: 22px; }
.zn-cat-name {
    font-family: var(--font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--zn-text);
}
.zn-cat-desc {
    font-size: 0.8125rem;
    color: var(--zn-muted);
    line-height: 1.55;
    flex: 1;
}
.zn-cat-count {
    font-size: 0.75rem;
    color: var(--zn-primary);
    font-weight: 600;
    font-family: var(--font-head);
}

/* Hover accent variant */
.zn-cat-item:nth-child(2):hover { border-color: rgba(139, 92, 246, 0.3); box-shadow: 0 0 24px rgba(139, 92, 246, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3); }
.zn-cat-item:nth-child(2) .zn-cat-icon { background: var(--zn-accent-dim); border-color: rgba(139, 92, 246, 0.2); color: var(--zn-accent); }
.zn-cat-item:nth-child(2) .zn-cat-count { color: var(--zn-accent); }
.zn-cat-item:nth-child(3):hover { border-color: rgba(249, 115, 22, 0.3); box-shadow: 0 0 24px rgba(249, 115, 22, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3); }
.zn-cat-item:nth-child(3) .zn-cat-icon { background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.2); color: var(--zn-cta); }
.zn-cat-item:nth-child(3) .zn-cat-count { color: var(--zn-cta); }
.zn-cat-item:nth-child(4):hover { border-color: rgba(52, 211, 153, 0.3); box-shadow: 0 0 24px rgba(52, 211, 153, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3); }
.zn-cat-item:nth-child(4) .zn-cat-icon { background: rgba(52, 211, 153, 0.08); border-color: rgba(52, 211, 153, 0.2); color: #34D399; }
.zn-cat-item:nth-child(4) .zn-cat-count { color: #34D399; }

/* ====================================================
   FOOTER — sombre 3 colonnes + hover coloré
==================================================== */
.zn-site-footer {
    background: var(--zn-surface);
    border-top: 1px solid var(--zn-border);
    padding: 72px 0 0;
}
.zn-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--zn-border);
}
.zn-footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zn-muted);
    margin-bottom: 20px;
}
.zn-footer-logo { margin-bottom: 16px; }
.zn-footer-logo svg { width: 140px; height: 30px; }
.zn-footer-desc {
    font-size: 0.875rem;
    color: var(--zn-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.zn-footer-copy {
    font-size: 0.75rem;
    color: rgba(123, 138, 154, 0.6);
}
.zn-footer-links { display: flex; flex-direction: column; gap: 10px; }
.zn-footer-links a {
    font-size: 0.875rem;
    color: var(--zn-muted);
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.zn-footer-links a:hover { color: var(--zn-primary); }
.zn-footer-links a::before { content: '→'; font-size: 0.75rem; opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; }
.zn-footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.zn-footer-recent { display: flex; flex-direction: column; gap: 16px; }
.zn-footer-post { display: flex; gap: 12px; cursor: pointer; }
.zn-footer-post-img {
    width: 56px; height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.zn-footer-post-info { display: flex; flex-direction: column; gap: 4px; }
.zn-footer-post-info a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--zn-text);
    line-height: 1.4;
    transition: color 0.2s;
}
.zn-footer-post-info a:hover { color: var(--zn-primary); }
.zn-footer-post-date { font-size: 0.6875rem; color: var(--zn-muted); }
.zn-footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.zn-footer-bottom p { font-size: 0.8125rem; color: rgba(123, 138, 154, 0.5); }

/* ====================================================
   SINGLE ARTICLE
==================================================== */
.zn-post-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.zn-post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.zn-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,9,14,0.25) 0%, rgba(6,9,14,0.85) 100%);
}
.zn-post-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: calc(var(--hh) + 60px) 24px 56px;
}
.zn-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(232, 237, 245, 0.5);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.zn-breadcrumb a { color: rgba(232, 237, 245, 0.5); transition: color 0.2s; }
.zn-breadcrumb a:hover { color: var(--zn-text); }
.zn-bc-sep { opacity: 0.4; }
.zn-post-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--zn-primary-dim);
    border: 1px solid rgba(0, 198, 255, 0.2);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--zn-primary);
    margin-bottom: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.zn-post-cat-badge:hover { background: rgba(0, 198, 255, 0.2); }
.zn-post-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--zn-text);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.zn-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: rgba(232, 237, 245, 0.55);
}
.zn-post-meta .sep { opacity: 0.3; }
.zn-post-stars { margin-top: 12px; }

/* Article body */
.zn-post-body {
    background: var(--zn-base);
    padding: 64px 0;
}
.zn-post-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}
.zn-summary-block {
    background: var(--zn-surface);
    border: 1px solid var(--zn-glass-b);
    border-left: 3px solid var(--zn-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin-bottom: 40px;
    font-size: 0.9375rem;
    color: rgba(232, 237, 245, 0.8);
}
.zn-featured-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(232, 237, 245, 0.85);
}
.entry-content h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--zn-text); margin: 40px 0 16px; }
.entry-content h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--zn-text); margin: 32px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--zn-primary); text-decoration: underline; text-decoration-color: rgba(0,198,255,0.3); }
.entry-content a:hover { text-decoration-color: var(--zn-primary); }
.entry-content blockquote { border-left: 3px solid var(--zn-accent); padding: 16px 24px; margin: 32px 0; background: var(--zn-surface); border-radius: 0 8px 8px 0; color: rgba(232,237,245,0.7); font-style: italic; }
.entry-content img { border-radius: 12px; margin: 24px 0; }

/* Tags */
.zn-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--zn-border);
}
.zn-post-tags a {
    padding: 6px 14px;
    border: 1px solid var(--zn-border);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--zn-muted);
    transition: border-color 0.2s, color 0.2s;
}
.zn-post-tags a:hover { border-color: var(--zn-primary); color: var(--zn-primary); }

/* Author block */
.zn-author-box {
    background: var(--zn-surface);
    border: 1px solid var(--zn-glass-b);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 48px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.zn-author-photo {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid var(--zn-glass-b);
}
.zn-author-info { flex: 1; }
.zn-author-info h2 {
    font-family: var(--font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--zn-text);
    margin-bottom: 4px;
}
.zn-author-role {
    font-size: 0.75rem;
    color: var(--zn-accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.zn-author-bio {
    font-size: 0.9rem;
    color: var(--zn-muted);
    line-height: 1.65;
}
.zn-author-bio p { margin-bottom: 8px; }

/* Related */
.zn-related {
    padding: 64px 0;
    background: var(--zn-surface);
}
.zn-related-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.zn-related h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zn-text);
    margin-bottom: 32px;
}
.zn-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.zn-related-item {
    background: var(--zn-glass);
    border: 1px solid var(--zn-glass-b);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}
.zn-related-item:hover { border-color: rgba(0,198,255,0.25); transform: translateY(-3px); }
.zn-related-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.zn-related-item-body { padding: 16px; }
.zn-related-item h3 { font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600; color: var(--zn-text); line-height: 1.4; transition: color 0.2s; }
.zn-related-item:hover h3 { color: var(--zn-primary); }

/* ====================================================
   ARCHIVE
==================================================== */
.zn-archive-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
}
.zn-archive-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}
.zn-archive-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,9,14,0.65);
}
.zn-archive-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--hh) + 48px) 24px 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zn-archive-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.zn-archive-hero-desc { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1rem; line-height: 1.7; }
.zn-archive-hero-desc p { color: rgba(255,255,255,0.7) !important; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.zn-archive-count {
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--zn-primary);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Archive grid */
.zn-archive-section {
    background: var(--zn-base);
    padding: 80px 0;
}
.zn-archive-section h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zn-text);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--zn-border);
}
.zn-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.zn-archive-item {
    background: var(--zn-glass);
    border: 1px solid var(--zn-glass-b);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    cursor: pointer;
}
.zn-archive-item:hover { border-color: rgba(0,198,255,0.25); transform: translateY(-4px); }
.zn-archive-item a { display: block; }
.zn-archive-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.35s; }
.zn-archive-item:hover img { transform: scale(1.03); }
.zn-archive-item-body { padding: 20px; }
.zn-archive-item h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--zn-text); line-height: 1.4; margin-bottom: 10px; transition: color 0.2s; }
.zn-archive-item:hover h3 { color: var(--zn-primary); }
.zn-archive-item-meta { font-size: 0.75rem; color: var(--zn-muted); }

/* SEO block */
.zn-seo-zone {
    background: var(--zn-surface);
    padding: 72px 0;
}
.zn-seo-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: center;
}
.zn-seo-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--zn-text);
    margin-bottom: 16px;
}
.zn-seo-text p { font-size: 0.9375rem; color: var(--zn-muted); line-height: 1.75; margin-bottom: 16px; }
.zn-seo-text ul { margin-bottom: 16px; }
.zn-seo-text li { font-size: 0.9rem; color: var(--zn-muted); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.zn-arrow { color: var(--zn-primary); font-family: monospace; flex-shrink: 0; }
.zn-seo-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
    transition: transform 0.35s;
    cursor: pointer;
}
.zn-seo-img img:hover { transform: scale(1.02); }

/* ====================================================
   PAGE HERO (contact, mentions, plan)
==================================================== */
.zn-page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.zn-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}
.zn-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,9,14,0.7);
}
.zn-page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--hh) + 48px) 24px 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zn-page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.zn-page-body {
    background: var(--zn-base);
    padding: 80px 0;
}

/* ====================================================
   CONTACT
==================================================== */
.zn-contact-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.zn-contact-info h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--zn-text); margin-bottom: 16px; }
.zn-contact-info p { font-size: 0.9375rem; color: var(--zn-muted); line-height: 1.75; margin-bottom: 24px; }
.zn-contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.875rem; color: var(--zn-muted); }
.zn-contact-detail svg { width: 18px; height: 18px; color: var(--zn-primary); flex-shrink: 0; margin-top: 2px; }
.zn-contact-form-wrap {
    background: var(--zn-surface);
    border: 1px solid var(--zn-glass-b);
    border-radius: 20px;
    padding: 40px;
}

/* CF7 */
.wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.wpcf7-form p { display: flex; flex-direction: column; gap: 7px; margin: 0 0 20px; }
.wpcf7-form br { display: none; }
.wpcf7-form label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--zn-muted); display: flex; flex-direction: column; gap: 7px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--zn-surface2);
    border: 1px solid var(--zn-border);
    border-radius: 10px;
    color: var(--zn-text);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--zn-primary); box-shadow: 0 0 0 3px rgba(0,198,255,0.1); }
.wpcf7-form textarea { resize: vertical; min-height: 130px; }
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--zn-cta);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--zn-cta-hover); transform: translateY(-2px); }

/* ====================================================
   MENTIONS LÉGALES
==================================================== */
.zn-legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(232, 237, 245, 0.8);
}
.zn-legal-content h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--zn-text); margin: 40px 0 12px; }
.zn-legal-content p { margin-bottom: 16px; }
.zn-legal-content a { color: var(--zn-primary); }

/* ====================================================
   PLAN DU SITE
==================================================== */
.zn-sitemap-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.zn-sitemap-cat { margin-bottom: 48px; }
.zn-sitemap-cat h2 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--zn-primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--zn-border); }
.zn-sitemap-cat ul { display: flex; flex-direction: column; gap: 8px; }
.zn-sitemap-cat li a { font-size: 0.9375rem; color: var(--zn-muted); transition: color 0.2s; }
.zn-sitemap-cat li a:hover { color: var(--zn-text); }

/* ====================================================
   UTILITIES
==================================================== */
.zn-main { background: var(--zn-base); min-height: 80vh; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1100px) {
    .zn-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .zn-cat-strip { grid-template-columns: repeat(2, 1fr); }
    .zn-seo-inner { grid-template-columns: 1fr; }
    .zn-seo-img { order: -1; }
    .zn-seo-img img { height: 240px; }
}

@media (max-width: 900px) {
    .zn-masonry { columns: 2; }
    .zn-archive-grid { grid-template-columns: repeat(2, 1fr); }
    .zn-related-grid { grid-template-columns: repeat(2, 1fr); }
    .zn-persona-inner { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
    .zn-persona-role { justify-content: center; }
    .zn-persona-role::before { display: none; }
    .zn-persona-bio { max-width: 100%; }
    .zn-contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .zn-site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .zn-nav-toggle { display: flex; }
    .zn-site-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--zn-surface);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 40px 40px;
        gap: 8px;
        z-index: 200;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .zn-site-nav.open { transform: translateX(0); }
    .zn-site-nav a {
        font-size: 1.25rem;
        letter-spacing: 0.04em;
        padding: 12px 0;
        width: 100%;
        color: var(--zn-muted) !important;
    }
    .zn-site-nav a:hover { color: var(--zn-text) !important; }
    .zn-site-nav .menu-contact {
        padding: 14px 28px;
        margin-top: 16px;
        border-radius: 40px;
        color: var(--zn-primary) !important;
    }
    .zn-nav-close { display: flex; }
    .zn-nav-logo { display: block; margin-bottom: 40px; }
    .zn-hero-stats { gap: 24px; flex-wrap: wrap; }
    .zn-masonry { columns: 1; }
    .zn-cat-strip { grid-template-columns: 1fr; }
    .zn-archive-grid { grid-template-columns: 1fr; }
    .zn-related-grid { grid-template-columns: 1fr; }
    .zn-footer-grid { grid-template-columns: 1fr; }
    .zn-author-box { flex-direction: column; }
    .zn-persona-photo-wrap { width: 200px; }
    .zn-persona-photo-wrap img { width: 200px; height: 200px; }
    .zn-contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
    .zn-hero-stats { gap: 20px; }
    .zn-stat-num { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
