/*
Theme Name: Meubles Woodstock
Description: Le Cahier Woodstock — Archetype H, dark editorial / journal d'atelier
Version: 2.0.0
Text Domain: meubles-woodstock
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
    --ws-ink:     #0E0B08;
    --ws-ember:   #E8622A;
    --ws-wood:    #D4A574;
    --ws-text:    #F2EDE6;
    --ws-surface: #1A1510;
    --ws-border:  #2E261E;
    --ws-muted:   #7A6A58;
    --ws-hh:      72px;
    --ws-trans:   220ms ease;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    background: var(--ws-ink);
    color: var(--ws-text);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ws-trans); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.ws-wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER — ws-bar
   ============================================================ */
.ws-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--ws-hh);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 32px;
    transition: background var(--ws-trans), box-shadow var(--ws-trans);
}
.ws-bar.ws-bar--solid {
    background: rgba(14,11,8,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--ws-border);
}
.ws-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}
.ws-logo { display: block; line-height: 1; color: var(--ws-text); }
.ws-logo svg { display: block; }

.ws-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.ws-menu a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242,237,230,0.6);
    transition: color var(--ws-trans);
}
.ws-menu a:hover { color: var(--ws-text); }
.ws-menu-contact a {
    padding: 7px 16px;
    border: 1px solid rgba(232,98,42,0.45);
    color: var(--ws-ember) !important;
    transition: background var(--ws-trans), color var(--ws-trans), border-color var(--ws-trans);
}
.ws-menu-contact a:hover {
    background: var(--ws-ember);
    color: var(--ws-ink) !important;
    border-color: var(--ws-ember);
}

.ws-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 201;
}
.ws-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ws-text);
    transition: transform var(--ws-trans), opacity var(--ws-trans);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.ws-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(14,11,8,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    text-align: center;
}
.ws-nav.ws-nav--open { display: flex; }
.ws-nav-close {
    position: absolute;
    top: 22px; right: 26px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ws-muted);
    font-size: 1.4rem;
    line-height: 1;
}
.ws-nav-logo { display: block; margin-bottom: 16px; }
.ws-nav a {
    font-family: 'Spectral', serif;
    font-size: 1.9rem;
    font-style: italic;
    color: rgba(242,237,230,0.85);
}
.ws-nav a:hover { color: var(--ws-ember); }
.ws-nav .ws-nav-contact a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 28px;
    border: 1px solid var(--ws-ember);
    color: var(--ws-ember);
}

/* ============================================================
   OVERTURE — Hero éditorial typographique
   ============================================================ */
.ws-overture {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--ws-hh) + 80px) 0 80px;
    background: var(--ws-ink);
    overflow: hidden;
}
.ws-overture::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(232,98,42,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(212,165,116,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ws-overture-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* En-tête de cahier : N° / Mois année / —— / mention */
.ws-issue {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-muted);
}
.ws-issue-num {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ws-ember);
    letter-spacing: 0;
    text-transform: none;
}
.ws-issue-rule {
    flex: 1;
    height: 1px;
    background: var(--ws-border);
}
.ws-issue-mention {
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.05em;
    color: var(--ws-muted);
    font-family: 'Spectral', serif;
    font-size: 0.92rem;
}

/* Titre éditorial massif */
.ws-overture h1 {
    font-family: 'Spectral', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(3rem, 10vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
    color: var(--ws-text);
    margin: 0;
}
.ws-overture h1 em {
    font-style: italic;
    color: var(--ws-ember);
}
.ws-overture h1 .ws-asterisk {
    color: var(--ws-ember);
    font-size: 0.6em;
    vertical-align: 0.4em;
    margin-left: -0.08em;
    font-style: normal;
}

/* Sous-titre + signature */
.ws-overture-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: end;
    padding-top: 8px;
}
.ws-overture-tagline {
    max-width: 580px;
    font-size: 1.02rem;
    color: rgba(242,237,230,0.7);
    line-height: 1.75;
}
.ws-overture-tagline strong {
    color: var(--ws-text);
    font-weight: 600;
}

.ws-overture-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ws-ember);
    border-bottom: 1px solid var(--ws-ember);
    padding-bottom: 6px;
    transition: gap var(--ws-trans), border-color var(--ws-trans);
    white-space: nowrap;
}
.ws-overture-cta a:hover { gap: 20px; }

