/* =========================================================
   MOUVEMENT MARANATHA — Feuille de style globale
   Charte : Blanc & Or | Design moderne (façon 21st.dev)
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --gold-900: #8a6d1a;
  --gold-700: #b8901f;
  --gold-500: #d4af37;
  /* or principal */
  --gold-400: #e6c15a;
  --gold-300: #f2d98a;
  --gold-100: #fbf3d8;

  --ink-900: #14130f;
  --ink-700: #33302a;
  --ink-500: #6b6659;
  --ink-300: #a8a292;

  --paper: #ffffff;
  --paper-2: #fdfbf5;
  --paper-3: #faf6ea;
  --line: rgba(138, 109, 26, 0.16);

  --grad-gold: linear-gradient(135deg, #f2d98a 0%, #d4af37 45%, #b8901f 100%);
  --grad-gold-soft: linear-gradient(135deg, #fbf3d8 0%, #f2d98a 100%);
  --shadow-sm: 0 2px 10px rgba(20, 19, 15, 0.06);
  --shadow-md: 0 12px 40px rgba(138, 109, 26, 0.12);
  --shadow-lg: 0 30px 80px rgba(138, 109, 26, 0.18);

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--ink-900);
  line-height: 1.15;
  font-weight: 600;
}


/* ---------- Notre vision Refont ---------- */
.vision-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    text-align:center;
}

.vision-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.vision-card__image{

    height:180px;
    overflow:hidden;
}

.vision-card__image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.vision-card:hover img{

    transform:scale(1.08);
}

.vision-card__icon{

    width:72px;
    height:72px;

    background:#d4af37;
    color:#fff;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    position:absolute;
    top:145px;
    left:50%;
    transform:translateX(-50%);

    border:6px solid white;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.vision-card__content{

    padding:55px 25px 30px;
}

.vision-card h3{

    font-size:1.5rem;
    margin-bottom:15px;
    color:#222;
}

.vision-card p{

    color:#666;
    line-height:1.7;
}

/* ---------- Nos missions Refont---------- */

.mission-card{

    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.mission-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.mission-card__image{

    height:220px;
    overflow:hidden;
}

.mission-card__image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.mission-card:hover img{

    transform:scale(1.08);
}

.mission-card__icon{

    position:absolute;
    top:180px;
    left:50%;
    transform:translateX(-50%);

    width:74px;
    height:74px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;
    background:#c79b3b;
    color:#fff;

    font-size:30px;

    border:6px solid #fff;

    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.mission-card__content{

    padding:60px 28px 30px;
    text-align:center;
}

.mission-card__content h3{

    margin-bottom:15px;
    color:#222;
    font-size:1.45rem;
}

.mission-card__content p{

    color:#666;
    line-height:1.8;
}

.mission-card--large{

    grid-column:1/-1;
}

/* -----------Nos entités -----------*/
.entity-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .4s;
}

.entity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

.entity-card__image {
  height: 210px;
  overflow: hidden;
}

.entity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.entity-card:hover img {
  transform: scale(1.08);
}

.entity-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0));
}

.entity-card__icon {
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #C79B3B;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  border: 6px solid white;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.entity-card__content {
  padding: 58px 28px 30px;
  text-align: center;
}

.entity-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #fdfbfb;
}

.entity-card p {
  color: #f2f2f2;
  line-height: 1.7;
}

.entity-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 50px;
  background: #C79B3B;
  color: white;
  font-weight: 600;
  transition: .3s;
}

.entity-card:hover .entity-btn {
  background: #A97C24;
}


.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */

.entity-card{
    position:relative;
    display:block;
    height:470px;
    overflow:hidden;
    border-radius:28px;
    text-decoration:none;
    color:#fff;
    transition:.45s;
}

.entity-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.entity-card__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.85) 5%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.15) 70%,
            transparent 100%
        );
}

.entity-card__content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:35px;
    z-index:2;
    text-align:center;
}

.entity-card h3{
    font-size:2rem;
    margin-bottom:12px;
    font-weight:700;
    font-family:Georgia, serif;
}

.entity-card p{
    font-size:1rem;
    line-height:1.6;
    margin-bottom:28px;
    opacity:.95;
}

.entity-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#d78a15;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.entity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.entity-card:hover img{
    transform:scale(1.08);
}

.entity-card:hover .entity-btn{
    background:#f0a322;
}

/*--------Objectif refont -------*/
.objectif-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.objectif-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.objectif-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.objectif-content{
    padding:25px;
    text-align:center;
}

.objectif-content i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#c98a1a;
    color:#fff;
    font-size:24px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:-55px auto 20px;
    border:5px solid #fff;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.objectif-content p{
    color:#555;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/*--------Libraire----------*/
