/* =====================================================
   CITATION.CSS — OLFACT
   Page « Citations » (par MKH). Même DA que le site
   (luxe éditorial : crème / violet / or, Cormorant + DM Sans).
   Tokens + header + footer : voir layout.css.
   ===================================================== */

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

body.citations-page {
  font-family: "Cormorant Upright", serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: "Cormorant Upright", serif; font-weight: 500; }
::selection { background: rgba(135, 104, 48, 0.18); }

/* ----------------------- PRIMITIVES PARTAGÉES ----------------------- */
.kicker {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-deep);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn--solid { background-color: var(--plum); color: #fff; border-color: var(--plum); }
.btn--solid:hover { background-color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost { color: var(--ink); border-color: rgba(47, 24, 71, 0.45); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ------------------------------- LAYOUT ------------------------------- */
.citations > section {
  padding-inline: max(40px, calc((100% - 1080px) / 2));
}

/* -------------------------------- INTRO -------------------------------- */
.cit-hero {
  padding-top: 160px;
  padding-bottom: 20px;
  text-align: center;
}
.cit-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  color: var(--ink);
}
.cit-hero h1 em { font-style: italic; font-weight: 600; color: var(--gold-text); }
.cit-hero__lead {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(47, 24, 71, 0.76);
  max-width: 52ch;
  margin: 22px auto 0;
}

/* ------------------------------ SPOTLIGHT ------------------------------ */
.cit-feature { padding-block: 56px 130px; }
.cit-feature__card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 76px 64px 60px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 30px 70px -34px rgba(47, 24, 71, 0.32);
  text-align: center;
  overflow: hidden;
}
.cit-feature__mark {
  position: absolute;
  top: 18px;
  left: 34px;
  font-family: "Cormorant Upright", serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(215, 178, 109, 0.32);
  pointer-events: none;
}
.cit-feature__theme {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  border: 1px solid rgba(135, 104, 48, 0.4);
  border-radius: 999px;
  padding: 6px 15px;
  margin-bottom: 30px;
}
.cit-feature__quote {
  position: relative;
  font-family: "Cormorant Upright", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.32;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto 26px;
  transition: opacity 0.3s ease;
}
.cit-feature__quote.is-swapping { opacity: 0; }
.cit-feature__author {
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(47, 24, 71, 0.55);
  margin-bottom: 38px;
}
.cit-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
#btn-copy.is-done { color: var(--gold-text); border-color: var(--gold-deep); }

.cit-noscript { font-family: "DM Sans", sans-serif; color: var(--plum); text-align: center; padding: 0 22px 60px; }

/* ------------------------------ RESPONSIVE ------------------------------ */
@media (max-width: 900px) {
  .cit-feature__card { padding: 56px 36px 46px; }
  .cit-feature__mark { font-size: 5.5rem; left: 22px; }
}
@media (max-width: 600px) {
  .citations > section { padding-inline: 22px; }
  .cit-hero { padding-top: 124px; }
  .cit-feature__actions .btn { flex: 1 1 auto; }
}