/* Bandeau de mesures */
.ws-mesure {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 48px;
    border-top: 1px solid var(--ws-border);
}
.ws-mesure-item {
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid var(--ws-border);
}
.ws-mesure-item:first-child { padding-left: 0; }
.ws-mesure-item:last-child { border-right: none; padding-right: 0; }
.ws-mesure-num {
    display: block;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 2.6rem;
    color: var(--ws-text);
    line-height: 1;
    margin-bottom: 10px;
}
.ws-mesure-num em {
    color: var(--ws-ember);
    font-style: italic;
}
.ws-mesure-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ws-muted);
    line-height: 1.4;
    display: block;
}

/* ============================================================
   FILMSTRIP — 4 photos asymétriques (catégories)
   ============================================================ */
.ws-filmstrip {
    padding: 80px 0;
    background: var(--ws-surface);
    border-top: 1px solid var(--ws-border);
    border-bottom: 1px solid var(--ws-border);
}
.ws-filmstrip-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-filmstrip-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-text);
}
.ws-filmstrip-head-sub {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ws-muted);
}

.ws-filmstrip-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
    gap: 18px;
    align-items: end;
}
.ws-filmstrip-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    background: var(--ws-ink);
}
.ws-filmstrip-cell:nth-child(1) { aspect-ratio: 3/4; }
.ws-filmstrip-cell:nth-child(2) { aspect-ratio: 4/5; margin-bottom: 40px; }
.ws-filmstrip-cell:nth-child(3) { aspect-ratio: 4/3; }
.ws-filmstrip-cell:nth-child(4) { aspect-ratio: 3/4; margin-bottom: 28px; }

.ws-filmstrip-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.85) contrast(1.05);
    transition: filter 500ms ease, transform 700ms ease;
}
.ws-filmstrip-cell:hover img {
    filter: brightness(0.78) saturate(1) contrast(1);
    transform: scale(1.05);
}
.ws-filmstrip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(14,11,8,0.85) 100%);
    pointer-events: none;
}
.ws-filmstrip-num {
    position: absolute;
    top: 18px; left: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ws-ember);
    z-index: 2;
    font-family: 'Spectral', serif;
    font-style: italic;
}
.ws-filmstrip-label {
    position: absolute;
    bottom: 18px; left: 18px; right: 18px;
    color: var(--ws-text);
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    z-index: 2;
    line-height: 1.1;
}
.ws-filmstrip-arrow {
    display: inline-block;
    margin-left: 6px;
    color: var(--ws-ember);
    transition: transform var(--ws-trans);
}
.ws-filmstrip-cell:hover .ws-filmstrip-arrow {
    transform: translateX(6px);
}

/* ============================================================
   CAHIER — Articles en lignes éditoriales
   ============================================================ */
.ws-cahier {
    padding: 100px 0;
    background: var(--ws-ink);
}
.ws-cahier-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 56px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-cahier-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-text);
}
.ws-cahier-count {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--ws-muted);
}

.ws-cahier-list {
    display: flex;
    flex-direction: column;
}
.ws-entry {
    display: grid;
    grid-template-columns: 68px 180px 1fr;
    gap: 36px;
    padding: 32px 0;
    border-bottom: 1px solid var(--ws-border);
    align-items: center;
    transition: padding-left var(--ws-trans);
    position: relative;
}
.ws-entry:hover { padding-left: 14px; }
.ws-entry::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 0;
    height: 1px;
    background: var(--ws-ember);
    transition: width var(--ws-trans);
}
.ws-entry:hover::before { width: 8px; }

.ws-entry-num {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--ws-ember);
    line-height: 1;
}

.ws-entry-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
}
.ws-entry-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.45) brightness(0.85) contrast(1.05);
    transition: filter 450ms ease, transform 450ms ease;
}
.ws-entry:hover .ws-entry-thumb img {
    filter: grayscale(0) brightness(1) contrast(1);
    transform: scale(1.06);
}

