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

:root {
  --noir:    #09090C;
  --surface: #111318;
  --card:    #161920;
  --or:      #C8A86B;
  --or-pale: rgba(200,168,107,0.18);
  --or-line: rgba(200,168,107,0.28);
  --blanc:   #F0EAE0;
  --muted:   rgba(240,234,224,0.48);
  --subtle:  rgba(240,234,224,0.12);
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--noir);
  color: var(--blanc);
  font-size: 16px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(9,9,12,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--or-line);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--or);
  text-decoration: none;
  font-style: italic;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active { color: var(--or); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 7rem;
  overflow: hidden;
  margin-top: 72px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,12,0.2) 0%,
    rgba(9,9,12,0.0) 40%,
    rgba(9,9,12,0.85) 85%,
    var(--noir) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}

.hero-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--or);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--blanc);
  max-width: 820px;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero h1 em {
  font-style: normal;
  color: var(--or);
}

.hero-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── INTRO STRIP ── */
.intro-strip {
  border-top: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.intro-stat span:first-child {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--or);
  font-style: italic;
  line-height: 1;
}

.intro-stat span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION GÉNÉRIQUE ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-size: 0.67rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--or-line);
  max-width: 80px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

/* ── IMAGE FEATURE ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--or-line);
  overflow: hidden;
  margin: 5rem 0;
}

.feature-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) saturate(0.7);
  display: block;
}

.feature-text {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.feature-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.feature-text a.cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  text-decoration: none;
  border-bottom: 1px solid var(--or-line);
  padding-bottom: 0.2rem;
  transition: border-color .2s, color .2s;
}

.feature-text a.cta:hover { border-color: var(--or); }

/* ── ARTICLES GRID ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--or-line);
  border: 1px solid var(--or-line);
}

.art-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background .25s;
}

.art-card:hover { background: var(--surface); }

.art-card.featured {
  grid-column: 1 / 3;
}

.art-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.art-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--blanc);
}

.art-card.featured h3 { font-size: 2rem; }

.art-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.art-meta {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,168,107,0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.art-meta::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--or);
  flex-shrink: 0;
}

/* ── ARTICLE PAGE ── */
.article-header {
  position: relative;
  padding: 8rem 3rem 5rem;
  margin-top: 72px;
  border-bottom: 1px solid var(--or-line);
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,168,107,0.06) 0%, transparent 70%);
}

.article-header .inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color .2s;
}

.back-btn:hover { color: var(--or); }

.article-header .art-cat { margin-bottom: 1.25rem; }

.article-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--blanc);
}

.article-meta-bar {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── ARTICLE BODY ── */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: rgba(240,234,224,0.85);
  font-weight: 300;
  line-height: 1.85;
  font-size: 1.02rem;
}

.article-body h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  font-style: italic;
  margin: 3rem 0 1rem;
  color: var(--blanc);
  line-height: 1.2;
  border-left: 2px solid var(--or);
  padding-left: 1rem;
}

.article-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  margin: 2rem 0 0.75rem;
  color: var(--or);
}

.article-body a {
  color: var(--or);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity .2s;
}

.article-body a:hover { opacity: 0.75; }

.article-body ul, .article-body ol {
  margin: 0.5rem 0 1.25rem 0;
  padding-left: 1.25rem;
  color: rgba(240,234,224,0.75);
  font-weight: 300;
  font-size: 1rem;
}

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

.article-body blockquote {
  border-left: 2px solid var(--or);
  margin: 2.5rem 0;
  padding: 1rem 2rem;
  background: var(--surface);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(240,234,224,0.75);
  line-height: 1.6;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--or-line);
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.callout strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--or);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.callout p { margin: 0; font-size: 0.9rem; }

.separator {
  border: none;
  border-top: 1px solid var(--or-line);
  margin: 3rem 0;
}

.related {
  border-top: 1px solid var(--or-line);
  padding-top: 2rem;
  margin-top: 3rem;
}

.related h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.related-links { display: flex; flex-direction: column; gap: 0.6rem; }

.related-links a {
  font-size: 0.88rem;
  color: var(--or);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color .2s;
  width: fit-content;
}

.related-links a:hover { border-color: var(--or-line); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--or-line);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--or);
  font-weight: 400;
}

.footer-links {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-items: center;
}

.footer-links a {
  color: rgba(200,168,107,0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.65rem; }
  .hero-content { padding: 0 1.5rem; }
  .intro-strip { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-img { min-height: 280px; }
  .feature-text { padding: 2.5rem 2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .art-card.featured { grid-column: 1; }
  .article-header { padding: 6rem 1.5rem 3.5rem; }
  .article-body { padding: 3rem 1.5rem 5rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
}
