/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --paper:   #F9F8F5;
  --ink:     #0E0E0E;
  --rouge:   #C03418;
  --mid:     #6B6661;
  --rule:    2px solid #0E0E0E;
  --rule-sm: 1px solid #0E0E0E;

  --f-display: 'Syne', system-ui, sans-serif;
  --f-accent:  'Cormorant Garamond', Georgia, serif;
  --f-body:    'Source Serif 4', Georgia, serif;
}

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

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* Skip link RGAA */
.skip-link {
  position: absolute; top: -200px; left: 1rem;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-display); font-size: .8rem;
  padding: .6rem 1.2rem; z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--rouge);
  outline-offset: 2px;
}

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

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--rule);
}
.nav-inner {
  display: flex; align-items: stretch;
  height: 52px;
}

.nav-logo {
  display: flex; align-items: center;
  padding: 0 1.75rem;
  border-right: var(--rule);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--rouge); }

.nav-items {
  display: flex; align-items: stretch; flex: 1;
}
.nav-items a {
  display: flex; align-items: center;
  padding: 0 1.25rem;
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-right: var(--rule-sm);
  transition: background .12s, color .12s;
}
.nav-items a:hover,
.nav-items a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.nav-items a.highlight {
  background: var(--rouge);
  color: var(--paper);
}
.nav-items a.highlight:hover {
  background: var(--ink);
}

.nav-issue {
  display: flex; align-items: center;
  padding: 0 1.25rem;
  margin-left: auto;
  font-family: var(--f-accent);
  font-style: italic;
  font-size: .8rem;
  color: var(--mid);
  white-space: nowrap;
  border-left: var(--rule-sm);
  flex-shrink: 0;
}

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: none; border: none; border-left: var(--rule);
  cursor: pointer; color: var(--ink);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  border-bottom: var(--rule);
  position: relative;
  overflow: hidden;
}

.hero-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(14rem, 30vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(14,14,14,.07);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.04em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1px 2fr 1px 1fr;
  position: relative;
  z-index: 1;
}

.hero-rule { background: var(--ink); }

.hero-col-l {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}
.hero-nro {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
}
.hero-nro-label {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: .25rem;
  display: block;
}

.hero-cats {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: auto;
}
.hero-cat-link {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  border-top: 1px solid rgba(14,14,14,.15);
  padding-top: .4rem;
  display: flex; align-items: center; gap: .5rem;
  transition: color .12s;
}
.hero-cat-link:hover { color: var(--ink); }
.hero-cat-link::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--rouge);
  flex-shrink: 0;
}

.hero-col-c {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-eyebrow {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--ink);
}
.hero-h1 .accent-word {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(4rem, 8vw, 7.5rem);
  color: var(--rouge);
  display: block;
  letter-spacing: -.02em;
}

.hero-col-r {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-desc {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 30ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: auto;
}

.btn-block {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
  border: var(--rule);
  text-align: center;
  transition: background .12s, color .12s;
}
.btn-block:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-block.filled {
  background: var(--ink);
  color: var(--paper);
}
.btn-block.filled:hover {
  background: var(--rouge);
  border-color: var(--rouge);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: var(--rule);
  margin-top: 2rem;
}
.hero-stat {
  padding: 1rem 0;
  border-right: var(--rule-sm);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: .2rem;
}

/* ══════════════════════════════════════════
   TICKER MARQUES
══════════════════════════════════════════ */
.ticker {
  background: var(--ink);
  border-bottom: var(--rule);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-label {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rouge);
  padding: 0 1.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(249,248,245,.15);
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 24s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--f-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(249,248,245,.6);
  white-space: nowrap;
  border-right: 1px solid rgba(249,248,245,.1);
  text-decoration: none;
  transition: color .12s;
}
.ticker-item:hover { color: var(--paper); }
.ticker-item .sep { color: var(--rouge); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ══════════════════════════════════════════
   INDEX CATEGORIES
══════════════════════════════════════════ */
.index-section {
  border-bottom: var(--rule);
}
.index-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: var(--rule-sm);
}
.index-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.index-subtitle {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: .9rem;
  color: var(--mid);
  text-align: right;
}

.index-list { display: flex; flex-direction: column; }

.index-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  border-bottom: var(--rule-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background .12s, color .12s;
}
.index-item:last-child { border-bottom: none; }
.index-item:hover {
  background: var(--ink);
  color: var(--paper);
}
.index-item:hover .index-item-count { color: rgba(249,248,245,.5); }
.index-item:hover .index-item-n { color: var(--rouge); }
.index-item:hover .index-item-desc { color: rgba(249,248,245,.7); }

.index-item-n {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mid);
  transition: color .12s;
  text-align: right;
}