.ws-entry-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ws-entry-cat {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ws-ember);
}
.ws-entry-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    line-height: 1.18;
    color: var(--ws-text);
    margin: 0;
}
.ws-entry-excerpt {
    font-size: 0.9rem;
    color: rgba(242,237,230,0.6);
    line-height: 1.6;
    max-width: 640px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ws-entry-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--ws-muted);
    margin-top: 4px;
}
.ws-entry-meta-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--ws-border);
    display: inline-block;
}

/* ============================================================
   MOT DE L'ÉDITRICE — Persona en lettre centrée
   ============================================================ */
.ws-mot {
    padding: 110px 0;
    background: var(--ws-surface);
    border-top: 1px solid var(--ws-border);
    border-bottom: 1px solid var(--ws-border);
    position: relative;
    overflow: hidden;
}
.ws-mot::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,98,42,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ws-mot-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.ws-mot-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ws-ember);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ws-mot-eyebrow::before,
.ws-mot-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ws-ember);
    opacity: 0.5;
}

.ws-mot-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--ws-border);
    position: relative;
}
.ws-mot-photo::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid rgba(232,98,42,0.25);
    pointer-events: none;
}
.ws-mot-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.25);
}

.ws-mot h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 8px;
    color: var(--ws-text);
    line-height: 1.15;
}
.ws-mot-role {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 36px;
}

.ws-mot-text {
    text-align: left;
    font-size: 1rem;
    color: rgba(242,237,230,0.78);
    line-height: 1.85;
}
.ws-mot-text p { margin-bottom: 1.4em; }
.ws-mot-text p:last-of-type { margin-bottom: 0; }
.ws-mot-text strong { color: var(--ws-text); font-weight: 600; }
.ws-mot-text ul { margin: 1em 0 1.5em; }
.ws-mot-text li {
    padding-left: 1.6em;
    margin-bottom: 10px;
    position: relative;
}
.ws-mot-text li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--ws-ember);
    font-family: 'Spectral', serif;
}

.ws-mot-signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--ws-border);
    text-align: center;
}
.ws-mot-signature-name {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--ws-wood);
    margin-bottom: 24px;
    line-height: 1;
}
.ws-mot-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ws-ember);
    border-bottom: 1px solid var(--ws-ember);
    padding-bottom: 4px;
    transition: gap var(--ws-trans);
}
.ws-mot-cta a:hover { gap: 16px; }

/* ============================================================
   LES QUATRE VOIES — Catégories en liste numérotée
   ============================================================ */
.ws-voies {
    padding: 100px 0;
    background: var(--ws-ink);
}
.ws-voies-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-voies-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-text);
}
.ws-voies-sub {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--ws-muted);
}

.ws-voie {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 48px;
    padding: 44px 0;
    border-bottom: 1px solid var(--ws-border);
    align-items: center;
    transition: padding-left var(--ws-trans);
    position: relative;
}
.ws-voie:last-child { border-bottom: none; }
.ws-voie:hover { padding-left: 16px; }
.ws-voie::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-32px, -50%);
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--ws-ember);
    opacity: 0;
    transition: opacity var(--ws-trans), transform var(--ws-trans);
}
.ws-voie:hover::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.ws-voie-numeral {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    color: var(--ws-ember);
    line-height: 1;
    transition: transform var(--ws-trans);
}
.ws-voie:hover .ws-voie-numeral {
    transform: translateX(-8px);
}

.ws-voie-body { display: flex; flex-direction: column; gap: 10px; }
.ws-voie-name {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--ws-text);
    margin: 0;
}
.ws-voie-desc {
    font-size: 0.95rem;
    color: var(--ws-muted);
    line-height: 1.6;
    max-width: 480px;
}

.ws-voie-meta {
    text-align: right;
    padding-right: 56px;
}
.ws-voie-count {
    display: block;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--ws-wood);
    line-height: 1;
    margin-bottom: 6px;
}
.ws-voie-count-label {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ws-muted);
}

/* ============================================================
   PIED — Footer 4 colonnes (catégories séparées des liens utiles)
   ============================================================ */
