/* =========================================================
   Les Amis du Domaine Array Dou Sou — v2 Premium
   ========================================================= */

:root {
  --stone: #F0EBE1;
  --parchment: #FAF7F2;
  --ink: #1A1C18;
  --ink-soft: #4A4E43;
  --pine: #2C4A3B;
  --pine-deep: #1A2E24;
  --pine-light: #3D6B52;
  --copper: #9A6A39;
  --copper-light: #C4924F;
  --gold: #B8973A;
  --line: rgba(30,33,27,.13);
  --line-soft: rgba(30,33,27,.07);
  --white: #FFFFFF;
  --max: 1200px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--stone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, .92rem + .4vw, 1.1rem);
  line-height: 1.7;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.5rem, 5vw, 3.5rem); }

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

/* ── Eyebrows ── */
.eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: .8rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--copper);
  flex-shrink: 0;
}

/* ── Headings ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.05; color: var(--ink); }
h1 { font-size: clamp(3rem, 2rem + 5vw, 6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2.2rem, 1.6rem + 2.5vw, 3.6rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); }
p { margin-bottom: 1.1rem; }
.lead {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 380;
}
strong { font-weight: 600; color: var(--ink); }

/* ── Header ── */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,.92);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .4s ease, background .4s ease;
}
.site-head.scrolled {
  background: rgba(250,247,242,.97);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(26,28,24,.06);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 80px;
}
.brand {
  display: flex; align-items: center; gap: .85rem;
  text-decoration: none; flex-shrink: 0;
}
.brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  display: block;
  letter-spacing: .01em;
  line-height: 1;
}
.brand-text span {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  text-decoration: none;
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-soft);
  padding: .4rem 0; position: relative;
  transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after, .nav a:hover::after { transform: scaleX(1); }

/* Bouton Adhérer dans le header : toujours vert plein + texte BLANC */
.site-head .btn {
  border: 1.5px solid var(--pine);
  background: var(--pine);
  color: #FFFFFF !important;
}
.site-head .btn:hover {
  background: var(--pine-deep); border-color: var(--pine-deep);
  color: #FFFFFF !important;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--copper-light);
  background: transparent;
  color: var(--white) !important;
  padding: .65rem 1.4rem; border-radius: 1px;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.btn:hover {
  background: var(--copper-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.btn--solid {
  background: var(--pine); border-color: var(--pine); color: #F7F4EE !important;
}
.btn--solid:hover { background: var(--pine-deep); border-color: var(--pine-deep); color: #FFFFFF !important; }
.btn--outline-dark {
  background: transparent; border-color: var(--pine); color: var(--pine) !important;
}
.btn--outline-dark:hover { background: var(--pine); color: #F7F4EE !important; }
.btn--gold {
  background: var(--gold); border-color: var(--gold); color: var(--white) !important;
}
.btn--gold:hover { background: #9A7B2A; border-color: #9A7B2A; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 2px; width: 42px; height: 38px;
  cursor: pointer; color: var(--ink); font-size: 1.1rem;
}

/* ── Hero (accueil) — clair, logo à droite ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--parchment);
  padding: 110px 0 clamp(2.5rem, 6vh, 4.5rem);
}
.hero::before {
  /* filigrane 1304 discret */
  content: '1304';
  position: absolute; right: -2%; bottom: -8%;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(12rem, 26vw, 30rem); line-height: 1;
  color: rgba(154,106,57,.05);
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-split {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center;
}
@media(min-width: 920px) {
  .hero-split { grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: 3.5rem; align-items: start; }
  .hero-logo { align-items: flex-start; padding-top: .5rem; }
}
.hero-logo { display: flex; justify-content: center; align-items: center; }
.hero-logo img {
  width: clamp(190px, 23vw, 300px); height: auto; aspect-ratio: 1;
  object-fit: cover; border-radius: 50%;
  box-shadow: 0 24px 60px rgba(26,28,24,.16), 0 0 0 1px rgba(154,106,57,.18);
}
@media(max-width: 919px) {
  .hero-logo img { width: clamp(150px, 40vw, 220px); }
}

.hero-content { max-width: 640px; }
.hero-content h1 {
  color: var(--ink);
  margin: .5rem 0 1.4rem;
}
.hero-content .lead { color: var(--ink-soft); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-stats {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem;
}
.hero-stats dt {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper); font-weight: 600; margin-bottom: .3rem;
}
.hero-stats dd {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  color: var(--ink); line-height: 1;
}
.hero-stats dd small {
  display: block; font-family: var(--sans); font-size: .75rem;
  color: var(--ink-soft); font-weight: 400; margin-top: .2rem; letter-spacing: 0;
}
.scroll-hint {
  position: absolute; bottom: 2rem; right: clamp(1.5rem, 5vw, 3.5rem);
  z-index: 2; display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  writing-mode: vertical-lr; text-orientation: mixed;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Photo hero (pages intérieures) ── */
.page-hero {
  position: relative; height: clamp(260px, 32vw, 420px);
  overflow: hidden; margin-top: 80px;
}
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,12,.6) 0%, rgba(10,18,12,.1) 60%, transparent 100%);
}
.page-hero-text {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
  color: var(--white);
}
.page-hero-text h1 {
  color: var(--white); font-size: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-top: .5rem;
}
.page-hero-text .eyebrow { color: var(--copper-light); }
.page-hero-text .eyebrow::before { background: var(--copper-light); }

/* ── Sections ── */
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--rule { border-top: 1px solid var(--line); }
.section--dark { background: var(--pine-deep); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--copper-light); }
.section--dark .eyebrow::before { background: var(--copper-light); }
.section--dark p, .section--dark .lead { color: rgba(255,255,255,.75); }
.section--parchment { background: var(--parchment); }

/* ── Photo grid ── */
.photo-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.photo-duo img {
  width: 100%; height: 320px;
  object-fit: cover; border-radius: 2px;
}
.photo-duo img:first-child { height: 420px; margin-top: -60px; }
@media(max-width: 680px) {
  .photo-duo { grid-template-columns: 1fr; }
  .photo-duo img:first-child { height: 260px; margin-top: 0; }
  .photo-duo img { height: 220px; }
}

.photo-full {
  width: 100%; height: clamp(260px, 38vw, 480px);
  object-fit: cover; border-radius: 2px;
  margin-top: 2rem;
}

.photo-caption {
  font-size: .78rem; color: var(--ink-soft); letter-spacing: .05em;
  margin-top: .6rem; font-style: italic;
}

/* ── Split layouts ── */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 5rem); }
@media(min-width: 860px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; } }
.split--60-40 {}
@media(min-width: 860px) { .split--60-40 { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr); } }
.split--40-60 {}
@media(min-width: 860px) { .split--40-60 { grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); } }

