/* ============================================================
   Site Valentin Ménard — design "navy + or"
   Design tokens + composants. Responsive via clamp() + grilles fluides.
   ============================================================ */

:root {
  /* Couleurs */
  --navy: #0F1626;
  --navy-card: #131C30;
  --gold: #C9A24B;
  --gold-hover: #D9B65C;
  --text: #F4F2EC;
  --text-quote: #F1EEE6;
  --text-quote-2: #E7E3D8;
  --text-body: #C0BCB2;
  --text-body-2: #D6D2C8;
  --text-muted: #969187;
  --nav-inactive: #B4B0A6;
  --on-gold: #0F1626;
  --sub-on-gold: #5A4818;
  --roman: #4A5570;
  --sep: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.10);

  /* Typographies */
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-serif: 'Newsreader', serif;

  /* Layout */
  --maxw: 1080px;
  --pad-x: clamp(20px, 5vw, 44px);
  --pad-y: clamp(44px, 6vw, 60px);

  /* Effets */
  --shadow-img: 0 30px 60px -18px rgba(0, 0, 0, 0.5);
  --halo: radial-gradient(120% 90% at 80% 0%, rgba(201, 162, 75, 0.14), transparent 60%);
  --media-overlay: linear-gradient(180deg, transparent 45%, rgba(15, 22, 38, 0.92) 100%);
  --media-overlay-strong: linear-gradient(180deg, transparent 50%, rgba(15, 22, 38, 0.94) 100%);
}

/* -------- Base -------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a { color: var(--gold); }
a:hover { color: var(--gold-hover); }

/* -------- Utilitaires layout -------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding-top: var(--pad-y); padding-bottom: var(--pad-y); }
.sep-top { border-top: 1px solid var(--sep); }
.sep-bottom { border-bottom: 1px solid var(--sep); }
.halo { background: var(--halo); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.eyebrow--dot {
  display: inline-block;
  padding-left: 16px;
  text-indent: -16px;
}
.eyebrow--dot::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--gold);
}

.h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: -0.01em;
  margin: 0;
}

/* -------- Boutons -------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--on-gold);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--gold-hover); color: var(--on-gold); transform: translateY(-1px); }
.btn--nav { padding: 10px 18px; font-size: 13px; }
.btn--md { padding: 14px 24px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--navy { background: var(--navy); color: var(--gold); padding: 18px 34px; font-size: 16px; }
.btn--navy:hover { background: #05080f; color: var(--gold); }

/* -------- Navigation -------- */
.nav {
  background: var(--navy);
  border-bottom: 1px solid var(--sep);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav__brand {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 14px;
}
.nav__links {
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  font-size: 14px;
  font-weight: 500;
}
.nav__link { color: var(--nav-inactive); text-decoration: none; }
.nav__link:hover { color: var(--gold-hover); }
.nav__link[aria-current="page"] { color: var(--gold); }

@media (max-width: 640px) {
  .nav__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .nav__row {
    border-top: 1px solid var(--sep);
    padding-top: 12px;
  }
  .nav__links { gap: 14px; }
  .nav-cta {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12.5px;
    white-space: nowrap;
    box-shadow: none;
  }
  .nav-cta:hover { background: transparent; color: var(--gold-hover); transform: none; }
}

/* -------- Hero (accueil) -------- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 64px);
  padding-bottom: var(--pad-y);
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 22px 0;
}
.hero__lead {
  font-size: clamp(15px, 2.2vw, 16px);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 460px;
}
.hero__media { display: flex; justify-content: flex-end; }
@media (max-width: 720px) {
  .hero__media { order: -1; }
}
.hero__portrait {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-img);
}

/* -------- Bandeau livre (accueil) -------- */
.book-banner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--sep);
  border-bottom: 1px solid var(--sep);
}
.book-banner__cover {
  flex: none;
  width: 78px; height: auto;
  border-radius: 3px;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.6);
}
.book-banner__text { flex: 1; min-width: 0; }
.book-banner__label { margin-bottom: 6px; }
.book-banner__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(15px, 2.6vw, 22px);
  line-height: 1.25;
  color: var(--text);
  max-width: 505px;
}
@media (max-width: 640px) {
  .book-banner__title { max-width: none; }
}
.book-banner .btn { flex: none; white-space: nowrap; }
@media (max-width: 640px) {
  .book-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 24px 20px 22px;
  }
  .book-banner__cover { width: 64px; }
  .book-banner__label { font-size: 10px; }
  .book-banner__title { font-size: 16px; }
  .book-banner .btn { padding: 12px 28px; }
}