.ws-pied {
    padding: 80px 0 0;
    background: var(--ws-surface);
    border-top: 1px solid var(--ws-border);
}
.ws-pied-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.ws-pied-brand .ws-pied-logo {
    display: block;
    margin-bottom: 22px;
    color: var(--ws-text);
}
.ws-pied-desc {
    font-size: 0.86rem;
    color: var(--ws-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.ws-pied-sig {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ws-wood);
}

.ws-pied-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-text);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-pied-links { display: flex; flex-direction: column; gap: 12px; }
.ws-pied-links a {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.98rem;
    color: rgba(242,237,230,0.62);
    transition: color var(--ws-trans), padding-left var(--ws-trans);
    display: inline-block;
}
.ws-pied-links a:hover {
    color: var(--ws-ember);
    padding-left: 6px;
}

.ws-pied-recent { display: flex; flex-direction: column; gap: 18px; }
.ws-pied-post {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--ws-border);
}
.ws-pied-post:last-child { border-bottom: none; padding-bottom: 0; }
.ws-pied-post-num {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--ws-ember);
    margin-bottom: 2px;
}
.ws-pied-post-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(242,237,230,0.75);
    line-height: 1.4;
    transition: color var(--ws-trans);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ws-pied-post:hover .ws-pied-post-title { color: var(--ws-ember); }
.ws-pied-post-date {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-top: 4px;
}

.ws-pied-bottom {
    border-top: 1px solid var(--ws-border);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.ws-pied-copy {
    font-size: 0.74rem;
    color: var(--ws-muted);
}
.ws-pied-mention {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--ws-muted);
}

/* ============================================================
   ARCHIVE HERO — ws-section-hero (catégorie/tag)
   ============================================================ */
.ws-section-hero {
    position: relative;
    padding: calc(var(--ws-hh) + 80px) 0 64px;
    background: var(--ws-ink);
    border-bottom: 1px solid var(--ws-border);
    overflow: hidden;
}
.ws-section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(232,98,42,0.07) 0%, transparent 60%);
    pointer-events: none;
}
.ws-section-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 64px;
    align-items: end;
}
.ws-section-hero-text { display: flex; flex-direction: column; gap: 16px; }
.ws-section-bc {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 8px;
}
.ws-section-bc a:hover { color: var(--ws-ember); }
.ws-section-bc span { color: var(--ws-border); }

.ws-section-numeral {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--ws-ember);
    letter-spacing: 0;
    text-transform: none;
}
.ws-section-hero h1 {
    font-family: 'Spectral', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ws-text);
    margin: 0;
}
.ws-section-desc {
    font-size: 1rem;
    color: rgba(242,237,230,0.7);
    max-width: 580px;
    line-height: 1.7;
    margin-top: 8px;
}
.ws-section-desc p { color: rgba(242,237,230,0.7); }
.ws-section-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ws-wood);
    padding-top: 8px;
}
.ws-section-count strong {
    color: var(--ws-ember);
    font-weight: 600;
}

.ws-section-mark {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
}
.ws-section-mark img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.9);
}
.ws-section-mark-label {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: var(--ws-text);
    letter-spacing: 0.04em;
    text-align: right;
}

/* ============================================================
   SEO ESSAI — Bloc SEO bas de page
   ============================================================ */
.ws-essai {
    padding: 96px 0;
    background: var(--ws-surface);
    border-top: 1px solid var(--ws-border);
}
.ws-essai-inner {
    max-width: 880px;
    margin: 0 auto;
}
.ws-essai-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ws-ember);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.ws-essai-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ws-border);
}
.ws-essai h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.15;
    color: var(--ws-text);
    margin-bottom: 28px;
    max-width: 720px;
}
.ws-essai-intro {
    font-size: 1rem;
    color: rgba(242,237,230,0.75);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 720px;
}
.ws-essai-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    counter-reset: essai-counter;
}
.ws-essai-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    font-size: 0.96rem;
    color: rgba(242,237,230,0.75);
    line-height: 1.6;
    counter-increment: essai-counter;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-essai-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ws-essai-list li::before {
    content: counter(essai-counter, decimal-leading-zero);
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    color: var(--ws-ember);
    font-size: 1.2rem;
    line-height: 1.4;
}
.ws-essai-outro {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.08rem;
    color: var(--ws-wood);
    line-height: 1.7;
    max-width: 720px;
    padding-top: 8px;
    border-top: 1px solid var(--ws-border);
    padding-top: 24px;
}

/* ============================================================
   SINGLE — Hero diptyque (ws-piece-head)
   ============================================================ */