/* ===========================
   LIBRAIRIE
=========================== */

.book-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    cursor:pointer;
}

.book-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.book-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.book-content{
    padding:28px 22px;
    text-align:center;
}

.book-content i{
    font-size:32px;
    color:var(--primary);
    margin-bottom:18px;
}

.book-content h3{
    font-size:1.1rem;
    line-height:1.6;
    color:var(--ink-900);
    margin:0;
    font-weight:600;
}


/* ---------- Utilitaires ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-700);
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-gold);
}

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

.section--alt {
  background: var(--paper-2);
}

.section--dark {
  background: radial-gradient(120% 120% at 50% 0%, #1c1a14 0%, #0d0c09 100%);
  color: #efeada;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 18px 0 14px;
}

.section-head p {
  color: var(--ink-500);
  font-size: 1.05rem;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .28s ease;
  white-space: nowrap;
}

.btn--gold {
  background: var(--grad-gold);
  color: #2a2205;
}

.btn--gold:hover {
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-900);
}

.btn--ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  background: var(--paper-2);
}

.btn--light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
}

.btn--light:hover {
  background: rgba(255, 255, 255, .2);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all .3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-sm);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .04em;
}

.nav__brand img {
  height: 34px;
  width: auto;
}

.nav__brand span {
  color: var(--gold-700);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-700);
  background: var(--paper-3);
}

.nav__cta {
  margin-left: 8px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--paper);
}

/* Couche image de fond animée — effet Ken Burns (zoom/panoramique lent, via transform = GPU) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/hero\ 5.png") center right / cover no-repeat;
  transform: scale(1.08);
  transform-origin: 62% 42%;
  animation: heroKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}

/* Voile blanc & or au-dessus de l'image (préserve la lisibilité du texte) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, .4);
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  100% {
    transform: scale(1.18) translate(-2%, -1.5%);
  }
}

/* Hero d'accueil sur image sombre : texte clair (cohérent avec les heros Formations / Voice & TV) */
.hero .hero__content h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.hero .hero__content p.lead {
  color: #f2efe6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

.hero .hero__verse {
  color: #f2efe6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}

.hero .btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.hero__glow {
  position: absolute;
  top: -10%;
  right: -5%;
  z-index: 2;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(242, 217, 138, .55) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 22px 0;
  letter-spacing: -.01em;
}

.hero__content p.lead {
  font-size: 1.18rem;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__verse {
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-700);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__logo-card {
  position: relative;
  background: var(--paper);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: float 7s ease-in-out infinite;
}

.hero__logo-card img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 12px 30px rgba(212, 175, 55, .35));
}

.hero__badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
}

.hero__badge b {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-700);
}

.hero__badge--1 {
  top: 6%;
  left: -4%;
  animation: float 6s ease-in-out infinite;
}

.hero__badge--2 {
  bottom: 8%;
  right: -6%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ---------- Bandeau piliers ---------- */
.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.pillar {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Photo de la carte (repli doré si l'image n'est pas encore fournie) */
.pillar__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center;
}

.pillar__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 19, 15, .34) 0%, rgba(20, 19, 15, 0) 55%);
}

.pillar__icon {
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-sm);
}

.pillar__body {
  padding: 24px 18px 26px;
}

.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.pillar p {
  font-size: .84rem;
  color: var(--ink-500);
}

/* Bloc image générique (repli doré si l'image n'est pas encore fournie) */
.media-block {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

/* Galerie de photos (repli doré si les images ne sont pas encore fournies) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* Bandeau photo « Notre engagement » (repli doré foncé si l'image manque) */
.engagement-banner {
  position: relative;
  overflow: hidden;
  color: #efeada;
}

.engagement-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--gold-900);
  background-size: cover;
  background-position: center;
}

.engagement-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 11, .74) 0%, rgba(18, 16, 11, .62) 100%);
}

.engagement-banner .container {
  position: relative;
  z-index: 1;
}

.engagement-banner h2 {
  color: #fff;
}

.engagement-banner .eyebrow {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
  color: var(--gold-300);
}

/* Carte avec photo en en-tête (repli doré si non fournie) */
.card--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card--photo .card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center;
}
.card--photo .card__body {
  padding: 24px 28px 28px;
}
.card--photo .card__icon {
  margin-bottom: 14px;
}

/* ---------- Fondateur ---------- */
.founder {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.founder__media {
  position: relative;
}

.founder__media::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border-radius: var(--radius);
  background: var(--grad-gold-soft);
  border: 1px solid var(--gold-300);
}

