/* ═══════════════════════════════════════════
   DILJ CÉRAMIQUE — styles.css
═══════════════════════════════════════════ */

:root {
  --beige:      #EEE6D8;
  --beige-lt:   #F7F2EB;
  --brun:       #392E2C;
  --brun-mid:   #5C3D35;
  --bordeaux:   #7C4C53;
  --creme:      #FDFAF6;
  --gris:       #6B6560;

  --font-titre: 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Jost', sans-serif;

  --ombre:    0 4px 20px rgba(57,46,44,.10);
  --ombre-lg: 0 12px 48px rgba(57,46,44,.18);
  --t:        0.3s ease;
  --r:        3px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--font-corps);
  background-color: var(--beige);
  color: var(--brun);
  line-height: 1.7;
  font-weight: 300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section      { padding: 88px 0; }
.section-alt  { background-color: var(--beige-lt); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 10px;
}

.section-header h2 em { font-style: italic; color: var(--bordeaux); }
.section-sub { font-size: 0.9rem; color: var(--gris); letter-spacing: .04em; }

/* ── Boutons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-corps);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--t);
}

.btn-primary {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}
.btn-primary:hover {
  background: var(--brun-mid);
  border-color: var(--brun-mid);
  transform: translateY(-2px);
  box-shadow: var(--ombre);
}

.btn-outline {
  background: transparent;
  color: var(--creme);
  border-color: rgba(253,250,246,.65);
}
.btn-outline:hover {
  background: rgba(253,250,246,.12);
  border-color: var(--creme);
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}

.nav.scrolled {
  background: rgba(238,230,216,.97);
  backdrop-filter: blur(10px);
  padding: 12px 48px;
  box-shadow: 0 1px 0 rgba(57,46,44,.10);
}

/* Logo : image + texte côte à côte */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* blanc sur fond sombre */
  transition: filter var(--t);
}

.nav.scrolled .nav-logo-img {
  filter: none; /* couleur naturelle sur fond beige */
}

.nav-logo-text {
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 600;
  color: var(--creme);
  letter-spacing: .03em;
  line-height: 1;
  transition: color var(--t);
}

.nav-logo-text em { font-weight: 300; font-style: italic; }
.nav.scrolled .nav-logo-text { color: var(--brun); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(253,250,246,.85);
  transition: color var(--t);
}

.nav.scrolled .nav-links a { color: var(--brun); }
.nav-links a:hover { color: var(--bordeaux); }

.nav-cta {
  background: var(--bordeaux) !important;
  color: var(--creme) !important;
  padding: 8px 20px;
  border-radius: var(--r);
}
.nav-cta:hover { background: var(--brun-mid) !important; }

/* Toggle mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--creme);
  transition: var(--t);
}
.nav.scrolled .nav-toggle span { background: var(--brun); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO ACCUEIL
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg { position: absolute; inset: 0; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(57,46,44,.55) 0%,
    rgba(57,46,44,.42) 60%,
    rgba(57,46,44,.65) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 140px 32px 80px;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-location {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--beige); opacity: .8;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--font-titre);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; color: var(--creme);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: var(--beige); }

.hero-text {
  font-size: 1rem; font-weight: 300;
  color: rgba(253,250,246,.88);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: rgba(253,250,246,.45); font-size: 1.3rem;
  text-decoration: none;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════════════════
   PAGE HERO (pages internes)
══════════════════════════════════════════ */
.page-hero {
  background-color: var(--brun);
  padding: 140px 32px 72px;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: var(--creme);
  line-height: 1.1; margin-bottom: 14px;
}
.page-hero-content h1 em { font-style: italic; color: var(--beige); }

.page-hero-content .hero-location { margin-bottom: 14px; }

.page-hero-sub {
  font-size: .95rem; color: rgba(253,250,246,.7);
  max-width: 480px; margin: 0 auto;
}

/* ══════════════════════════════════════════
   CARDS — ATELIERS
══════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.card {
  background: var(--creme);
  border: 1px solid rgba(57,46,44,.08);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--ombre-lg); }

.card-img { overflow: hidden; height: 210px; }
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 26px 26px 30px; text-align: center; }
.card-body h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem; font-weight: 400;
  color: var(--brun); margin-bottom: 10px;
}
.card-body p { font-size: .88rem; color: var(--gris); line-height: 1.75; }

/* ══════════════════════════════════════════
   SECTION INSPIRATIONS
══════════════════════════════════════════ */
.inspi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.inspi-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 4/3;
  background: var(--brun);
}

