
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1c1b1f;
  background: #f7f2ea;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #b8862b; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #16121c;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.logo {
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
}

.logo span { color: #d6a84f; margin: 0 4px; }

nav a {
  margin-left: 22px;
  font-size: 14px;
  opacity: .92;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  font-size: 24px;
  border: 0;
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(19,14,25,.88), rgba(19,14,25,.45)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 6%;
  color: white;
}

.hero-content { max-width: 780px; }

.kicker {
  color: #d6a84f;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin: 14px 0;
}

.lead, .standfirst {
  font-size: 20px;
  color: #f2eadf;
  max-width: 780px;
}

.btn, button {
  display: inline-block;
  border: none;
  padding: 13px 20px;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.primary { background: #d6a84f; color: #16121c; }
.secondary { border: 1px solid rgba(255,255,255,.45); color: white; margin-left: 10px; }

.container {
  width: 88%;
  max-width: 1180px;
  margin: 55px auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}

.feature-card, .article-card, .box {
  background: white;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0,0,0,.07);
}

.feature-card.large { grid-row: span 2; min-height: 360px; }
.feature-card.large h2 { font-size: 40px; line-height: 1.1; }

.category {
  color: #9f6d1c;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.readmore {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: #9f6d1c;
}

.section-head {
  text-align: center;
  margin: 70px 0 25px;
}
.section-head.left { text-align: left; margin-top: 0; }

.rubrique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rubrique {
  display: block;
  background: #16121c;
  color: white;
  padding: 24px;
  border-radius: 12px;
  min-height: 145px;
}
.rubrique strong { display: block; font-size: 18px; margin: 10px 0 6px; }
.rubrique span { color: #d8d0c4; font-size: 14px; }

.content-layout {
  display: grid;
  grid-template-columns: 2fr .85fr;
  gap: 28px;
  margin-top: 70px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article-list.wide { grid-template-columns: repeat(3, 1fr); }

.sidebar .box { margin-bottom: 22px; }

.newsletter {
  margin-top: 70px;
  background: #16121c;
  color: white;
  padding: 42px;
  border-radius: 18px;
  text-align: center;
}
.newsletter input {
  padding: 13px;
  width: 310px;
  max-width: 100%;
  border: 0;
}
.newsletter button {
  background: #d6a84f;
  color: #16121c;
}
.form-msg { color: #d6a84f; font-weight: 700; }

.article-page {
  width: 88%;
  max-width: 1180px;
  margin: 55px auto;
  display: grid;
  grid-template-columns: 2fr .85fr;
  gap: 34px;
  align-items: start;
}
.article-page.single { grid-template-columns: 1fr; max-width: 860px; }

.article-full {
  background: white;
  padding: 44px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.07);
}
.article-full h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 10px;
}
.article-full h2 { margin-top: 34px; }
.article-full p { font-size: 18px; }
.article-full .standfirst { color: #4d4655; font-size: 22px; }
.meta { color: #777; font-size: 14px !important; }
.backlink { color: #9f6d1c; font-weight: 800; }
blockquote {
  border-left: 5px solid #d6a84f;
  margin: 30px 0;
  padding: 18px 24px;
  background: #f7f2ea;
  font-size: 21px;
  font-weight: 700;
}
.article-footer {
  margin-top: 40px;
  background: #f7f2ea;
  padding: 18px;
  border-radius: 10px;
}

.rubrique-header {
  background: white;
  padding: 42px;
  border-radius: 16px;
  margin-bottom: 28px;
}
.rubrique-header h1 { font-size: 48px; margin: 0; }

footer {
  text-align: center;
  padding: 34px;
  color: #777;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #16121c;
    padding: 16px 6%;
  }
  nav.open { display: block; }
  nav a { display: block; margin: 12px 0; }

  .featured-grid,
  .rubrique-grid,
  .content-layout,
  .article-list,
  .article-list.wide,
  .article-page {
    grid-template-columns: 1fr;
  }

  .feature-card.large { min-height: auto; }
  .feature-card.large h2 { font-size: 30px; }
  .article-full { padding: 28px; }
  .secondary { margin-left: 0; margin-top: 10px; }
}
