/* ---------- Tokens ---------- */
:root{
  --bg:#faf8f4;
  --panel:#ffffff;
  --text:#161513;
  --muted:#6c6a64;
  --line:#e6e2d9;
  --accent:#9c2b20;
  --accent-dark:#7c2119;
  --serif:'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max:1100px;
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ color:inherit; }

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

section{ padding:72px 0; }

.eyebrow{
  font-size:12px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
  margin:0 0 14px;
}

h1,h2,h3{
  font-family:var(--serif);
  font-weight:600;
  line-height:1.15;
  margin:0;
}

/* ---------- Header ---------- */
.site-header{
  padding:48px 0 28px;
  text-align:center;
}
.site-header h1{
  font-size:clamp(26px, 4vw, 38px);
  letter-spacing:-0.01em;
}
.site-header .tagline{
  margin:10px auto 0;
  max-width:480px;
  font-size:clamp(14px, 2vw, 16px);
  color:var(--muted);
}
.site-header .tagline em{
  font-style:italic;
  color:var(--text);
}

/* ---------- Enquetes ---------- */
.enquetes-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.enquete-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease;
}
.enquete-card:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(20,18,14,0.08);
}
.enquete-card .thumb{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background:#e9e6de;
  overflow:hidden;
}
.enquete-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.enquete-card .body{
  padding:10px 14px 14px;
}
.enquete-card.featured{
  grid-column:span 4;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  align-items:stretch;
}
.enquete-card.featured .thumb{
  aspect-ratio:auto;
  height:100%;
  min-height:280px;
}
.enquete-card.featured .body{
  padding:24px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.enquete-card.featured h3{
  font-size:clamp(22px, 2.6vw, 30px);
}
.enquete-card:not(.featured){
  grid-column:span 1;
}
.enquete-card:not(.featured) h3{
  font-size:16px;
}
.source-tag{
  display:inline-block;
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:2px;
}
.enquete-card.featured .source-tag{
  margin-bottom:6px;
}
.views-badge{
  position:absolute;
  top:12px;
  right:12px;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
  padding:6px 12px;
  border-radius:100px;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

@media (max-width:880px){
  .enquetes-grid{ grid-template-columns:repeat(2, 1fr); }
  .enquete-card.featured{
    grid-column:span 2;
    grid-template-columns:1fr;
  }
  .enquete-card.featured .thumb{ min-height:0; aspect-ratio:16/9; }
}
@media (max-width:560px){
  .enquetes-grid{ grid-template-columns:1fr; }
  .enquete-card.featured{ grid-column:span 1; }
  .enquete-card:not(.featured){ grid-column:span 1; }
}

/* ---------- Chiffres ---------- */
.stats-band{
  background:var(--text);
  color:#fff;
  padding:56px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  text-align:center;
}
.stat .num{
  font-family:var(--serif);
  font-size:clamp(32px, 5vw, 48px);
  line-height:1;
}
.stat .label{
  margin-top:8px;
  color:#c9c6bd;
  font-size:14px;
  letter-spacing:.02em;
}
@media (max-width:560px){
  .stats-grid{ grid-template-columns:1fr; gap:32px; }
}

/* ---------- Reseaux sociaux ---------- */
.social-band{
  position:relative;
  padding:0;
  background:var(--accent-dark);
  color:#fff;
  overflow:hidden;
}
.social-inner{
  position:relative;
  display:grid;
  grid-template-columns:280px 1fr;
  align-items:center;
  min-height:420px;
}
.social-video-frame{
  position:relative;
  height:100%;
  overflow:hidden;
}
.social-video-frame video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.social-content{
  padding:48px 40px;
}
.social-content h2{
  font-size:clamp(24px, 3vw, 34px);
  max-width:420px;
}
.social-content p.sub{
  color:#c9c6bd;
  margin:14px 0 26px;
  max-width:420px;
}
.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.social-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:100px;
  text-decoration:none;
  font-size:13.5px;
  font-weight:600;
  color:#fff;
  transition:background .15s ease, border-color .15s ease;
}
.social-links a:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.5);
}
.social-links svg{ width:16px; height:16px; flex:none; }

@media (max-width:760px){
  .social-inner{
    grid-template-columns:1fr;
  }
  .social-video-frame{
    height:auto;
    width:44%;
    max-width:200px;
    aspect-ratio:9/16;
    margin:36px auto 0;
    border-radius:14px;
  }
  .social-content{ padding:24px 24px 44px; text-align:center; }
  .social-content h2, .social-content p.sub{ margin-left:auto; margin-right:auto; }
  .social-links{ justify-content:center; }
}