.founder__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center top;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.founder__badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #2a2205;
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 3px solid var(--paper);
  white-space: nowrap;
}

.founder__role {
  color: var(--gold-700);
  font-weight: 600;
  font-family: var(--font-sans);
  margin: 4px 0 18px;
}

.founder__quote {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-700);
}


/* ------ Cart certificat ----*/
.course-card{
    display: flex;
    align-items:center;
    gap:30px;
    background:#fff;
    border-radius:24px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    margin-bottom:25px;

}

.course-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.course-card__image{

    width:210px;
    min-width:210px;
    height:250px;

    border-radius:18px;

    overflow:hidden;

    background:#f5f5f5;

}

.course-card__image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;

}

.course-card:hover img{

    transform:scale(1.05);

}

.course-card__content{

    flex:1;

}

.course-type{

    display:inline-block;

    background:#F5E5B8;

    color:#9a6700;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    font-size:.9rem;

    margin-bottom:15px;

}

.course-card h3{

    font-size:1.7rem;

    margin-bottom:15px;

}

.course-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.course-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.course-infos{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.course-infos span{

    background:#f4f4f4;

    padding:8px 18px;

    border-radius:25px;

    font-size:.9rem;

}

.course-btn{

    background:#d68b00;

    color:#fff;

    padding:12px 25px;

    border-radius:30px;

    text-decoration:none;

    transition:.3s;

}

.course-btn:hover{

    background:#b97700;

}

/*==========================
    BROCHURE
==========================*/

.brochure-section{
    padding:80px 20px;
}

.brochure-card{

    max-width:1100px;
    margin:auto;

    background:#f3f3f3;

    border-radius:30px;

    padding:35px;

    display:flex;
    align-items:center;
    gap:50px;

}

.brochure-image{

    width:300px;
    min-width:280px;
    height: 400px;

    background:#fff;

    border-radius:22px;

    padding:25px;

    display:flex;
    justify-content:center;
    align-items:center;

}

.brochure-image img{

    width:600px;
    transition:.4s;

}

.brochure-card:hover .brochure-image img{

    transform:scale(1.05);

}

.brochure-content{

    flex:1;

}

.brochure-content h2{

    font-size:2rem;

    color:#222;

    margin-bottom:20px;

}

.brochure-content p{

    color:#555;

    line-height:1.9;

    font-size:17px;

    margin-bottom:35px;

    max-width:650px;

}

.btn-download{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#d88b06;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.btn-download:hover{

    background:#b97704;

    transform:translateY(-3px);

}

/* ---------- Notre équipe (style « Board of Directors ») ---------- */
.team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.team-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0;
}

.team-head h2 .u {
  border-bottom: 4px solid var(--gold-500);
  padding-bottom: 2px;
}