.inspi-item.inspi-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.inspi-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: brightness(.75);
}

.inspi-item:hover img {
  transform: scale(1.04);
  filter: brightness(.6);
}

.inspi-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(to top, rgba(57,46,44,.85) 0%, transparent 100%);
  color: var(--creme);
  transition: padding var(--t);
}

.inspi-item:hover .inspi-caption { padding-bottom: 30px; }

.inspi-caption h4 {
  font-family: var(--font-titre);
  font-size: 1.25rem; font-weight: 400;
  margin-bottom: 6px; line-height: 1.2;
}
.inspi-caption h4 em { font-style: italic; color: var(--beige); }

.inspi-caption p {
  font-size: .8rem;
  color: rgba(253,250,246,.8);
  line-height: 1.55;
  max-width: 340px;
}

/* ══════════════════════════════════════════
   GALERIE BOUTIQUE
══════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: var(--r);
  background: var(--beige);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.boutique-cta { text-align: center; }
.boutique-cta p {
  font-size: .92rem; color: var(--gris);
  margin-bottom: 24px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-titre);
  font-size: 1.5rem; font-weight: 400;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: .92rem; color: var(--gris);
  line-height: 1.85; margin-bottom: 12px;
}
.contact-info strong { color: var(--brun); font-weight: 500; }

.contact-links {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-links a {
  font-size: .85rem; color: var(--bordeaux);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--t);
}
.contact-links a:hover { color: var(--brun-mid); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--brun-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-corps);
  font-size: .92rem; font-weight: 300;
  color: var(--brun);
  background: var(--beige-lt);
  border: 1px solid rgba(57,46,44,.18);
  border-radius: var(--r);
  padding: 11px 15px;
  outline: none;
  transition: border-color .25s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--bordeaux); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* Feedback formulaire */
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--r);
  padding: 20px 24px;
  color: #2e7d32;
  font-size: .95rem;
  margin-bottom: 24px;
}

.form-errors {
  background: #fce4ec;
  border: 1px solid #f48fb1;
  border-radius: var(--r);
  padding: 16px 24px;
  color: #c62828;
  font-size: .88rem;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--brun);
  color: rgba(253,250,246,.65);
  padding: 48px 32px 32px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}

.footer-brand {
  font-family: var(--font-titre);
  font-size: 1.25rem; font-weight: 400;
  color: var(--creme); letter-spacing: .04em;
}
.footer-loc {
  font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; opacity: .5;
}
.footer-links { display: flex; gap: 24px; margin: 6px 0; }
.footer-links a {
  font-size: .8rem; letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(253,250,246,.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--beige); }
.footer-copy { font-size: .7rem; opacity: .35; margin-top: 6px; }

/* ══════════════════════════════════════════
   ANIMATIONS SCROLL
══════════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.cards .card:nth-child(2)          { transition-delay: .1s; }
.cards .card:nth-child(3)          { transition-delay: .2s; }
.gallery .gallery-item:nth-child(2){ transition-delay: .1s; }
.gallery .gallery-item:nth-child(3){ transition-delay: .2s; }
.inspi-grid .inspi-item:nth-child(2){ transition-delay: .1s; }
.inspi-grid .inspi-item:nth-child(3){ transition-delay: .15s; }
.inspi-grid .inspi-item:nth-child(4){ transition-delay: .2s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .inspi-grid {
    grid-template-columns: 1fr;
  }
  .inspi-item.inspi-large { grid-row: auto; aspect-ratio: 4/3; }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 460px; margin: 0 auto;
  }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery-item:last-child { grid-column: span 2; aspect-ratio: 2/1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 650px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-logo-text { font-size: 1.45rem; }
  .nav-logo-img { height: 36px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(57,46,44,.97);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 30px; z-index: -1;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; color: var(--creme) !important; }
  .nav-cta { padding: 12px 28px !important; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section { padding: 60px 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item:last-child { grid-column: auto; aspect-ratio: 1; }
  .page-hero { padding: 120px 20px 56px; }
}

/* ══════════════════════════════════════════
   PAGE HERO — ANCRES RAPIDES
══════════════════════════════════════════ */
.page-hero-anchors {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-hero-anchors a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(253,250,246,.6);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--t);
}
.page-hero-anchors a:hover { color: var(--beige); }
.page-hero-anchors span { color: rgba(253,250,246,.25); font-size: .7rem; }