.index-item-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  display: block;
}
.index-item-desc {
  font-family: var(--f-body);
  font-size: .8rem;
  color: var(--mid);
  transition: color .12s;
  margin-top: .15rem;
  display: block;
}

.index-item-dots {
  flex: 1;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(14,14,14,.25) 0, rgba(14,14,14,.25) 4px,
    transparent 4px, transparent 10px
  );
  min-width: 2rem;
}
.index-item:hover .index-item-dots {
  background-image: repeating-linear-gradient(
    to right,
    rgba(249,248,245,.3) 0, rgba(249,248,245,.3) 4px,
    transparent 4px, transparent 10px
  );
}

.index-item-count {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  transition: color .12s;
}

/* ══════════════════════════════════════════
   SELECTION ARTICLES
══════════════════════════════════════════ */
.articles-section {
  border-bottom: var(--rule);
}
.articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: var(--rule-sm);
}
.section-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-link {
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .12s;
}
.section-link:hover { color: var(--ink); }

.articles-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 2fr;
}
.article-col { border-right: var(--rule-sm); }
.article-col:last-child { border-right: none; }

.article-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
  transition: background .12s, color .12s;
}
.article-link:hover { background: var(--ink); color: var(--paper); }
.article-link:hover .article-meta { color: rgba(249,248,245,.45); }
.article-link:hover .article-excerpt { color: rgba(249,248,245,.75); }
.article-link:hover .article-cat { border-color: var(--rouge); }

.article-img {
  background: rgba(14,14,14,.05);
  border-bottom: var(--rule-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(14,14,14,.12);
  overflow: hidden;
  transition: background .12s;
}
.article-link:hover .article-img { background: rgba(249,248,245,.05); }
.article-img-featured { aspect-ratio: 4/3; }
.article-img-mid { aspect-ratio: 1; }
.article-img-sm { aspect-ratio: 1; }

.article-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .6rem;
}

.article-cat {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  border-left: 2px solid var(--rouge);
  padding-left: .5rem;
  transition: border-color .12s;
}

.article-title {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.article-col:first-child .article-title { font-size: 1.4rem; }
.article-col:nth-child(2) .article-title { font-size: 1.05rem; }
.article-col:last-child .article-title { font-size: .9rem; }

.article-excerpt {
  font-family: var(--f-body);
  font-size: .85rem;
  line-height: 1.65;
  color: var(--mid);
  transition: color .12s;
  flex: 1;
}
.article-col:last-child .article-excerpt { display: none; }

.article-meta {
  font-family: var(--f-display);
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .12s;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid rgba(14,14,14,.1);
}
.article-link:hover .article-meta { border-color: rgba(249,248,245,.1); }

.articles-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule-sm);
}
.article-sm {
  border-right: var(--rule-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  gap: .5rem;
  transition: background .12s, color .12s;
}
.article-sm:last-child { border-right: none; }
.article-sm:hover { background: var(--ink); color: var(--paper); }
.article-sm:hover .article-cat { border-color: var(--rouge); }
.article-sm:hover .article-meta { color: rgba(249,248,245,.45); }

.article-sm-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* ══════════════════════════════════════════
   BLOC ARTISTES
══════════════════════════════════════════ */
.artists-section {
  border-bottom: var(--rule);
}
.artists-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: var(--rule-sm);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.artist-link {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 2rem 1.75rem;
  border-right: var(--rule-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background .12s, color .12s;
}
.artist-link:last-child { border-right: none; }
.artist-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.artist-link:hover .artist-nat { color: rgba(249,248,245,.45); }

.artist-num {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
}
.artist-name {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.artist-nat {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: .25rem;
  transition: color .12s;
}

/* ══════════════════════════════════════════
   BANDE COLORIAGES
══════════════════════════════════════════ */
.coloriages-band {
  border-bottom: var(--rule);
  background: var(--rouge);
  color: var(--paper);
}
.coloriages-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  gap: 2rem;
}
.coloriages-text {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.coloriages-label {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .65;
}
.coloriages-title {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
}
.coloriages-link {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border: 2px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  transition: background .12s, color .12s;
  flex-shrink: 0;
}
.coloriages-link:hover {
  background: var(--paper);
  color: var(--rouge);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: var(--paper);
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(249,248,245,.1);
}
.footer-col {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(249,248,245,.1);
}
.footer-col:last-child { border-right: none; }

.footer-col-label {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(249,248,245,.35);
  margin-bottom: 1rem;
  display: block;
}

.footer-logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  display: block;
  color: var(--paper);
}
.footer-logo span { color: var(--rouge); }

.footer-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(249,248,245,.45);
  max-width: 28ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-family: var(--f-body);
  font-size: .85rem;
  color: rgba(249,248,245,.5);
  transition: color .12s;
}
.footer-links a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(249,248,245,.25);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-legal a {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(249,248,245,.3);
  transition: color .12s;
}
.footer-legal a:hover { color: rgba(249,248,245,.7); }

/* ══════════════════════════════════════════
   ARTICLE
══════════════════════════════════════════ */
.article-layout {
  max-width: 91ch;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
@media (max-width: 768px) {
  .article-layout { max-width: 100%; }
}

.art-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: var(--rule-sm);
}
.art-breadcrumb a { transition: color .12s; }
.art-breadcrumb a:hover { color: var(--ink); }
.art-breadcrumb .sep { color: rgba(14,14,14,.2); }

.art-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.art-cat-label {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  border-left: 2px solid var(--rouge);
  padding-left: .5rem;
}
.art-date-label {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
}

.art-h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 2rem;
}