.team-head p {
  color: var(--ink-500);
  font-size: 1rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.team-card {
  flex: 1 1 300px;
  max-width: 344px;
}

/* Photo sur fond pastel (repli avec icône avatar tant que la vraie photo n'est pas fournie) */
.team-card__photo {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  background-color: #fbf3d8;
  background-size: cover;
  background-position: center top;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.team-card:nth-child(3n+2) .team-card__photo {
  background-color: #faf6ea;
}

.team-card:nth-child(3n+3) .team-card__photo {
  background-color: #f3e6c8;
}

.team-card__photo i {
  font-size: 3.4rem;
  color: rgba(138, 109, 26, .3);
}

.team-card__role {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.team-card__body {
  padding: 18px 4px 0;
}

.team-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  text-align: center;
}

.team-card__body p {
  font-size: .9rem;
  color: var(--ink-500);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .team-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .founder__media {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ---------- Cartes / bento ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, .4);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-gold-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card__icon i {
  font-size: 1.35rem;
  color: var(--gold-700);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-500);
  font-size: .95rem;
}

.card ul.check {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.card ul.check li {
  position: relative;
  padding-left: 26px;
  font-size: .9rem;
  color: var(--ink-700);
}

.card ul.check li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

/* Carte entité (grande, avec image de fond dégradé) */
.entity {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all .3s;
}

.entity:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.entity__head {
  padding: 28px 30px 0;
}

.entity__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.entity__head h3 {
  font-size: 1.6rem;
  margin: 10px 0;
}

.entity__body {
  padding: 0 30px 30px;
  color: var(--ink-500);
}

/* ---------- Timeline (histoire) ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold-500), transparent);
}

.timeline__item {
  position: relative;
  padding-bottom: 34px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 0 5px var(--paper-3);
}

.timeline__item h4 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.timeline__item p {
  color: var(--ink-500);
  font-size: .95rem;
}

/* ---------- Organigramme ---------- */

.org {
  display: grid;
  gap: 20px;
}

.org__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.org__node {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.org__node--lead {
  background: var(--grad-gold-soft);
  border-color: var(--gold-400);
}

.org__node h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.org__node p {
  font-size: .88rem;
  color: var(--ink-500);
}

.org__cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.org__cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  transition: .3s;
}

.org__cell:hover {
  border-color: var(--gold-500);
  background: var(--paper-2);
  transform: translateY(-4px);
}

.org__cell span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

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

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#faf7f2;
    color:#222;
}

.orga{

    max-width:1200px;
    margin:auto;
    padding:60px 20px;
    text-align:center;
}

h2{

    font-size:38px;
    margin-bottom:10px;
}

.subtitle{

    color:#666;
    margin-bottom:50px;
}

.tree{

    display:flex;
    flex-direction:column;
    align-items:center;
}

.box{

    width:350px;
    padding:25px;
    border-radius:12px;
    background:#fff;
    border:2px solid #d9c49a;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.president{

    background:#fdf3d5;
}

.coordinator{

    background:white;
}

.line.vertical{

    width:3px;
    height:45px;
    background:#b49b63;
}

h4{

    margin:20px 0;
    font-size:22px;
}

.line.horizontal{

    width:80%;
    height:3px;
    background:#b49b63;
    margin-bottom:40px;
}

.cells{

    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.cell{

    position:relative;
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    padding:25px 15px;
    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 5px 12px rgba(0,0,0,.05);
}

.cell::before{

    content:"";
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    width:2px;
    height:40px;
    background:#b49b63;
}

.cell span{

    margin-top:10px;
    font-weight:600;
}

@media(max-width:900px){

    .cells{

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

    .line.horizontal{

        display:none;
    }

    .cell::before{

        display:none;
    }

}

@media(max-width:600px){

    .cells{

        grid-template-columns:1fr;
    }

    .box{

        width:100%;
    }

}
/* ---------- Organigramme ---------- */

/* ---------- Formations (tableau cursus) ---------- */
.courses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.course {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: .3s;
}

.course:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, .4);
}

.course__num {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: #2a2205;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.course__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.course h4 {
  font-size: 1.05rem;
  margin: 6px 0;
}

.course__desc {
  font-size: .88rem;
  color: var(--ink-500);
  margin: 6px 0 12px;
}

.course__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course__meta .badge i {
  margin-right: 6px;
  color: var(--gold-700);
}

/* Carte de programme cliquable (lien étiré) */
.course {
  position: relative;
}

.course-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.course__image{
    flex:0 0 120px;
}

.course__image img{
    border-radius:15px;
}

.course::after {
  content: "\2192";
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--gold-700);
  font-size: 1.15rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
}

.course:hover::after {
  opacity: 1;
  transform: none;
}

/* ---------- Détail d'un programme ---------- */
.prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.prog-meta .badge {
  font-size: .82rem;
  padding: 8px 15px;
}

.prog-meta .badge i {
  margin-right: 7px;
  color: var(--gold-700);
}

.module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  background: var(--paper);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.module__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.module__head h3 {
  font-size: 1.15rem;
}

.module__hours {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-700);
  white-space: nowrap;
}

.module__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.module__grid h5 {
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 10px;
}

.eval-list {
  display: grid;
  gap: 8px;
}

.eval-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .88rem;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
}

.eval-list li b {
  color: var(--gold-700);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .module__grid {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-3);
  color: var(--gold-700);
  border: 1px solid var(--line);
}

