:root {
  --ink: #0d0d0f;
  --ink-2: #18181c;
  --charcoal: #2a2a30;
  --charcoal-2: #3a3a42;
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --line: #d9d4ca;
  --muted: #6a6a72;
  --red: #b51a23;
  --red-deep: #8a121a;
  --gold: #c9a55a;
  --gold-soft: #e2c98a;
  --white: #ffffff;
  --shadow: 0 30px 60px -30px rgba(0,0,0,.35);
  --radius: 4px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 13, 15, 0.97);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--paper); }
.brand:hover { color: var(--gold-soft); }
.brand-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800; font-size: 22px; letter-spacing: 0.18em;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 6px 10px;
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px; font-weight: 700; letter-spacing: 0.04em;
}
.brand-by { font-size: 11px; color: var(--gold-soft); letter-spacing: 0.22em; text-transform: uppercase; }

.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 26px; align-items: center;
}
.primary-nav a {
  color: var(--paper);
  font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
}
.primary-nav a:hover { color: var(--gold-soft); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--paper); margin: 5px 0;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 78px;
    background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 28px 24px; }
  .primary-nav li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .primary-nav a { display: block; padding: 16px 0; border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(201,165,90,0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(181,26,35,0.22), transparent 55%),
    linear-gradient(180deg, #0d0d0f 0%, #16161a 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay; opacity: 0.6;
}
.hero-inner { position: relative; max-width: 980px; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: inline-block;
  border-top: 1px solid var(--gold);
  padding-top: 12px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero-title .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 680px;
  color: rgba(247, 245, 241, 0.78);
  line-height: 1.6;
  margin: 0 0 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-deep); color: var(--white); border-color: var(--red-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(247,245,241,0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-link {
  background: transparent; color: var(--ink);
  border: 0; padding: 14px 8px;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
}
.btn-link:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- Editorial intro ---------- */
.editorial-intro {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-intro p {
  max-width: 820px; margin: 0 auto;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
  text-align: center;
}

/* ---------- Featured article ---------- */
.featured-article { padding: 90px 0 30px; }
.featured-card {
  display: block;
  padding: 56px 56px 56px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.featured-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--red);
}
.featured-card:hover { transform: translateY(-3px); color: var(--paper); }
.featured-meta {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: flex; gap: 10px; align-items: center;
  margin-bottom: 22px;
}
.featured-meta .kicker { color: var(--gold); }
.featured-meta .dot { opacity: .5; }
.featured-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.featured-card p {
  font-size: 18px; line-height: 1.6;
  color: rgba(247,245,241,0.78);
  max-width: 720px; margin: 0 0 24px;
}
.read-more {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

@media (max-width: 720px) {
  .featured-card { padding: 38px 28px; }
}

/* ---------- Sections ---------- */
.section-header { margin-bottom: 48px; max-width: 720px; }
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.section-header p { margin: 0; color: var(--muted); font-size: 17px; }

.categories-grid { padding: 90px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 30px;
  background: var(--paper);
  transition: background .25s, transform .25s;
  min-height: 280px;
}
.cat-card:hover { background: var(--white); color: var(--ink); }
.cat-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.cat-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  border-top: 1.5px solid var(--red); padding-top: 8px;
}
.cat-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; line-height: 1.2; margin: 0;
  letter-spacing: -0.005em;
}
.cat-card p { margin: 0; color: var(--charcoal); font-size: 15.5px; flex: 1; }
.cat-link {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 3px; align-self: flex-start;
}
.cat-card:hover .cat-link { color: var(--red); border-bottom-color: var(--red); }
.cat-video {
  grid-column: span 3;
  background: #000;
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.cat-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 1100px) {
  .cat-video { grid-column: span 2; }
}
@media (max-width: 800px) {
  .cat-video { grid-column: auto; aspect-ratio: 16 / 9; min-height: 0; }
}

/* ---------- GymDépôt section ---------- */
.gymdepot-section {
  background: linear-gradient(180deg, #16161a 0%, #0d0d0f 100%);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.gymdepot-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: center;
}
.kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  border-top: 1px solid var(--gold);
  padding-top: 10px;
  margin-bottom: 18px;
}
.kicker.red { color: var(--red); border-top-color: var(--red); }
.gd-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 22px; line-height: 1.05;
  letter-spacing: -0.01em;
}
.gd-text p {
  color: rgba(247,245,241,0.78);
  font-size: 17px; line-height: 1.65;
  max-width: 560px; margin: 0 0 32px;
}
.gd-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.gd-cta .btn-outline { color: var(--paper); border-color: rgba(247,245,241,0.4); }
.gd-cta .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.gd-cta .btn-link { color: var(--gold-soft); border-bottom-color: var(--gold); }
.gd-cta .btn-link:hover { color: var(--white); border-bottom-color: var(--white); }

.gd-visual { position: relative; }
.gd-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201,165,90,0.25);
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.gd-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 880px) {
  .gymdepot-inner { grid-template-columns: 1fr; }
}