.ws-piece-head {
    position: relative;
    background: var(--ws-ink);
    padding-top: var(--ws-hh);
    border-bottom: 1px solid var(--ws-border);
}
.ws-piece-head-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    min-height: 60vh;
}
.ws-piece-head-text {
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.ws-piece-bc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 8px;
}
.ws-piece-bc a:hover { color: var(--ws-ember); }
.ws-piece-bc span { color: var(--ws-border); }
.ws-piece-cat {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ws-ember);
}
.ws-piece-head h1 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--ws-text);
    margin: 0;
}
.ws-piece-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--ws-muted);
    margin-top: 8px;
}
.ws-piece-meta-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--ws-border);
}
.ws-piece-stars { color: var(--ws-wood); }
.ws-piece-head-img {
    position: relative;
    overflow: hidden;
    background: var(--ws-surface);
}
.ws-piece-head-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 60vh;
}
.ws-piece-head-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--ws-surface) 0%, var(--ws-ink) 100%);
}

/* Post body */
.ws-post-wrap { max-width: 800px; margin: 0 auto; padding: 64px 24px 0; }
.ws-ai-summary {
    margin: 0 0 40px;
    padding: 24px 28px;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-left: 3px solid var(--ws-ember);
    border-radius: 0 10px 10px 0;
}
.ws-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0;
    padding-top: 32px;
    border-top: 1px solid var(--ws-border);
}
.ws-post-tag {
    padding: 4px 12px;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 20px;
    font-size: 0.76rem;
    color: var(--ws-muted);
    transition: border-color var(--ws-trans), color var(--ws-trans);
}
.ws-post-tag:hover { border-color: var(--ws-ember); color: var(--ws-ember); }

/* Auteur */
.ws-craftsman {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 24px;
}
.ws-craftsman-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 36px;
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    border-radius: 0;
    position: relative;
}
.ws-craftsman-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: 32px;
    width: 32px;
    height: 2px;
    background: var(--ws-ember);
}
.ws-craftsman-photo {
    width: 76px; height: 76px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--ws-border);
}
.ws-craftsman-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); }
.ws-craftsman-name {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ws-text);
    margin-bottom: 2px;
}
.ws-craftsman-role {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ws-ember);
    margin-bottom: 12px;
}
.ws-craftsman-bio { font-size: 0.88rem; color: var(--ws-muted); line-height: 1.7; }
.ws-craftsman-bio p { margin-bottom: 8px; }
.ws-craftsman-bio p:last-child { margin-bottom: 0; }

/* Articles similaires */
.ws-kin { max-width: 1240px; margin: 0 auto 80px; padding: 0 32px; }
.ws-kin h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ws-text);
    margin-bottom: 32px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ws-border);
}
.ws-kin-list { display: flex; flex-direction: column; }

/* ============================================================
   CONTACT — ws-dispatch
   ============================================================ */
.ws-dispatch { padding: 96px 0; background: var(--ws-ink); }
.ws-dispatch-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: start;
}
.ws-dispatch-info { display: flex; flex-direction: column; gap: 12px; }
.ws-dispatch-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ws-ember);
    margin-bottom: 16px;
}
.ws-dispatch-info h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 16px;
}
.ws-dispatch-intro { font-size: 0.95rem; color: var(--ws-muted); line-height: 1.78; margin-bottom: 32px; }
.ws-dispatch-items { display: flex; flex-direction: column; gap: 22px; padding-top: 12px; border-top: 1px solid var(--ws-border); padding-top: 28px; }
.ws-dispatch-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--ws-border);
}
.ws-dispatch-item:last-child { border-bottom: none; }
.ws-dispatch-icon {
    width: 40px; height: 40px;
    background: rgba(232,98,42,0.08);
    border: 1px solid rgba(232,98,42,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--ws-ember);
}
.ws-dispatch-item-label {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 4px;
}
.ws-dispatch-item-val {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--ws-text);
}

.ws-dispatch-form-wrap {
    background: var(--ws-surface);
    border: 1px solid var(--ws-border);
    padding: 44px;
    position: relative;
}
.ws-dispatch-form-wrap::before {
    content: '';
    position: absolute;
    top: -1px; left: 40px;
    width: 40px;
    height: 2px;
    background: var(--ws-ember);
}
.ws-dispatch-form-wrap h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 600;
}