/* ---------- Formulaire ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-900);
}

.field label .req {
  color: #c0392b;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  color: var(--ink-900);
  transition: .2s;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: .82rem;
  color: var(--ink-500);
  margin-top: 6px;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #eef8ec;
  border: 1px solid #bfe3b6;
  color: #2b6a2b;
  font-size: .9rem;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: #fcecec;
  border: 1px solid #e6b8b8;
  color: #a3312a;
  font-size: .9rem;
}

.form-error.show {
  display: block;
}

/* ---------- Contenu manquant (placeholder client) ---------- */
.todo {
  border: 1px dashed var(--gold-500);
  background: repeating-linear-gradient(45deg, rgba(251, 243, 216, .5), rgba(251, 243, 216, .5) 12px, rgba(255, 255, 255, .5) 12px, rgba(255, 255, 255, .5) 24px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .85rem;
  color: var(--gold-900);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.todo b {
  color: var(--gold-900);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-band p {
  color: var(--ink-500);
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item__icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-gold-soft);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.contact-item__icon i {
  font-size: 1.15rem;
  color: var(--gold-700);
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-item p {
  font-size: .92rem;
  color: var(--ink-500);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--paper-3);
  display: grid;
  place-items: center;
  color: var(--ink-300);
  text-align: center;
  padding: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: radial-gradient(120% 120% at 50% 0%, #1c1a14 0%, #0d0c09 100%);
  color: #cfc9b8;
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer__brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: .9rem;
  color: #9c9683;
  max-width: 300px;
}

.footer h5 {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: .9rem;
  color: #cfc9b8;
  transition: .2s;
}

.footer ul li a:hover {
  color: var(--gold-300);
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  transition: .2s;
}

.footer__socials a:hover {
  background: var(--grad-gold);
  color: #2a2205;
  border-color: transparent;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: #837e6e;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Hero animé (adapté de 21st.dev · thème Or) ---------- */
@keyframes goldShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes patternScroll {
  0% {
    transform: translate(-5%, -5%);
  }

  100% {
    transform: translate(5%, 5%);
  }
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 rgba(212, 175, 55, .0), 0 10px 30px rgba(212, 175, 55, .32);
  }

  50% {
    box-shadow: 0 0 26px rgba(212, 175, 55, .55), 0 12px 34px rgba(212, 175, 55, .42);
  }

  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, .0), 0 10px 30px rgba(212, 175, 55, .32);
  }
}

/* Texte à dégradé or animé (cycle) */
.text-gold-anim {
  background: linear-gradient(270deg, #f2d98a, #d4af37, #b8901f, #e6c15a, #f2d98a);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldShift 9s ease infinite;
}

/* Motif diagonal en mouvement (très subtil) */
.hero__pattern {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 22px, rgba(212, 175, 55, .055) 22px, rgba(212, 175, 55, .055) 23px);
  animation: patternScroll 24s linear infinite;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 75%);
}

/* Tracés SVG animés (line-drawing) */
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero__lines svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.animation-line {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 1.5;
  opacity: .55;
}

/* CTA pulsant */
.btn--pulse {
  animation: none;
}

/* Le contenu du hero passe au-dessus des décors animés */
.hero .container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {

  .text-gold-anim,
  .hero__pattern,
  .hero::before,
  .btn--pulse,
  .hero__glow,
  .hero__logo-card,
  .hero__badge {
    animation: none !important;
  }
}

/* ---------- Page hero (sous-pages) ---------- */
.page-hero {
  padding: 170px 0 70px;
  text-align: center;
  background: radial-gradient(70% 60% at 50% 0%, rgba(242, 217, 138, .28) 0%, rgba(255, 255, 255, 0) 65%), var(--paper);
}

/* Variante avec image de fond — option A : clair & or (repli doré si l'image manque) */
.page-hero--photo {
  position: relative;
  overflow: hidden;
}

/* Couche image (background-image posé en style inline sur la page → chemin fiable) */
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--gold-300);
  background-size: cover;
  background-position: center;
}

/* Voile noir uniforme léger (aplat, sans dégradé) pour la lisibilité du texte clair */
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

/* Voile blanc & or au-dessus de l'image (lisibilité) */
.page-hero--photo .container {
  position: relative;
  z-index: 1;
}

/* Hero avec image sans voile : texte clair + ombre pour la lisibilité */
.page-hero--photo h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.page-hero.page-hero--photo p {
  color: #f2efe6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

.page-hero--photo .breadcrumb,
.page-hero--photo .breadcrumb a {
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
}

.page-hero--photo .breadcrumb a:hover {
  color: var(--gold-300);
}

.page-hero--photo .eyebrow {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.page-hero--photo .eyebrow::before {
  background: var(--gold-300);
}

.page-hero--photo .text-gold {
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 18px 0 14px;
}

.page-hero p {
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.breadcrumb {
  font-size: .82rem;
  color: var(--ink-300);
  margin-top: 20px;
}

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

/* ---------- Prose ---------- */
.prose p {
  margin-bottom: 18px;
  color: var(--ink-700);
}

.prose h3 {
  margin: 28px 0 12px;
  font-size: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__verse {
    justify-content: center;
  }

  .hero__verse {
    display: inline-block;
    text-align: left;
  }

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

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

  .courses {
    grid-template-columns: 1fr;
  }

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

  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(16px);
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  .nav__links.open a {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .org__top,
  .org__cells,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .hero__badge {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .8) 45%, rgba(255, 255, 255, .86) 100%),
      radial-gradient(60% 40% at 50% 15%, rgba(242, 217, 138, .3) 0%, rgba(255, 255, 255, 0) 60%),
      url("../assets/hero 1.jpg") center center / cover no-repeat,
      var(--paper);
  }
}