/* -------- Cartes génériques -------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  padding: 28px;
  border: 1px solid var(--border-card);
  border-radius: 14px;
}
.card__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.card__title { font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.card__text { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* -------- Bloc 2 colonnes (parcours / auteur) -------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.split__text p { font-size: 15px; line-height: 1.7; color: var(--text-body); margin: 0 0 14px; max-width: 460px; }
.split__text p:last-child { margin-bottom: 0; color: var(--text-muted); }
.split__text strong { color: var(--text); }
.square-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  width: 100%;
  justify-self: end;
}
.square-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* -------- Témoignage vedette (accueil) -------- */
.featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.featured__img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 13 / 16;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.quote-lg {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.quote-lg .hl { color: var(--gold); }
.attrib { margin-top: 24px; }
.attrib__name { font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.attrib__role { font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 2px; }

/* -------- Grille "personnes" (cartes photo) accueil -------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.person-card {
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.person-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.person-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--media-overlay);
}
.person-card__cap {
  position: absolute; left: 22px; right: 22px; bottom: 20px;
  z-index: 1;
}
.person-card__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--text); }
.person-card__role { font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 2px; }
.person-card__quote { padding: 26px; font-size: 15px; line-height: 1.65; color: var(--text-body-2); }

/* -------- CTA (bloc or) -------- */
.cta {
  padding: clamp(32px, 5vw, 48px);
  border-radius: 16px;
  background: var(--gold);
  color: var(--on-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 30px);
  letter-spacing: -0.01em;
}
.cta__sub { font-size: 15px; font-weight: 600; margin-top: 6px; color: var(--sub-on-gold); }

/* ============================================================
   Page Témoignages
   ============================================================ */
.t-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
}
.t-featured__img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 17 / 21;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.t-featured__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 26px);
  color: var(--text);
  margin-bottom: 4px;
}
.t-featured__role {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}
.t-featured__quote p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.6vw, 20px);
  line-height: 1.6;
  color: var(--text-quote);
  margin: 0 0 16px;
}

/* Mur 2 colonnes (ordre alterné contrôlé) */
.t-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}
.t-col { display: flex; flex-direction: column; gap: 24px; }
.t-card {
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--navy-card);
}
.t-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.t-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--media-overlay-strong);
}
.t-card__cap { position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 1; }
.t-card__name { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--text); }
.t-card__role { font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 2px; }
.t-card__body { padding: 28px; }
.t-card__body p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-quote-2);
  margin: 0 0 12px;
}
.t-card__body p:last-child { margin-bottom: 0; }

/* ============================================================
   Page Livre
   ============================================================ */
.book-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 60px);
  padding-bottom: var(--pad-y);
}
.book-hero__title {
  font-family: 'Anton', var(--font-head);
  font-weight: 400;
  font-size: clamp(44px, 9vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.book-hero__subtitle {
  font-size: clamp(17px, 2.6vw, 19px);
  line-height: 1.42;
  color: var(--text-body-2);
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 430px;
}
.book-hero__pitch {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 440px;
}
.book-hero__cover-wrap { display: flex; justify-content: center; position: relative; }
@media (max-width: 720px) {
  .book-hero__cover-wrap { order: -1; }
}
.book-hero__cover-wrap::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.34) 0%, rgba(201, 162, 75, 0.12) 45%, transparent 72%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.book-hero__cover {
  position: relative;
  z-index: 1;
  width: min(262px, 70vw);
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px -18px rgba(201, 162, 75, 0.35), 0 4px 14px rgba(0, 0, 0, 0.4);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  border-top: 1px solid var(--sep);
  border-bottom: 1px solid var(--sep);
}
.stat { padding: 32px clamp(16px, 3vw, 40px); }
.stat__num { font-family: var(--font-head); font-weight: 900; font-size: 40px; color: var(--gold); }
.stat__label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 20px 6px; text-align: center; }
  .stat__num { font-size: 26px; }
  .stat__label { font-size: 11px; white-space: nowrap; }
}

