:root {
  --cream: #f7f0e7;
  --cream-soft: #fbf7f1;
  --cream-light: #fffaf4;

  --sage: #c8d3c0;
  --sage-soft: #e7ecdf;
  --sage-deep: #aebf9f;
  --sage-dark: #8fa78d;

  --lilac: #d8cbe0;
  --lilac-soft: #eee6f3;
  --lilac-deep: #bfa8d0;

  --peach: #f3ded7;
  --peach-soft: #faebe6;
  --peach-deep: #eeb9a9;

  --terracotta: #d98b74;
  --terracotta-dark: #a94f3c;
  --terracotta-soft: #f5c8ba;

  --apricot: #efb36f;
  --apricot-soft: #f8ead4;

  --powder-blue: #cddbec;
  --powder-blue-soft: #e8f0f8;

  --text: #2f2f2f;
  --muted: #6f6a64;
  --white: #ffffff;

  --border: rgba(47, 47, 47, 0.12);
  --shadow: 0 24px 70px rgba(47, 47, 47, 0.08);

  --radius: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(243, 190, 165, 0.58) 0 18%, transparent 34%),
    radial-gradient(circle at 92% 6%, rgba(205, 185, 225, 0.56) 0 18%, transparent 34%),
    radial-gradient(circle at 5% 48%, rgba(200, 211, 192, 0.42) 0 16%, transparent 34%),
    radial-gradient(circle at 96% 55%, rgba(205, 219, 236, 0.50) 0 18%, transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(239, 179, 111, 0.36) 0 18%, transparent 36%),
    linear-gradient(180deg, #fbf4ee 0%, #f8efe8 42%, #fbf4ee 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
}

p {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(34px, 4.2vw, 58px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: 24px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section > .container,
.hero > .container {
  position: relative;
  z-index: 2;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 222, 215, 0.18), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(216, 203, 224, 0.16), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(200, 211, 192, 0.13), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(205, 219, 236, 0.14), transparent 32%);
  z-index: 0;
}

.section-soft,
.resource-section,
#interventions,
#approche,
.audience-section,
.about-section,
.quote-section,
.contact-section {
  background: transparent;
}

/* ACCESSIBILITÉ */

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--text);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--text);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sage), var(--lilac));
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(143, 167, 141, 0.24);
}

.brand-text {
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 16px;
}

.nav-links a {
  opacity: 0.84;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--text);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  opacity: 1 !important;
  box-shadow: 0 12px 28px rgba(47, 47, 47, 0.14);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--terracotta-dark);
}

/* HERO */

.hero {
  padding: 92px 0 104px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 8%, rgba(243, 190, 165, 0.72) 0 18%, transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(216, 203, 224, 0.72) 0 20%, transparent 38%),
    radial-gradient(circle at 88% 88%, rgba(205, 219, 236, 0.46) 0 16%, transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(200, 211, 192, 0.50) 0 16%, transparent 34%),
    linear-gradient(180deg, rgba(251, 244, 238, 0.88), rgba(248, 239, 232, 0.55));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), var(--lilac), var(--sage));
}

.hero-copy .eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: clamp(19px, 2vw, 23px);
  color: var(--muted);
  max-width: 820px;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--white);
  box-shadow: 0 18px 38px rgba(217, 139, 116, 0.32);
}

.button-secondary {
  background: linear-gradient(135deg, #ffffff, #f5ebe4);
  color: var(--text);
  border-color: rgba(217, 139, 116, 0.22);
  box-shadow: 0 12px 28px rgba(47, 47, 47, 0.06);
}

.hero-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 203, 224, 0.44), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(200, 211, 192, 0.38), transparent 34%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.portrait-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--peach));
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin-bottom: 22px;
}

.hero-card p {
  margin-top: 0;
  margin-bottom: 22px;
  line-height: 1.65;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 9px 0 9px 32px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--terracotta);
  font-weight: 900;
}

/* SOLEIL IMAGE */