.art-hero-img {
  margin: 0 0 2.5rem;
  border-bottom: var(--rule-sm);
  padding-bottom: 2.5rem;
}
.art-hero-img img { width: 100%; }

.art-intro {
  font-family: var(--f-accent);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  padding: 1.5rem 0;
  border-top: var(--rule);
  border-bottom: var(--rule-sm);
  margin-bottom: 2.5rem;
}

.art-body {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.art-body h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: var(--rule-sm);
}
.art-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  margin: 2rem 0 .75rem;
}
.art-body p { margin-bottom: 1.25rem; }
.art-body ul, .art-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.art-body ol { list-style: decimal; }
.art-body li { margin-bottom: .4rem; }
.art-body strong { font-weight: 600; }
.art-body em { font-style: italic; }
.art-body blockquote {
  border-left: 3px solid var(--rouge);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--mid);
}
.art-body a { text-decoration: underline; text-underline-offset: 3px; }
.art-body a:hover { color: var(--rouge); }

.art-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: var(--rule);
}
.art-faq h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.faq-item {
  border-top: var(--rule-sm);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: var(--rule-sm); }
.faq-q {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.faq-a {
  font-family: var(--f-body);
  font-size: .9rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ══════════════════════════════════════════
   CATEGORIE (page listant les articles)
══════════════════════════════════════════ */
.cat-layout {}

.cat-hero {
  border-bottom: var(--rule);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1px 2fr 1px 1fr;
  gap: 0;
  min-height: 260px;
}
.cat-hero-rule { background: var(--ink); }

.cat-header {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-n {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: .5rem;
}
.cat-h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.cat-h1 em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--rouge);
}

.cat-desc-col {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-desc {
  font-family: var(--f-body);
  font-size: .95rem;
  line-height: 1.7;
  color: var(--mid);
  max-width: 32ch;
}

.cat-count {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 1.5rem;
}

.cat-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cat-article-link {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 2rem;
  border-right: var(--rule-sm);
  border-bottom: var(--rule-sm);
  text-decoration: none;
  color: var(--ink);
  transition: background .12s, color .12s;
}
.cat-article-link:nth-child(3n) { border-right: none; }
.cat-article-link:hover { background: var(--ink); color: var(--paper); }
.cat-article-link:hover .cat-art-meta { color: rgba(249,248,245,.45); }

.cat-art-cat {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rouge);
  border-left: 2px solid var(--rouge);
  padding-left: .5rem;
}
.cat-art-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.cat-art-meta {
  font-family: var(--f-display);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .12s;
  margin-top: auto;
}

.cat-empty {
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: var(--rule);
}
.cat-empty p {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid);
}

/* ══════════════════════════════════════════
   FORMULAIRE CONTACT
══════════════════════════════════════════ */
.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Honeypot - RGAA : masqué mais pas via display:none pour éviter aria-hidden */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-label {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-req { color: var(--rouge); margin-left: .2rem; }

.form-input,
.form-textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: var(--rule-sm);
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .12s;
  width: 100%;
  resize: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--ink);
  outline: 2px solid var(--rouge);
  outline-offset: 2px;
}
.form-textarea { resize: vertical; min-height: 140px; }

.form-submit {
  width: 100%;
  cursor: pointer;
  font-size: .8rem;
}
.form-submit:disabled { opacity: .5; cursor: not-allowed; }