.ws-dispatch-form-wrap .wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 18px;
}
.ws-dispatch-form-wrap .wpcf7-form br { display: none; }
.ws-dispatch-form-wrap .wpcf7-form label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ws-dispatch-form-wrap .wpcf7-form input[type="text"],
.ws-dispatch-form-wrap .wpcf7-form input[type="email"],
.ws-dispatch-form-wrap .wpcf7-form textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--ws-ink);
    border: 1px solid var(--ws-border);
    border-radius: 0;
    color: var(--ws-text);
    font: inherit;
    font-size: 0.9rem;
    transition: border-color var(--ws-trans);
}
.ws-dispatch-form-wrap .wpcf7-form input:focus,
.ws-dispatch-form-wrap .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--ws-ember);
}
.ws-dispatch-form-wrap .wpcf7-form textarea { min-height: 130px; resize: vertical; }
.ws-dispatch-form-wrap .wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: var(--ws-ember);
    color: var(--ws-ink);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--ws-trans);
}
.ws-dispatch-form-wrap .wpcf7-submit:hover { background: #cf5424; }

/* ============================================================
   STATIC PAGE HERO — ws-gavel (bandeau typographique, sans photo)
   ============================================================ */
.ws-gavel {
    padding: calc(var(--ws-hh) + 48px) 0 40px;
    background: var(--ws-ink);
    border-bottom: 1px solid var(--ws-border);
}
.ws-gavel-inner {
    position: relative;
}
.ws-gavel-bc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ws-muted);
    margin-bottom: 20px;
}
.ws-gavel-bc a:hover { color: var(--ws-ember); }
.ws-gavel h1 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--ws-text);
}

.ws-page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}
.ws-page-body h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin: 44px 0 14px;
    padding-top: 12px;
    border-top: 1px solid var(--ws-border);
    color: var(--ws-text);
    font-weight: 600;
}
.ws-page-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.ws-page-body p { font-size: 0.95rem; color: rgba(242,237,230,0.72); line-height: 1.8; margin-bottom: 14px; }
.ws-page-body a { color: var(--ws-ember); }

/* Plan du site */
.ws-sitemap { max-width: 960px; margin: 0 auto; padding: 64px 32px 96px; }
.ws-sitemap-cat { margin-bottom: 48px; }
.ws-sitemap-cat-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ws-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ws-border);
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.ws-sitemap-cat-title::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--ws-ember);
    display: inline-block;
}
.ws-sitemap-posts { display: flex; flex-direction: column; gap: 10px; padding-left: 18px; }
.ws-sitemap-posts a {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-size: 0.96rem;
    color: rgba(242,237,230,0.62);
    transition: color var(--ws-trans), padding-left var(--ws-trans);
}
.ws-sitemap-posts a:hover { color: var(--ws-ember); padding-left: 6px; }

/* ============================================================
   ENTRY CONTENT (article body)
   ============================================================ */
.entry-content { font-size: 0.97rem; line-height: 1.85; color: rgba(242,237,230,0.82); padding: 32px 0; }
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    margin: 2em 0 0.6em;
    font-size: 1.6rem;
    color: var(--ws-text);
}
.entry-content h3 {
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 600;
    margin: 1.7em 0 0.5em;
    font-size: 1.2rem;
    color: var(--ws-text);
}
.entry-content a { color: var(--ws-ember); text-decoration: underline; text-underline-offset: 3px; }
.entry-content strong { color: var(--ws-text); font-weight: 700; }
.entry-content blockquote {
    margin: 2em 0;
    padding: 20px 28px;
    border-left: 3px solid var(--ws-ember);
    background: var(--ws-surface);
    font-style: italic;
    color: var(--ws-wood);
    font-family: 'Spectral', serif;
    font-size: 1.05rem;
    line-height: 1.7;
}
.entry-content ul { list-style: none; padding-left: 0; margin-bottom: 1.4em; }
.entry-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content ul li { position: relative; padding-left: 1.3em; margin-bottom: 0.5em; }
.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ws-ember);
    flex-shrink: 0;
}
.entry-content ol li { margin-bottom: 0.5em; }
.entry-content img { margin: 1.5em 0; }

