/* Coloritext – style harmonisé (sobriété + pastel turquoise, sans jaune) */
:root{
  --bg: #fbfcff;
  --surface: #ffffff;
  --ink: #1f2a33;
  --muted: #556572;
  --border: rgba(31,42,51,.08);

  --tint-a: #e7f7f6; /* turquoise très clair */
  --tint-b: #e9f3ff; /* bleu très clair */
  --tint-c: #f2efff; /* lavande très claire */
  --tint-y: #fff7da; /* jaune très pâle */
  --tint-y: #fff7da; /* jaune très pâle */

  --accent: #2aa8a6;
  --accent-2: #1f7f89;

  --radius: 18px;
  --shadow: 0 8px 18px rgba(31,42,51,.05);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 12% 0%, var(--tint-b), transparent 62%),
    radial-gradient(900px 520px at 88% 12%, var(--tint-a), transparent 58%),
    radial-gradient(900px 520px at 40% 105%, var(--tint-c), transparent 62%),
    var(--bg);
}
a{ color: inherit; }
.container{
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(231,247,246,.9), rgba(233,243,255,.9));
  border: 1px solid var(--border);
  overflow:hidden;
}
.brand-mark img{
  width: 40px;
  height: 40px;
  object-fit: contain;
  display:block;
}
.brand-name{ font-weight: 800; letter-spacing: .2px; }

.header-nav{ display:flex; gap: 8px; flex-wrap: wrap; }
.nav-link{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}
.nav-link:hover{ background: rgba(42,168,166,.08); color: var(--ink); }

/* Hero + typography */
.hero{ padding: 30px 0 18px; }
.kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}
h1{
  font-size: clamp(28px, 3.6vw, 36px); /* plus petit (sobriété) */
  line-height: 1.15;
  margin: 14px 0 10px;
}
.lead{
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 76ch;
}

.section{ padding: 18px 0; }
.section + .section{ border-top: 1px solid rgba(31,42,51,.06); }
h2{ font-size: 22px; margin: 0 0 10px; }
h3{ margin: 0 0 6px; }
p{
  margin: 10px 0;
  line-height: 1.75;
  color: var(--muted);
  font-size: 17px;
  max-width: 80ch;
}
ul{
  margin: 8px 0 8px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Cards */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 820px){
  .grid{ grid-template-columns: 1fr; }
}
.card{
  background: linear-gradient(180deg, rgba(255,247,218,.78), rgba(255,255,255,.86));
  border: 1px solid rgba(31,42,51,.07);
  border-radius: var(--radius);
  padding: 14px;
}
.card .tag{\1background: rgba(255,247,218,.9);
  border: 1px solid rgba(31,42,51,.10);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.card h3{ margin: 10px 0 6px; font-size: 20px; color: var(--ink); }
.card p{ margin: 0 0 12px; max-width: none; }
.card a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  color: var(--ink);
  font-weight: 900;
}
.card a:hover{ text-decoration: underline; }

/* Note */
\1background: linear-gradient(180deg, rgba(255,247,218,.72), rgba(255,255,255,.86));
  border: 1px solid rgba(31,42,51,.07);
}
.note .avatar{
  width: 48px; height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(233,243,255,.9), rgba(231,247,246,.9));
  border: 1px solid rgba(31,42,51,.08);
  display:grid; place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.note .title{ margin:0 0 4px; font-weight: 900; color: var(--ink); }
.note .text{ margin:0; color: var(--muted); }

/* CTA */
.actions{ display:flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 18px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid var(--border);
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), #54c7c5);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(42,168,166,.16);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{ background: rgba(255,255,255,.88); color: var(--ink); }
.btn-ghost:hover{ background: rgba(255,255,255,.98); }

/* Footer */
.site-footer{
  border-top: 1px solid rgba(31,42,51,.10);
  background: rgba(255,255,255,.76);
  padding: 22px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 14px;
}
@media (max-width: 900px){ .footer-inner{ grid-template-columns: 1fr; } }
.footer-title{ margin: 0 0 8px; font-weight: 900; color: var(--ink); }
.footer-text{ margin: 0; color: var(--muted); line-height: 1.7; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 8px 0; }
.footer-links a{ text-decoration:none; color: var(--muted); border-bottom: 1px solid rgba(31,42,51,.14); }
.footer-links a:hover{ color: var(--ink); border-bottom-color: rgba(31,42,51,.26); }

.bottom-nav{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 26px;
}
.bottom-nav a{
  text-decoration:none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 14px;
}
.bottom-nav a:hover{ background: rgba(42,168,166,.08); color: var(--ink); }


/* --- OVERRIDES (force cadres jaune très pâle) --- */
.a-propos-audrey .card, .card{
  background: linear-gradient(180deg, rgba(255,247,218,.78), rgba(255,255,255,.86)) !important;
}
.a-propos-audrey .note, .note{
  background: linear-gradient(135deg, rgba(0,183,168,.22), rgba(0,120,110,.10)) !important;
  border: 1px solid rgba(0,183,168,.22);
}
.a-propos-audrey .card .tag, .card .tag{
  background: rgba(255,247,218,.9) !important;
  border: 1px solid rgba(31,42,51,.10) !important;
}


.note .subtitle{
  margin: -6px 0 10px;
  font-weight: 700;
  color: rgba(31,42,51,.70);
}


/* note-gradient-teal */
.note{
  border-radius: var(--radius, 26px);
  background: linear-gradient(180deg, rgba(0,183,168,.22), rgba(255,255,255,.92)) !important;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  margin-top: 18px;
}
.note > div{ min-width: 0; }
.note .avatar{
  border-radius: 22px !important;
  overflow:hidden !important;
  box-shadow: 0 12px 22px rgba(31,42,51,.14);
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(31,42,51,.08);
  padding: 6px;
}
.note .avatar img{
  display:block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.note .title{ font-size: 18px; }
.note .text{ margin-top: 10px; }

@media (max-width: 640px){
  .note{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 18px;
  }
  .note .avatar{ margin-top: 0; }
}

@media (max-width: 700px){
  .note{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .note .text{ text-align: left; }
}


/* anti-débordement médias */
.card video, .card iframe, .card embed, .card object,
.prose video, .prose iframe, .prose embed, .prose object{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