.lead-text {
  font-size: 16px;
  color: var(--text-body);
  margin: 0 0 30px;
  max-width: 640px;
  line-height: 1.6;
}

/* Étapes numérotées */
.steps { display: flex; align-items: flex-start; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; }
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
}
.step__title { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.step__text { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* Sommaire */
.toc { display: flex; flex-direction: column; }
.toc__row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(16px, 3vw, 24px);
  padding: 22px 0;
  border-top: 1px solid var(--sep);
}
.toc__row:last-child { border-bottom: 1px solid var(--sep); }
.toc__roman { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--roman); }
.toc__title { font-weight: 700; font-size: clamp(17px, 2.4vw, 19px); }
.toc__names { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

/* Auteur */
.author__img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.author__bio { font-size: 15px; line-height: 1.7; color: var(--text-body); margin: 0; }

/* -------- Pied de page -------- */
.footer {
  border-top: 1px solid var(--sep);
  padding: 30px 0;
  color: var(--text-muted);
  font-size: 13px;
}
.footer__inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer a { color: var(--text-muted); text-decoration: none; }
.footer a:hover { color: var(--gold-hover); }

/* Grille "Aperçu" (livre) — 2×2 fixe dès la tablette */
.apercu-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) {
  .apercu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Ajustements responsive fins -------- */
@media (max-width: 620px) {
  .cta { flex-direction: column; align-items: flex-start; }
  .cta .btn--navy { width: 100%; text-align: center; }
}

/* ============================================================
   Page Premier chapitre (capture email)
   ============================================================ */
.capture-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 64px) clamp(20px, 5vw, 44px);
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 6vw, 56px);
  align-items: start;
}
@media (max-width: 720px) {
  .capture-hero { grid-template-columns: 1fr; }
}

.capture-cover-wrap { display: flex; justify-content: center; position: relative; }
.capture-cover-wrap::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.34) 0%, rgba(201, 162, 75, 0.12) 45%, transparent 72%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.capture-cover {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 30px 60px -18px rgba(201, 162, 75, 0.35), 0 4px 14px rgba(0, 0, 0, 0.4);
}
.capture-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  z-index: 2;
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.5);
}

.capture-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.capture-subtitle { font-size: 16px; line-height: 1.65; color: var(--text-body); margin: 0 0 22px; }
.capture-date { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }

.benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.benefit { display: flex; align-items: flex-start; gap: 12px; }
.benefit__check {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 12px;
  margin-top: 1px;
}
.benefit__text { font-size: 15px; color: var(--text-body-2); line-height: 1.5; }

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

/* Champ piège (honeypot) anti-spam : hors écran, inaccessible au clavier et
   ignoré des lecteurs d'écran (aria-hidden). Seuls les bots qui remplissent
   aveuglément tous les champs d'un formulaire le renseignent. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.capture-form[hidden] { display: none; }
.capture-confirm[hidden] { display: none; }
.capture-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 7px 7px 7px 16px;
  align-items: center;
  max-width: 440px;
}
.capture-form__submit:disabled { opacity: 0.6; cursor: default; }
.capture-form__error {
  flex-basis: 100%;
  margin: 4px 2px 0;
  color: #E08A6B;
  font-size: 13px;
}
.capture-form__error[hidden] { display: none; }
.capture-form__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.capture-form__input::placeholder { color: var(--text-muted); }
.capture-form__submit {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--on-gold);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.capture-form__submit:hover { background: var(--gold-hover); }

.capture-confirm {
  max-width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--navy-card);
  padding: 36px 32px;
  text-align: center;
}
.capture-confirm__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.16);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.capture-confirm__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 16px;
}
.capture-confirm p { font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0 0 14px; }
.capture-confirm p:last-child { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }
.capture-confirm strong { color: var(--gold); font-weight: 700; }

/* ============================================================
   Page Téléchargement (après clic sur le lien de l'email)
   ============================================================ */
.dl-page {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.dl-card {
  max-width: 460px;
  width: 100%;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
}
.dl-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.16);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.dl-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
}
.dl-text { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0 0 28px; }
.dl-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gold);
  color: var(--on-gold);
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.dl-button:hover { background: var(--gold-hover); color: var(--on-gold); }