.form-legal {
  font-family: var(--f-display);
  font-size: .6rem;
  color: var(--mid);
  letter-spacing: .04em;
}
.form-legal a { color: var(--mid); text-decoration: underline; }

.form-feedback {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid;
  font-family: var(--f-body);
  font-size: .95rem;
  line-height: 1.6;
}
.form-success { border-color: var(--ink); background: rgba(14,14,14,.04); }
.form-error { border-color: var(--rouge); background: rgba(192,52,24,.04); }
.form-feedback strong { font-family: var(--f-display); font-weight: 700; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: .35rem; }

/* ══════════════════════════════════════════
   PAGES STATIQUES (légales, contact, à propos)
══════════════════════════════════════════ */
.static-layout {
  max-width: 72ch;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.static-layout h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--rule);
}
.static-layout h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: var(--rule-sm);
}
.static-layout p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}
.static-layout a { text-decoration: underline; text-underline-offset: 3px; }
.static-layout a:hover { color: var(--rouge); }
.static-layout strong { font-weight: 600; }
.static-layout em { font-style: italic; color: var(--mid); }

.static-eyebrow {
  font-family: var(--f-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 1rem;
}

/* Page 404 */
.notfound-layout {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border-bottom: var(--rule);
}
.notfound-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 1;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(14,14,14,.12);
  margin-bottom: 1.5rem;
}
.notfound-title {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.notfound-back {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: var(--rule);
  transition: background .12s, color .12s;
}
.notfound-back:hover { background: var(--ink); color: var(--paper); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-rule { display: none; }
  .hero-col-l { min-height: auto; padding: 2rem; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .hero-col-c { padding: 0 2rem 2rem; }
  .hero-col-r { padding: 0 2rem 2rem; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-col:last-child { display: none; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; border-right: none; border-bottom: 1px solid rgba(249,248,245,.1); }
  .cat-hero { grid-template-columns: 1fr; }
  .cat-hero-rule { display: none; }
  .cat-header { padding: 0 0 2rem; }
  .cat-desc-col { padding: 0; }
  .cat-articles { grid-template-columns: 1fr 1fr; }
  .cat-article-link:nth-child(3n) { border-right: var(--rule-sm); }
  .cat-article-link:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-items a:not(.highlight):not(:first-child):not(:nth-child(2)) { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bg-word { font-size: 10rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-secondary { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .index-item { grid-template-columns: 2.5rem 1fr auto; }
  .index-item-dots { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(249,248,245,.1); }
  .footer-col:first-child { grid-column: auto; }
  .coloriages-inner { flex-direction: column; align-items: flex-start; }
  .cat-articles { grid-template-columns: 1fr; }
  .cat-article-link { border-right: none; }
  .cat-article-link:nth-child(2n) { border-right: none; }
  .art-breadcrumb { flex-wrap: wrap; }
  .modal-box { padding: 2rem 1.25rem; width: calc(100vw - 2rem); }
}

/* ══════════════════════════════════════════
   MODAL COLORIAGES
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,.72);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--paper);
  border: var(--rule);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: .25rem .5rem;
  opacity: .55;
  font-family: var(--f-display);
}
.modal-close:hover { opacity: 1; }

.modal-icon {
  color: var(--rouge);
  margin-bottom: .75rem;
}

.modal-eyebrow {
  font-family: var(--f-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rouge);
  margin: 0 0 .4rem;
}

.modal-title {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 .75rem;
  color: var(--ink);
}

.modal-desc {
  font-family: var(--f-body);
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(14,14,14,.72);
  margin: 0 0 1.5rem;
}

.modal-field {
  margin-bottom: 1rem;
}

.modal-label {
  display: block;
  font-family: var(--f-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--ink);
}
.modal-label span { color: var(--rouge); }

.modal-input {
  width: 100%;
  border: var(--rule);
  padding: .75rem 1rem;
  font-family: var(--f-body);
  font-size: .95rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  transition: border-color .12s;
}
.modal-input:focus { border-color: var(--rouge); }

.modal-submit {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem;
  cursor: pointer;
  transition: background .12s, color .12s;
  margin-top: .5rem;
}
.modal-submit:hover { background: var(--rouge); border-color: var(--rouge); }
.modal-submit:disabled { opacity: .6; cursor: not-allowed; }

.modal-legal {
  font-family: var(--f-display);
  font-size: .6rem;
  letter-spacing: .04em;
  color: rgba(14,14,14,.5);
  text-align: center;
  margin: .75rem 0 0;
}