/* ── Cards ── */
.cards { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 3rem; background: var(--line); }
.cards--3 {}
@media(min-width: 680px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 680px) { .cards.cards--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--parchment); padding: 2rem 1.8rem;
  transition: background .2s;
}
.card:hover { background: var(--white); }
.card .num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 600;
  color: var(--copper); opacity: .4; line-height: 1; margin-bottom: .8rem;
  display: block;
}
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { margin: 0; font-size: .95rem; color: var(--ink-soft); line-height: 1.6; }

/* ── Pull quote ── */
.pull-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
  line-height: 1.2; color: var(--pine); font-weight: 500;
  border-left: 3px solid var(--copper); padding-left: 1.6rem;
  margin: 2rem 0;
}
.pull-quote--white { color: rgba(255,255,255,.88); border-color: var(--copper-light); }

/* ── Facts table ── */
.facts { list-style: none; border-top: 1px solid var(--line); margin-top: 2rem; }
.facts li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid var(--line-soft);
}
.facts .k { color: var(--ink-soft); font-size: .9rem; }
.facts .v {
  margin: 0; font-family: var(--serif); font-size: 1.2rem;
  font-weight: 600; text-align: right;
}

/* ── Timeline ── */
.timeline { list-style: none; margin-top: 2rem; }
.timeline li {
  display: grid; grid-template-columns: 150px 1fr; gap: 1.5rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.timeline .when {
  font-family: var(--serif); font-weight: 700;
  color: var(--pine); font-size: 2rem; line-height: 1.15; white-space: nowrap;
}
.timeline .what b { display: block; color: var(--ink); font-weight: 600; margin-bottom: .2rem; }
.timeline .what { color: var(--ink-soft); font-size: .95rem; }

/* ── Tiers adhésion ── */
.tiers { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); margin-top: 2.5rem; }
@media(min-width: 680px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
.tier {
  background: var(--parchment); padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  transition: background .2s;
}
.tier:hover { background: var(--white); }
.tier h3 { font-size: 1.2rem; color: var(--ink-soft); font-weight: 500; margin-bottom: .5rem; }
.tier .price {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 600;
  color: var(--pine); line-height: 1;
}
.tier .price sub { font-size: 1rem; color: var(--ink-soft); }
.tier .perk {
  color: var(--ink-soft); font-size: .9rem; margin: 1rem 0 0;
  padding-top: 1rem; border-top: 1px solid var(--line-soft); line-height: 1.6;
}
.tier-note { font-size: .82rem; color: var(--ink-soft); margin-top: 1.5rem; font-style: italic; }

/* ── Payment ── */
.pay-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
@media(min-width: 600px) { .pay-grid { grid-template-columns: repeat(3, 1fr); } }
.pay-card {
  background: var(--parchment); border: 1px solid var(--line);
  border-radius: 2px; padding: 1.4rem 1.3rem;
}
.pay-card h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--copper); margin-bottom: .7rem; }
.pay-card p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.mono { font-family: ui-monospace, monospace; font-size: .8rem; color: var(--ink); }