#summarize_with_ai_box { max-width: 720px; margin: 0 auto 32px; padding: 0 24px; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .ws-overture h1 { font-size: clamp(2.6rem, 9vw, 5.5rem); }
    .ws-overture-meta { grid-template-columns: 1fr; gap: 24px; }
    .ws-mesure { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .ws-mesure-item:nth-child(2) { border-right: none; }
    .ws-mesure-item:nth-child(3) { border-top: 1px solid var(--ws-border); padding-top: 24px; }
    .ws-mesure-item:nth-child(4) { border-top: 1px solid var(--ws-border); padding-top: 24px; }

    .ws-entry { grid-template-columns: 52px 140px 1fr; gap: 24px; }
    .ws-entry-num { font-size: 1.7rem; }

    .ws-voie { grid-template-columns: 80px 1fr auto; gap: 32px; }
    .ws-voie-meta { padding-right: 32px; }

    .ws-filmstrip-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .ws-filmstrip-cell { margin-bottom: 0 !important; aspect-ratio: 4/3 !important; }

    .ws-section-hero-inner { grid-template-columns: 1fr 200px; gap: 40px; }

    .ws-piece-head-grid { grid-template-columns: 1fr; }
    .ws-piece-head-text { padding: 48px 32px; }
    .ws-piece-head-img { order: -1; min-height: 360px; }
    .ws-piece-head-img img { min-height: 360px; }

    .ws-pied-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ws-pied-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    :root { --ws-hh: 60px; }
    .ws-bar { padding: 0 20px; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .ws-bar.ws-bar--solid { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
    .ws-menu { display: none; }
    .ws-burger { display: flex; }
    .ws-wrap { padding: 0 22px; }

    .ws-overture { padding: calc(var(--ws-hh) + 48px) 0 56px; }
    .ws-overture h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
    .ws-issue { flex-wrap: wrap; gap: 12px; }
    .ws-issue-mention { display: none; }

    .ws-filmstrip-grid { grid-template-columns: 1fr; gap: 14px; }
    .ws-filmstrip-cell { aspect-ratio: 16/9 !important; }

    .ws-cahier { padding: 64px 0; }
    .ws-entry {
        grid-template-columns: 40px 1fr;
        grid-template-areas:
            "num thumb"
            "num body";
        gap: 16px 16px;
        padding: 24px 0;
        align-items: start;
    }
    .ws-entry-num { grid-area: num; font-size: 1.4rem; padding-top: 8px; }
    .ws-entry-thumb { grid-area: thumb; aspect-ratio: 16/9; }
    .ws-entry-body { grid-area: body; }
    .ws-entry-title { font-size: 1.15rem; }
    .ws-entry-excerpt { -webkit-line-clamp: 3; }

    .ws-mot { padding: 72px 0; }
    .ws-voies { padding: 64px 0; }
    .ws-voie {
        grid-template-columns: 60px 1fr;
        grid-template-areas:
            "numeral name"
            "numeral desc"
            ".       meta";
        gap: 8px 20px;
        padding: 28px 0;
    }
    .ws-voie-numeral { grid-area: numeral; font-size: 2.2rem; }
    .ws-voie-name { grid-area: name; font-size: 1.8rem; }
    .ws-voie-desc { grid-area: desc; }
    .ws-voie-meta { grid-area: meta; text-align: left; padding-right: 0; padding-top: 8px; }
    .ws-voie-count { display: inline; font-size: 1rem; margin-right: 8px; }
    .ws-voie-count-label { display: inline; font-size: 0.66rem; }
    .ws-voie::after { display: none; }

    .ws-section-hero { padding: calc(var(--ws-hh) + 48px) 0 48px; }
    .ws-section-hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .ws-section-mark { max-width: 180px; aspect-ratio: 3/4; }

    .ws-essai { padding: 64px 0; }

    .ws-dispatch { padding: 64px 0; }
    .ws-dispatch-grid { grid-template-columns: 1fr; gap: 48px; }
    .ws-dispatch-form-wrap { padding: 28px 22px; }

    .ws-piece-head-text { padding: 36px 22px; }

    .ws-pied-grid { grid-template-columns: 1fr; gap: 36px; text-align: left; }
    .ws-pied-brand { grid-column: auto; }
    .ws-pied-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .ws-craftsman-inner { flex-direction: column; padding: 28px 22px; }
}
