/*
Theme Name: Academie La Renaissance
Theme URI: https://alrtogo.org
Author: ALR
Author URI: https://alrtogo.org
Description: Theme WordPress officiel de L'Academie La Renaissance (ALR) - ecole privee situee a Kloto, Togo. Design moderne et responsive avec integration des formulaires Google Forms par programme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alr
Tags: education, school, responsive, custom-menu, custom-logo, translation-ready
*/

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:    #14293A;
  --navy-2:  #1E3A52;
  --navy-dk: #0E1F2C;
  --gold:    #D4A537;
  --gold-lt: #F0C960;
  --cream:   #FBF9F5;
  --ink:     #0E1A24;
  --muted:   #6B7A87;
  --line:    #E8EDF1;
  --radius:  1.75rem;
  --radius-sm: .75rem;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--navy);
}

p { margin: 0 0 1em; }

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-lt); }

img, svg { display: block; max-width: 100%; height: auto; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.grid    { display: grid; gap: 1.25rem; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 1023px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.lead { font-size: 1rem; color: var(--muted); line-height: 1.8; }
.muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.65rem;
  font-size: .875rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--gold); color: var(--navy); }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 30px -10px rgba(212,165,55,.7); }
.btn--gold:hover { background: var(--gold-lt); color: var(--navy); }

.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn--block { width: 100%; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  height: 2.25rem;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold-lt); }
@media (max-width: 767px) { .topbar { display: none; } }

/* ============================================================
   HEADER + OVERSIZED LOGO
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px -8px rgba(20,41,58,.25);
}

/* gold band the logo overlaps */
.header-band {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: height .3s ease;
}
.site-header.is-scrolled .header-inner { height: 80px; }

/* --- LOGO ROND avec CADRE PHOTO --- */
.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Conteneur-cadre — bordure invisible, fond transparent */
.site-logo__frame {
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  margin-bottom: -1.75rem;
  overflow: hidden;
  transition: width .3s ease, height .3s ease, margin .3s ease;
}
.site-header.is-scrolled .site-logo__frame { margin-bottom: -1rem; }

/* L'image elle-même remplit le cadre */
.site-logo__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  transition: transform .3s ease;
}
.site-logo:hover .site-logo__img { transform: scale(1.04); }

/* Tailles — plus grandes */
.site-logo__frame       { width: 116px; height: 116px; }
.site-header.is-scrolled .site-logo__frame { width: 86px; height: 86px; }

@media (max-width: 767px) {
  .site-logo__frame { width: 92px; height: 92px; margin-bottom: -1.25rem; }
}
@media (max-width: 420px) {
  .site-logo__frame { width: 76px; height: 76px; }
  .site-logo__text  { display: none; }
}

.site-logo__text p { margin: 0; }
.site-logo__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
  transition: font-size .3s ease;
}
.site-logo__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -.02em;
  transition: font-size .3s ease;
}
.site-header.is-scrolled .site-logo__name { font-size: 1.1875rem; }
.site-header.is-scrolled .site-logo__sub  { font-size: 1.0625rem; }

@media (max-width: 767px) {
  .site-logo__name { font-size: 1.2rem; }
  .site-logo__sub  { font-size: 1.05rem; }
  .site-logo__img  { width: 76px; margin-bottom: -1rem; }
}
@media (max-width: 420px) {
  .site-logo__text { display: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  position: relative;
  display: block;
  padding: .65rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
}
.main-nav a:hover { color: var(--navy); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--navy); }
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  padding: .4rem 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  box-shadow: 0 16px 44px -12px rgba(20,41,58,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .25s ease;
  display: block;
}
.main-nav li { position: relative; }
.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu a { padding: .65rem 1rem; font-size: .84rem; }
.main-nav .sub-menu a:hover { background: var(--cream); color: var(--navy); }

@media (max-width: 1023px) { .main-nav { display: none; } }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: .6rem;
  cursor: pointer;
  color: var(--navy);
}
@media (max-width: 1023px) { .nav-toggle { display: block; } }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: .5rem 1.5rem 1.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: .9rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid #F1F5F8;
}
.mobile-nav .sub-menu a { padding-left: 1rem; font-size: .875rem; color: var(--muted); }
.mobile-nav .btn { margin-top: 1.25rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,41,58,.95), rgba(20,41,58,.85) 45%, rgba(30,58,82,.7));
}
.hero__overlay--minimal {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%, rgba(0,0,0,.1));
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero__glow--1 { top: -8rem; right: -6rem; width: 420px; height: 420px; background: rgba(212,165,55,.12); }
.hero__glow--2 { bottom: -10rem; left: -5rem; width: 380px; height: 380px; background: rgba(46,107,143,.18); }