/* ---------- Latest articles ---------- */
.latest-articles { padding: 100px 0; background: var(--paper); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
}
.article-grid.wide { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 48px; }

.article-card {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}
.article-card a { display: block; }
.article-card-meta {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
  display: flex; gap: 10px;
}
.article-card-meta .sep { color: var(--muted); }
.article-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  transition: color .2s;
}
.article-card.large h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; line-height: 1.15;
  margin: 0 0 12px;
  transition: color .2s;
}
.article-card p { margin: 0 0 16px; color: var(--charcoal); font-size: 15.5px; }
.article-card .read-more {
  color: var(--ink); border-bottom-color: var(--ink);
}
.article-card a:hover h3,
.article-card a:hover h2 { color: var(--red); }
.article-card a:hover .read-more { color: var(--red); border-bottom-color: var(--red); }

/* ---------- Category page ---------- */
.category-hero, .page-hero {
  background: var(--ink); color: var(--paper);
  padding: 120px 0 80px;
  border-bottom: 4px solid var(--red);
}
.category-hero h1, .page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  margin: 14px 0 18px; line-height: 1.02;
  letter-spacing: -0.015em;
}
.category-hero .lede, .page-hero .lede {
  font-size: 19px; color: rgba(247,245,241,0.78); max-width: 700px; margin: 0;
}
.category-list { padding: 80px 0 120px; background: var(--paper); }
.empty { text-align: center; color: var(--muted); padding: 80px 0; }

/* ---------- Article page ---------- */
.article-header {
  background: var(--ink); color: var(--paper);
  padding: 80px 0 70px;
}
.breadcrumb {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,245,241,0.55); margin-bottom: 22px;
}
.breadcrumb a { color: rgba(247,245,241,0.85); }
.breadcrumb a:hover { color: var(--gold-soft); }
.article-kicker {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--gold); padding-top: 10px;
  display: inline-block; margin-bottom: 18px;
}
.article-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.04;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
  max-width: 980px;
}
.article-deck {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(247,245,241,0.8);
  max-width: 780px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.article-byline {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,245,241,0.6);
  display: flex; gap: 10px;
}
.article-byline .sep { opacity: .5; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 28px 90px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; line-height: 1.15;
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.article-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  margin: 36px 0 14px;
}
.article-body p { margin: 0 0 22px; }
.article-body a { color: var(--red); border-bottom: 1px solid var(--red); }
.article-body a:hover { background: var(--red); color: var(--paper); }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 22px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 30px 0;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--red);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--charcoal);
}
.article-body hr {
  border: 0; border-top: 1px solid var(--line); margin: 40px 0;
}

.cta-box {
  margin: 50px 0;
  padding: 36px 36px 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.cta-box.subtle {
  background: var(--paper-2); color: var(--ink); border-left-color: var(--red);
}
.cta-box.subtle h3 { color: var(--ink); }
.cta-box.subtle p { color: var(--charcoal); }
.cta-box.subtle a { color: var(--red); border-bottom: 1px solid var(--red); }
.cta-eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.cta-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; margin: 0 0 10px; color: var(--paper);
}
.cta-box p { color: rgba(247,245,241,0.8); margin: 0 0 22px; font-size: 16px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-box .btn-outline { color: var(--paper); border-color: var(--paper); }
.cta-box .btn-outline:hover { background: var(--paper); color: var(--ink); }

.related {
  background: var(--paper-2);
  padding: 70px 0 90px;
  border-top: 1px solid var(--line);
}
.related h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  margin: 0 0 36px;
}

/* ---------- Prose / about ---------- */
.prose { padding: 70px 0 100px; }
.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  margin: 44px 0 14px;
}
.prose p { font-size: 18px; line-height: 1.75; margin: 0 0 20px; color: var(--ink-2); }
.prose a { color: var(--red); border-bottom: 1px solid var(--red); }

/* ---------- 404 ---------- */
.error-page {
  padding: 140px 0 160px;
  text-align: center;
}
.error-page h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
}
.error-page .lede { color: var(--muted); max-width: 600px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(247,245,241,0.7);
  padding: 80px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 10px;
}
.footer-brand span { color: var(--gold-soft); font-size: 14px; font-style: italic; }
.footer-tag { font-size: 15px; line-height: 1.6; max-width: 320px; }
.site-footer h4 {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px; font-weight: 600;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { font-size: 15px; color: rgba(247,245,241,0.78); }
.footer-list a:hover { color: var(--paper); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247,245,241,0.55);
}
.footer-disclaimer p { margin: 0 0 10px; }
.footer-disclaimer .copy { font-size: 12px; letter-spacing: 0.1em; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 100px; }
  .featured-article { padding: 60px 0 10px; }
  .categories-grid, .latest-articles { padding: 70px 0; }
  .gymdepot-section { padding: 80px 0; }
}