/* ── Embed ── */
.embed {
  background: var(--parchment); border: 1px solid var(--line);
  border-radius: 2px; overflow: hidden; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.embed-fallback { padding: 2rem; text-align: center; }
.embed-fallback p { color: var(--ink-soft); margin-bottom: 1.2rem; }

/* ── Footer ── */
.site-foot {
  background: var(--pine-deep); color: #C8D4C4;
}
.site-foot a { color: #E8E0D4; text-decoration: none; }
.site-foot a:hover { color: var(--white); }
.site-foot .wrap { padding-top: clamp(3.5rem, 6vw, 5rem); padding-bottom: 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width: 760px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

.foot-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.foot-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; }
.foot-brand-text b { font-family: var(--serif); font-size: 1.3rem; color: var(--white); display: block; }
.foot-brand-text span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-light); }

.site-foot h4 {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: #8A9E87; margin-bottom: 1.1rem; font-weight: 600;
}
.site-foot p { font-size: .88rem; color: #9AAE96; margin-bottom: .45rem; }
.site-foot ul { list-style: none; }
.site-foot li { margin-bottom: .55rem; font-size: .9rem; }

.foot-base {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  justify-content: space-between; font-size: .78rem; color: #6A7A67;
}

/* ── Animations ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media(prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .scroll-hint::after { animation: none; }
}

/* ── Responsive nav ── */
@media(max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.5rem, 5vw, 3.5rem) 1.2rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: .22s ease;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { color: var(--ink-soft) !important; padding: .9rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
  .nav a:hover, .nav a[aria-current="page"] { color: var(--ink) !important; }
  .nav a::after { display: none; }
  .nav .btn { margin: 1rem 0 0; justify-content: center; color: #F4F0E7 !important; }
}

:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

/* ── Affiches concerts (grille) ── */
.posters {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem); margin-top: 3rem;
}
@media(min-width: 760px) { .posters { grid-template-columns: repeat(3, 1fr); } }
.poster {
  display: flex; flex-direction: column;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 3px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.poster:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,28,24,.16); }
.poster-img {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 900 / 1273; background: var(--pine-deep);
}
.poster-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.poster:hover .poster-img img { transform: scale(1.03); }
.poster-body { padding: 1.1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.poster-date {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); font-weight: 600;
}
.poster-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; line-height: 1.15; color: var(--ink); }
.poster-sub { font-size: .82rem; color: var(--ink-soft); margin-bottom: .2rem; }
.poster-price { font-size: .8rem; color: var(--ink-soft); margin-top: auto; padding-top: .4rem; }
.poster .btn--reserve {
  margin-top: .7rem; justify-content: center;
  background: var(--pine); border-color: var(--pine); color: #F4F0E7 !important;
  font-size: .72rem; padding: .6rem 1rem;
}
.poster .btn--reserve:hover { background: var(--pine-deep); border-color: var(--pine-deep); }

/* ── Hero split portrait (page Soirées) ── */
.hero-portrait {
  margin-top: 80px;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: var(--parchment);
}
.hero-portrait .split { align-items: center; }
.hero-portrait-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,28,24,.18);
}
.hero-portrait-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
@media(min-width: 860px) {
  .hero-portrait .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2.5rem,5vw,5rem); }
  .hero-portrait-photo { aspect-ratio: 4 / 5; }
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 1.2rem 0; font-family: var(--serif);
  font-size: 1.25rem; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--copper); margin-left: 1rem; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.3rem; color: var(--ink-soft); max-width: 70ch; }

/* Language switcher */
.lang-switch { display: inline-flex; gap: .1rem; align-items: center; margin-left: 1rem; padding-left: 1rem; border-left: 1px solid var(--line); }
.lang-switch a { font-size: .82rem; font-weight: 600; letter-spacing: .04em; padding: .2rem .45rem; border-radius: 5px; color: var(--ink-soft); text-decoration: none; transition: background .15s, color .15s; }
.lang-switch a:hover { background: rgba(0,0,0,.05); color: var(--ink); }
.lang-switch a[aria-current="true"] { background: var(--copper, #b06a3a); color: #fff; }
@media(max-width: 860px) { .lang-switch { margin-left: 0; padding-left: 0; border-left: none; margin-top: .8rem; } }

/* Lisibilité des cartes en section sombre + chiffres or lumineux */
.section--dark .card p { color: rgba(255,255,255,.82); }
.section--dark .card h3 { color: #fff; }
.section--dark .card .num { color: #E8B84B !important; }