.hero__inner { position: relative; z-index: 2; padding: 6rem 0 5rem; }
@media (min-width: 768px) { .hero__inner { padding: 8rem 0 7rem; } }

.hero__content { max-width: 46rem; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  margin-bottom: 2rem;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero h1 span { color: var(--gold-lt); }

.hero__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero feature strip */
.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
}
.hero__strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) { .hero__strip-grid { grid-template-columns: 1fr; } }
.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1.5rem;
  border-left: 1px solid rgba(255,255,255,.08);
}
.hero__feature:first-child { border-left: none; padding-left: 0; }
@media (max-width: 640px) {
  .hero__feature { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding-left: 0; }
  .hero__feature:first-child { border-top: none; }
}
.hero__feature-icon {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  background: rgba(212,165,55,.15);
  border: 1px solid rgba(212,165,55,.25);
  border-radius: .6rem;
  flex-shrink: 0;
  color: var(--gold-lt);
  font-size: .9rem;
}
.hero__feature-title { font-size: .85rem; font-weight: 600; color: #fff; margin: 0; }
.hero__feature-sub   { font-size: .75rem; color: rgba(255,255,255,.5); margin: .15rem 0 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 5rem 0;
}
@media (min-width: 768px) { .page-hero { padding: 6rem 0; } }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent 50%, rgba(0,0,0,.1)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.2rem); color: #fff; margin: 0; }
.page-hero h1 span { color: var(--gold-lt); }
.page-hero .lead { color: rgba(255,255,255,.6); max-width: 34rem; margin-top: 1.25rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -18px rgba(20,41,58,.28);
}

.card__media { position: relative; height: 11rem; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,41,58,.55), transparent 60%);
}

.card__badge {
  position: absolute;
  bottom: .75rem; left: .75rem;
  z-index: 2;
  padding: .25rem .625rem;
  font-size: .6875rem;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.card__text { font-size: .845rem; color: var(--muted); line-height: 1.65; flex: 1; margin: 0; }
.card__actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.card__actions .btn { padding: .75rem 1rem; font-size: .78rem; border-radius: .75rem; }

/* Program detail row */
.program-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.program-row--flip .program-row__media { order: 2; }
.program-row--flip .program-row__body  { order: 1; }
@media (max-width: 1023px) {
  .program-row { grid-template-columns: 1fr; }
  .program-row--flip .program-row__media,
  .program-row--flip .program-row__body { order: initial; }
}

.program-row__media { position: relative; min-height: 26rem; }
@media (max-width: 1023px) { .program-row__media { min-height: 16rem; } }
.program-row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.program-row__badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2;
  padding: .375rem .875rem;
  font-size: .72rem; font-weight: 700; color: #fff;
  border-radius: 999px; backdrop-filter: blur(4px);
}
.program-row__body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .program-row__body { padding: 3rem; } }
.program-row__sub {
  font-size: .655rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: .75rem;
}
.program-row h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 1.5rem;
  margin: 0 0 2.25rem;
}
@media (max-width: 640px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .845rem;
  color: #4A5A67;
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.125rem; height: 1.125rem;
  display: grid; place-items: center;
  margin-top: .1rem;
  font-size: .65rem; font-weight: 700;
  color: var(--gold);
  background: rgba(212,165,55,.15);
  border-radius: 50%;
}

/* ============================================================
   PILLARS / STATS
   ============================================================ */
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: all .3s ease;
  margin-bottom: .75rem;
}
.pillar:hover { border-color: rgba(212,165,55,.4); background: var(--cream); }
.pillar__icon {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: .75rem;
  flex-shrink: 0;
  transition: background .3s ease;
}
.pillar:hover .pillar__icon { background: var(--gold); }
.pillar__title { font-size: .875rem; font-weight: 600; color: var(--navy); margin: 0 0 .25rem; }
.pillar__text  { font-size: .815rem; color: var(--muted); line-height: 1.6; margin: 0; }

.stat-box {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.stat-box__value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0;
}
.stat-box__label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: .5rem 0 0;
}

/* Floating badge on image */
.media-wrap { position: relative; }
.media-wrap img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.media-badge {
  position: absolute;
  bottom: -1.5rem; left: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 50px -20px rgba(20,41,58,.4);
}

/* ============================================================
   CONTACT
   ============================================================ */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: all .3s ease;
  margin-bottom: .75rem;
}
.info-item:hover { border-color: rgba(212,165,55,.5); background: var(--cream); }
.info-item__icon {
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: .75rem;
  color: var(--gold);
  flex-shrink: 0;
}
.info-item__label {
  font-size: .655rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #A8B4BE; margin: 0 0 .25rem;
}
.info-item__value { font-size: .845rem; font-weight: 500; color: var(--navy); margin: 0; word-break: break-word; }