/* ══════════════════════════════════════════
   LAYOUT ATELIERS — image + contenu
══════════════════════════════════════════ */
.atelier-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.atelier-layout--reverse {
  grid-template-columns: 1.4fr 1fr;
}
.atelier-layout--reverse .atelier-img { order: 2; }
.atelier-layout--reverse .atelier-content { order: 1; }

.atelier-img {
  position: sticky;
  top: 100px;
}

.atelier-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--ombre-lg);
}

.atelier-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 10px;
}

.atelier-content h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--brun);
}
.atelier-content h2 em { font-style: italic; color: var(--bordeaux); }

.atelier-intro {
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: 2px solid var(--beige-lt);
  padding-left: 16px;
}

/* Features */
.atelier-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.feature strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--brun);
  margin-bottom: 3px;
}

.feature p {
  font-size: .85rem;
  color: var(--gris);
  line-height: 1.65;
  margin: 0;
}

/* ── Horaires ── */
.horaires {
  margin-bottom: 32px;
}

.horaires h3,
.tarifs h3 {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brun);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(57,46,44,.12);
}

.horaires-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.creneau {
  background: var(--creme);
  border: 1px solid rgba(57,46,44,.1);
  border-radius: var(--r);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--ombre);
}

.creneau-jour {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.creneau-heure {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--brun);
}

/* ── Tarifs ── */
.tarifs { margin-bottom: 8px; }

.tarifs-table {
  border: 1px solid rgba(57,46,44,.1);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 10px;
}

.tarifs-header,
.tarifs-row {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 0;
}

/* Tarifs famille : 2 colonnes */
.tarifs-table:has(.tarifs-row .prix:last-child:nth-child(2)) .tarifs-header,
.tarifs-table:has(.tarifs-row .prix:last-child:nth-child(2)) .tarifs-row {
  grid-template-columns: 1.8fr 1fr;
}

.tarifs-header {
  background: var(--brun);
  color: rgba(253,250,246,.8);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tarifs-header span,
.tarifs-row span {
  padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.tarifs-header em { font-style: normal; opacity: .6; display: block; font-size: .65rem; }

.tarifs-row {
  background: var(--creme);
  font-size: .88rem;
  color: var(--brun);
  border-top: 1px solid rgba(57,46,44,.08);
}

.tarifs-row span { border-right: 1px solid rgba(57,46,44,.08); }
.tarifs-row span:last-child { border-right: none; }

.tarifs-row--adherent {
  background: rgba(238,230,216,.5);
}

.prix {
  font-family: var(--font-titre);
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--bordeaux) !important;
  text-align: center;
}

.tarifs-note {
  font-size: .78rem;
  color: var(--gris);
  font-style: italic;
  line-height: 1.6;
}

/* ── Communes scolaires ── */
.ecole-communes {
  background: var(--beige);
  border-left: 3px solid var(--bordeaux);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.ecole-communes p {
  font-size: .8rem;
  color: var(--gris);
  line-height: 1.75;
}

.ecole-cta { margin-top: 8px; }

/* ── Bouton ghost ── */
.btn-ghost {
  background: transparent;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
}
.btn-ghost:hover {
  background: var(--bordeaux);
  color: var(--creme);
  transform: translateY(-2px);
  box-shadow: var(--ombre);
}

/* ── CTA global ── */
.cta-global { text-align: center; }

.cta-global h2 {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.cta-global h2 em { font-style: italic; color: var(--bordeaux); }

.cta-global p {
  font-size: .95rem;
  color: var(--gris);
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-global-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ateliers ── */
@media (max-width: 860px) {
  .atelier-layout,
  .atelier-layout--reverse {
    grid-template-columns: 1fr;
  }
  .atelier-layout--reverse .atelier-img { order: 0; }
  .atelier-layout--reverse .atelier-content { order: 0; }
  .atelier-img { position: static; }
  .atelier-img img { aspect-ratio: 16/9; }

  .tarifs-header,
  .tarifs-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 540px) {
  .tarifs-header span:nth-child(4),
  .tarifs-row span:nth-child(4) { display: none; }
  .tarifs-header,
  .tarifs-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .horaires-grid { flex-direction: column; }
  .creneau { flex-direction: row; align-items: center; gap: 12px; }
}

/* ══════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════ */
.apropos-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.apropos-photo-wrap {
  position: sticky;
  top: 100px;
  text-align: center;
}

.apropos-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  box-shadow: var(--ombre-lg);
}

.apropos-photo-caption {
  margin-top: 12px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris);
  opacity: .7;
}

.apropos-chapeau {
  font-family: var(--font-titre);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--brun);
  margin-bottom: 24px !important;
  line-height: 1.2;
}

.apropos-chapeau strong {
  font-weight: 600;
  color: var(--bordeaux);
}

.apropos-text p {
  font-size: .97rem;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 18px;
}

.apropos-valeurs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
}