.sun-signature {
  width: 430px;
  max-width: 100%;
  margin: 0 auto 14px;
}

.sun-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-card {
  justify-items: center;
  text-align: left;
}

.contact-sun-signature {
  width: 260px;
  max-width: 86%;
  margin: -4px auto 12px;
  position: relative;
  z-index: 2;
  justify-self: center;
}

/* RESSOURCE */

.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 44px;
  max-width: 1060px;
  margin: 0 auto;
}

.resource-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.small-note {
  color: var(--muted);
  font-size: 15px;
}

.signup-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 22px 48px rgba(47,47,47,0.08);
  position: relative;
  overflow: hidden;
}

.signup-card-embed {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(243, 222, 215, 0.62), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(216, 203, 224, 0.58), transparent 34%),
    radial-gradient(circle at 80% 92%, rgba(205, 219, 236, 0.44), transparent 34%),
    rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.68);
}

/* FORMULAIRE SIMPLE */

.custom-signup-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  padding: 34px;
  border: 1px solid rgba(217, 139, 116, 0.18);
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 10;
}

.custom-signup-form h3 {
  color: var(--terracotta-dark);
  font-size: 34px;
  margin-bottom: 4px;
}

.custom-signup-form p {
  color: #3c4858;
  font-size: 16px;
  line-height: 1.5;
}

.custom-signup-form label {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}

.custom-signup-form input[type="text"],
.custom-signup-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: #ffffff;
  padding: 14px 16px;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
}

.custom-consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  margin-top: 6px;
  font-weight: 400 !important;
  line-height: 1.45;
}

.custom-consent input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.custom-consent span {
  font-weight: 400;
  color: #3c4858;
}

.custom-small {
  font-size: 13px !important;
  color: var(--muted) !important;
  margin-bottom: 4px;
}

.custom-submit-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 50;
  pointer-events: auto;
  box-shadow: 0 18px 38px rgba(217, 139, 116, 0.30);
}

.custom-submit-button:hover {
  background: var(--terracotta-dark);
}

.input--hidden {
  display: none !important;
}

/* CARTES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  min-height: 220px;
  box-shadow: 0 24px 58px rgba(47, 47, 47, 0.09);
  position: relative;
  overflow: hidden;
}

.card h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 900;
}

.card p {
  color: rgba(47, 47, 47, 0.78);
}

.cards-grid .card:nth-child(1),
.accent-sage {
  background: linear-gradient(145deg, #ffffff 0%, #d7e2ce 58%, #c8d3c0 100%);
}

.cards-grid .card:nth-child(2),
.accent-lilac {
  background: linear-gradient(145deg, #ffffff 0%, #e1d3eb 58%, #d8cbe0 100%);
}

.cards-grid .card:nth-child(3),
.accent-peach {
  background: linear-gradient(145deg, #ffffff 0%, #dceaf7 58%, #cddbec 100%);
}

.cards-grid .card:nth-child(4),
.accent-terracotta {
  background: linear-gradient(145deg, #ffffff 0%, #f3c09d 52%, #efb36f 100%);
}

.cards-grid .card:nth-child(5) {
  background: linear-gradient(145deg, #ffffff 0%, #f7d3c8 55%, #f3ded7 100%);
}

.cards-grid .card:nth-child(6) {
  background: linear-gradient(145deg, #ffffff 0%, #e7ecdf 55%, #c8d3c0 100%);
}

/* APPROCHE */

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.tools-row span {
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 34px rgba(47, 47, 47, 0.08);
  font-weight: 900;
  color: var(--text);
  padding: 13px 18px;
  border-radius: 999px;
}