/* ---------- Livre ---------- */
.book-section{
  background:var(--panel);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.book-grid{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:56px;
  align-items:start;
}
.book-cover img{
  width:100%;
  border-radius:6px;
  box-shadow:0 18px 40px rgba(20,18,14,0.18);
}
.book-cover .edition-note{
  margin-top:12px;
  font-size:12.5px;
  color:var(--muted);
  text-align:center;
}
.book-title{
  font-size:clamp(28px, 4vw, 40px);
}
.book-editor{
  color:var(--muted);
  font-size:14px;
  margin-top:6px;
}
.book-hook{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(18px, 2.2vw, 22px);
  margin:20px 0;
  color:var(--text);
}
.book-prizes{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 24px;
}
.book-prizes span{
  font-size:12.5px;
  font-weight:600;
  background:#f2ede2;
  color:var(--accent-dark);
  padding:7px 12px;
  border-radius:100px;
}
.book-text p{
  margin:0 0 14px;
  color:#33312c;
  font-size:15.5px;
  line-height:1.65;
}
.buy-btn{
  display:inline-block;
  margin-top:18px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  padding:14px 26px;
  border-radius:8px;
  transition:background .15s ease;
}
.buy-btn:hover{ background:var(--accent-dark); }

.quotes-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.quote-card{
  border:1px solid var(--line);
  border-radius:12px;
  padding:20px 22px;
  background:var(--bg);
}
.quote-card p{
  font-family:var(--serif);
  font-style:italic;
  font-size:15px;
  margin:0 0 12px;
  color:var(--text);
}
.quote-card cite{
  font-style:normal;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--accent);
}

@media (max-width:820px){
  .book-grid{ grid-template-columns:1fr; }
  .book-cover{ max-width:220px; margin:0 auto; }
  .quotes-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .quotes-grid{ grid-template-columns:1fr; }
}

/* ---------- Revue de presse ---------- */
.press-heading{
  max-width:560px;
}
.press-heading p{
  color:var(--muted);
  margin-top:10px;
}
.press-subhead{
  font-size:12.5px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  margin:44px 0 18px;
}
.press-subhead:first-of-type{ margin-top:44px; }

.interviews-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.interview-card{
  display:block;
  text-decoration:none;
  color:inherit;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  background:var(--panel);
  transition:transform .15s ease, box-shadow .15s ease;
}
.interview-card:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(20,18,14,0.08);
}
.interview-card .thumb{
  position:relative;
  aspect-ratio:16/9;
  background:#e9e6de;
  overflow:hidden;
}
.interview-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.interview-card .play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.interview-card .play svg{
  width:38px;
  height:38px;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.interview-card.audio .thumb{
  background:linear-gradient(135deg,#1c1a17,#33302a);
  display:flex;
  align-items:center;
  justify-content:center;
}
.interview-card.audio .play svg,
.interview-card.audio-photo .play svg{ width:30px; height:30px; }
.interview-card.audio-photo .play{
  background:linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0) 55%);
  align-items:flex-end;
  padding-bottom:10px;
}
.interview-card .media-name{
  padding:10px 12px 14px;
  font-size:13px;
  font-weight:600;
}

.articles-list{
  display:flex;
  flex-direction:column;
  margin-top:36px;
  border-top:1px solid var(--line);
}
.article-row{
  display:block;
  padding:18px 2px;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  color:inherit;
}
.article-row .media{
  display:block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:6px;
}
.article-row .title{
  font-size:15.5px;
  font-weight:600;
  line-height:1.4;
  color:var(--text);
}
.article-row .title .arrow{
  margin-left:6px;
  font-weight:400;
  color:var(--muted);
  white-space:nowrap;
}
.article-row:hover .title{ color:var(--accent); }

@media (max-width:880px){
  .interviews-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:560px){
  .interviews-grid{ grid-template-columns:1fr 1fr; gap:12px; }
}

/* ---------- Photo / bio / contact ---------- */
.about-section{
  padding-bottom:100px;
}
.about-grid{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:36px;
  align-items:start;
}
.about-grid > div{ min-width:0; }
.about-photo img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:50%;
}
.about-name{
  font-size:22px;
}
.about-role{
  color:var(--muted);
  font-size:14px;
  margin-top:4px;
}
.contact-line{
  margin-top:28px;
  font-size:15px;
}
.contact-line a{
  font-weight:600;
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px solid currentColor;
  overflow-wrap:anywhere;
}

@media (max-width:560px){
  .about-grid{ grid-template-columns:100px 1fr; }
}

/* ---------- Footer ---------- */
.site-footer{
  text-align:center;
  padding:28px 0 40px;
  font-size:12.5px;
  color:var(--muted);
}