.section--navy .info-item { border-color: rgba(255,255,255,.08); }
.section--navy .info-item:hover { border-color: rgba(212,165,55,.4); background: rgba(255,255,255,.04); }
.section--navy .info-item__icon { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: var(--gold-lt); }
.section--navy .info-item__label { color: rgba(255,255,255,.4); }
.section--navy .info-item__value { color: rgba(255,255,255,.9); }

/* Form */
.alr-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.form-label span { color: var(--gold); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .875rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: .75rem;
  outline: none;
  transition: all .2s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,55,.15);
}
.form-textarea { resize: vertical; min-height: 7rem; }
.form-note { font-size: .72rem; color: #A8B4BE; text-align: center; line-height: 1.6; margin: 0; }

/* Inscription card (dark) */
.inscription-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.25rem;
  backdrop-filter: blur(6px);
}
.inscription-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .875rem 1.25rem;
  margin-bottom: .625rem;
  font-size: .845rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  transition: all .3s ease;
}
.inscription-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---- Program picker : carte horizontale avec vignette ---- */
.picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (max-width: 767px) { .picker-grid { grid-template-columns: 1fr; } }

.picker-card {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.picker-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 45px -18px rgba(20,41,58,.3);
}

/* barre d'accent verticale */
.picker-card__bar {
  width: .375rem;
  flex-shrink: 0;
  transition: width .3s ease;
}
.picker-card:hover .picker-card__bar { width: .5rem; }

/* vignette photo teintee */
.picker-card__thumb {
  position: relative;
  width: 7rem;
  flex-shrink: 0;
  overflow: hidden;
}
.picker-card__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.picker-card:hover .picker-card__thumb img { transform: scale(1.1); }
.picker-card__tint {
  position: absolute; inset: 0;
  mix-blend-mode: multiply;
  opacity: .7;
}
@media (max-width: 480px) { .picker-card__thumb { width: 5rem; } }

/* contenu */
.picker-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.25rem;
  min-width: 0;
}
.picker-card__age {
  font-size: .655rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 .375rem;
}
.picker-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .375rem;
}
.picker-card__cta {
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}

/* fleche circulaire */
.picker-card__arrow {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform .3s ease;
}
.picker-card:hover .picker-card__arrow { transform: scale(1.1) translateX(2px); }

/* ---- Cartes de valeurs (page A Propos) ---- */
.value-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -18px rgba(20,41,58,.28); }
.value-card__dot {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  border-radius: .75rem;
  margin-bottom: 1rem;
}
.value-card__dot i { width: .625rem; height: .625rem; border-radius: 50%; display: block; }
.value-card__title { font-size: .875rem; font-weight: 700; color: var(--navy); margin: 0 0 .375rem; }
.value-card__text  { font-size: .78rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--navy-dk);
  color: rgba(255,255,255,.55);
  overflow: hidden;
}
.site-footer__band { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold)); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.25rem; }

/* Logo dans le footer — sans fond ni bordure */
.footer-logo__frame {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.footer-logo:hover .footer-logo__frame {
  transform: scale(1.04);
}
.footer-logo__frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.footer-logo__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1875rem; font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -.02em; margin: 0;
}
.footer-logo__sub {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.0625rem; font-weight: 600; color: var(--gold);
  line-height: 1.1; letter-spacing: -.02em; margin: 0;
}

.footer-heading {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer-list li { margin-bottom: .75rem; }
.footer-list a { font-size: .845rem; color: rgba(255,255,255,.55); }
.footer-list a:hover { color: var(--gold-lt); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .845rem;
}
.footer-contact svg,
.footer-contact .ico { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: 1.25rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
@media (max-width: 640px) { .footer-bottom__inner { flex-direction: column; text-align: center; } }

/* ============================================================
   TABS SYSTEM (pages A Propos & Contact)
   ============================================================ */
.alr-tab.is-active { color: var(--navy) !important; }
.alr-tab.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
}
.alr-panel { scroll-margin-top: 120px; }

/* ---- Lien "Savoir plus" dans les cartes de la page d'accueil ---- */
.alr-savoir-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: 100%;
  padding: .625rem 1rem;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: color .25s ease;
}
.alr-savoir-plus:hover { color: var(--gold); }
.alr-savoir-plus::after {
  content: '→';
  font-size: .85rem;
  transition: transform .25s ease;
  display: inline-block;
}
.alr-savoir-plus:hover::after { transform: translateX(3px); }

/* ---- Mise en évidence d'un programme ciblé par ancre ---- */
.program-row:target {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,55,.15);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { animation: riseIn .6s cubic-bezier(.2,.7,.3,1) both; }
.rise-1 { animation-delay: .06s; }
.rise-2 { animation-delay: .12s; }
.rise-3 { animation-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter{ display: block; margin: 0 auto 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--muted); text-align: center; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