.tools-row span:nth-child(1) {
  background: linear-gradient(135deg, #c8d3c0 0%, #e7ecdf 100%);
}

.tools-row span:nth-child(2) {
  background: linear-gradient(135deg, #d8cbe0 0%, #eee6f3 100%);
}

.tools-row span:nth-child(3) {
  background: linear-gradient(135deg, #f3ded7 0%, #faebe6 100%);
}

.tools-row span:nth-child(4) {
  background: linear-gradient(135deg, #cddbec 0%, #e8f0f8 100%);
}

/* POUR QUI */

.audience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.audience-section .eyebrow,
.audience-section h2 {
  text-align: center !important;
  justify-content: center !important;
}

.audience-list div {
  min-height: 170px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 28px !important;
  border-radius: 28px;
  font-size: 18px;
  line-height: 1.35;
  box-shadow: 0 24px 56px rgba(47, 47, 47, 0.10);
  font-weight: 900;
  color: var(--text);
}

.audience-list div:nth-child(1) {
  background: linear-gradient(135deg, #c8d3c0 0%, #aebf9f 100%);
}

.audience-list div:nth-child(2) {
  background: linear-gradient(135deg, #d8cbe0 0%, #bfa8d0 100%);
}

.audience-list div:nth-child(3) {
  background: linear-gradient(135deg, #f3ded7 0%, #eeb9a9 100%);
}

.audience-list div:nth-child(4) {
  background: linear-gradient(135deg, #d98b74 0%, #c86f58 100%);
  color: #ffffff;
}

/* À PROPOS */

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--lilac), var(--peach));
  transform: rotate(-2deg);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.about-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  transform: rotate(2deg) scale(1.04);
}

/* CITATION */

.quote-box {
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 139, 116, 0.42), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(216, 203, 224, 0.62), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(200, 211, 192, 0.58), transparent 28%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(243, 222, 215, 0.72) 28%,
      rgba(216, 203, 224, 0.66) 54%,
      rgba(200, 211, 192, 0.62) 78%,
      rgba(255, 255, 255, 0.9) 100%
    );
  color: var(--text);
  padding: 46px 56px 62px;
  border-radius: 38px;
  text-align: center;
  box-shadow: 0 26px 68px rgba(47, 47, 47, 0.10);
}

.quote-box p {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
}

.quote-box strong {
  color: var(--terracotta-dark);
}

.quote-box em {
  color: var(--sage-dark);
  font-style: normal;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.86));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 34px;
  padding: 24px 28px 28px;
  display: grid;
  gap: 12px;
  box-shadow: 0 22px 48px rgba(47,47,47,0.08);
  position: relative;
  overflow: hidden;
}

.contact-link {
  display: block;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(217, 139, 116, 0.18);
  border-radius: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--cream-soft));
  position: relative;
  z-index: 1;
}

/* FOOTER */

.site-footer {
  background: var(--text);
  color: var(--white);
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.76);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr !important;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-photo {
    transform: none;
    max-width: 520px;
  }

  .about-photo img {
    transform: none;
  }

  .sun-signature {
    width: 360px;
  }

  .contact-sun-signature {
    width: 230px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 72px 0 82px;
  }

  h1 {
    font-size: clamp(32px, 8vw, 44px);
  }

  .sun-signature {
    width: 280px;
    margin-bottom: 16px;
  }

  .contact-sun-signature {
    width: 200px;
    margin: -2px auto 10px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .signup-card-embed {
    max-width: 100%;
    padding: 16px;
    border-radius: 30px;
  }

  .custom-signup-form {
    padding: 24px;
  }

  .custom-signup-form h3 {
    font-size: 30px;
  }

  .about-photo img {
    height: 480px;
  }

  .quote-box {
    padding: 38px 24px 56px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-card,
  .signup-card {
    padding: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .sun-signature {
    width: 245px;
  }

  .contact-sun-signature {
    width: 175px;
  }

  .custom-signup-form {
    padding: 20px;
  }

  .about-photo img {
    height: 420px;
  }
}
/* CORRECTION TAILLE TITRE HERO */

.hero h1 {
  font-size: clamp(30px, 3.4vw, 48px) !important;
  line-height: 1.12 !important;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(30px, 7vw, 40px) !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 29px !important;
  }
}