.valeur {
  background: var(--beige);
  border: 1px solid rgba(57,46,44,.12);
  border-radius: 40px;
  padding: 7px 18px;
}

.valeur span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.apropos-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* LéonarT aperçu */
.leonart-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.leonart-text h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.15;
}
.leonart-text h2 em { font-style: italic; color: var(--bordeaux); }

.leonart-text p {
  font-size: .93rem;
  color: var(--gris);
  line-height: 1.85;
  margin-bottom: 14px;
}

.leonart-quote {
  background: var(--brun);
  border-radius: var(--r);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leonart-quote blockquote {
  font-family: var(--font-titre);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--beige);
  line-height: 1.5;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 860px) {
  .apropos-layout { grid-template-columns: 1fr; gap: 36px; }
  .apropos-photo-wrap { position: static; max-width: 360px; margin: 0 auto; }
  .apropos-photo-wrap img { aspect-ratio: 1/1; object-position: center 20%; }
  .leonart-layout { grid-template-columns: 1fr; gap: 36px; }
  .leonart-quote { padding: 32px 28px; }
}

/* ── Photo apropos réduite ── */
.apropos-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  box-shadow: var(--ombre-lg);
  max-width: 340px;
}

.apropos-layout {
  grid-template-columns: 364px 1fr;
  gap: 48px;
}

/* ══════════════════════════════════════════
   PAGE HERO DARK (LéonarT)
══════════════════════════════════════════ */
.page-hero--dark {
  background-color: #1a1a1a;
}

.page-hero--dark .hero-location,
.page-hero--dark .page-hero-sub { color: rgba(253,250,246,.65); }
.page-hero--dark h1 { color: var(--creme); }
.page-hero--dark h1 em { color: #E8821A; }
.page-hero--dark .page-hero-anchors a { color: rgba(253,250,246,.5); }
.page-hero--dark .page-hero-anchors a:hover { color: #E8821A; }
.page-hero--dark .page-hero-anchors span { color: rgba(253,250,246,.2); }

/* ══════════════════════════════════════════
   LÉONART — INTRO GRID
══════════════════════════════════════════ */
.leonart-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.leonart-intro-text h2 {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.15;
}
.leonart-intro-text h2 em { font-style: italic; color: #E8821A; }

.leonart-intro-text p {
  font-size: .95rem;
  color: var(--gris);
  line-height: 1.85;
  margin-bottom: 16px;
}

.leonart-valeurs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lv {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  border: 1px solid rgba(57,46,44,.1);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--brun);
}

.leonart-quote-block {
  background: #1a1a1a;
  border-radius: var(--r);
  padding: 36px 28px;
  margin-bottom: 20px;
}

.leonart-quote-block blockquote {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--beige);
  line-height: 1.55;
  text-align: center;
  border: none; padding: 0; margin: 0;
}

.leonart-contact-card {
  background: var(--beige-lt);
  border: 1px solid rgba(57,46,44,.1);
  border-radius: var(--r);
  padding: 24px;
}

.leonart-contact-title {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #E8821A;
  margin-bottom: 12px !important;
}

.leonart-contact-card p {
  font-size: .88rem;
  color: var(--gris);
  margin-bottom: 6px;
}

.leonart-contact-card a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.leonart-social { margin-top: 12px; }
.leonart-social a {
  font-size: .82rem;
  color: #E8821A;
  font-weight: 500;
}

/* ── Équipe ── */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.membre {
  background: var(--creme);
  border: 1px solid rgba(57,46,44,.08);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--ombre);
}

.membre-initial {
  width: 52px; height: 52px;
  background: #1a1a1a;
  color: #E8821A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-titre);
  font-size: 1.6rem; font-weight: 600;
  margin-bottom: 16px;
}

.membre h3 {
  font-family: var(--font-titre);
  font-size: 1.3rem; font-weight: 400;
  color: var(--brun); margin-bottom: 4px;
}

.membre-discipline {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: #E8821A; margin-bottom: 14px !important;
}

.membre p:last-child {
  font-size: .87rem; color: var(--gris); line-height: 1.75;
}

/* ── Disciplines ── */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.discipline-card {
  background: var(--creme);
  border: 1px solid rgba(57,46,44,.08);
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--ombre);
  position: relative;
  overflow: hidden;
}

.discipline-card--coming {
  background: var(--beige);
  border-style: dashed;
}

.discipline-num {
  font-family: var(--font-titre);
  font-size: 3rem; font-weight: 300;
  color: rgba(57,46,44,.08);
  position: absolute; top: 12px; right: 20px;
  line-height: 1;
}

.discipline-card h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem; font-weight: 400;
  color: var(--brun); margin-bottom: 10px;
}

.discipline-card p {
  font-size: .88rem; color: var(--gris); line-height: 1.75;
}

/* ── Vision ── */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vision-item {
  text-align: center;
  padding: 28px 16px;
}

.vision-icon { font-size: 2rem; display: block; margin-bottom: 12px; }

.vision-item h4 {
  font-family: var(--font-titre);
  font-size: 1.1rem; font-weight: 400;
  color: var(--brun); margin-bottom: 8px;
}

.vision-item p {
  font-size: .83rem; color: var(--gris); line-height: 1.65;
}

/* ── Adhésion ── */
.leonart-adhesion-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.adhesion-block h2 {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; margin-bottom: 20px;
}
.adhesion-block h2 em { font-style: italic; color: #E8821A; }
.adhesion-block p { font-size: .93rem; color: var(--gris); line-height: 1.85; }

.leonart-contact-detail h3 {
  font-family: var(--font-titre);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 20px;
}
.leonart-contact-detail h3 em { font-style: italic; color: #E8821A; }

.contact-detail-list {
  display: flex; flex-direction: column; gap: 12px;
}

.contact-detail-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--gris);
}

.contact-detail-item span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-item a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }

/* ── Responsive LéonarT ── */
@media (max-width: 900px) {
  .leonart-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .equipe-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .leonart-adhesion-grid { grid-template-columns: 1fr; gap: 36px; }
}

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

/* ══════════════════════════════════════════
   LÉONART — HERO AVEC ILLUSTRATION
══════════════════════════════════════════ */
.leonart-hero { padding-bottom: 0; }

.leonart-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
}

.leonart-hero-text {
  padding: 140px 0 60px;
}

.leonart-tagline {
  font-family: var(--font-titre);
  font-size: 1.5rem;
  font-style: italic;
  color: #E8821A;
  margin-top: 16px;
  letter-spacing: .04em;
}

.leonart-hero-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 60px;
}

.leonart-hero-img img {
  max-width: 380px;
  width: 100%;
  object-fit: contain;
  /* fond blanc transparent sur fond sombre */
  mix-blend-mode: lighten;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}

/* ── Renard dans la carte membre ── */
.membre--featured { position: relative; overflow: visible; }

.membre-renard {
  position: absolute;
  top: -60px;
  right: -20px;
  width: 100px;
  object-fit: contain;
  opacity: .85;
  pointer-events: none;
}

/* ── Vision avec renard debout ── */
.vision-with-renard {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.vision-renard img {
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(57,46,44,.12));
}

/* ── Logo LéonarT ── */
.logo-leonart {
  max-width: 200px;
  margin-bottom: 24px;
  object-fit: contain;
}

/* ── Responsive LéonarT hero ── */
@media (max-width: 860px) {
  .leonart-hero-inner {
    grid-template-columns: 1fr;
  }
  .leonart-hero-text { padding-bottom: 0; }
  .leonart-hero-img { display: none; }
  .vision-with-renard { grid-template-columns: 1fr; }
  .vision-renard { display: none; }
  .membre-renard { display: none; }
}
