@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --blue:    #e8a23c;
  --cyan:    #e8623f;
  --blue-dk: #c96f29;
  --cyan-dk: #c2542a;
  --ink:     #faf6f0;
  --ink-2:   #f2e9dd;
  --grad:    linear-gradient(90deg, #e8a23c, #e8623f);
  --white:   #221d18;
  --gray:    #6b6258;
  --gray-lt: #9a9087;
  --line:    rgba(34,29,24,.09);
  --surface-dark:   #15130f;
  --surface-dark-2: #1c1a17;
  --scrim: linear-gradient(to top, rgba(21,19,15,.92) 0%, rgba(21,19,15,.15) 55%, transparent 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  font-weight: 900;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--white); }
img { display: block; max-width: 100%; }

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,246,240,.8);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
.nav.scrolled { background: rgba(250,246,240,.95); }

.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav__logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--white); letter-spacing: .18em; text-transform: uppercase;
}
.nav__links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav__links a {
  font-size: .78rem; letter-spacing: .06em; font-weight: 500;
  color: rgba(34,29,24,.55); transition: color .25s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: .5rem 1.4rem; border-radius: 100px;
  font-size: .75rem; letter-spacing: .08em; font-weight: 700;
  transition: box-shadow .25s, transform .25s !important;
  box-shadow: 0 4px 20px rgba(232,98,63,.3);
}
.nav__cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232,98,63,.45);
}
.nav__cta::after { display: none !important; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; color: rgba(34,29,24,.8); }

@media (max-width: 768px) {
  .nav__links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(250,246,240,.97); backdrop-filter: blur(24px);
    flex-direction: column; gap: 0; padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; text-align: center; padding: .9rem 0; }
  .nav__burger { display: block; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 100px;
  font-size: .8rem; letter-spacing: .07em; font-weight: 700;
  cursor: pointer; border: none; transition: all .25s cubic-bezier(.4,0,.2,1);
  font-family: 'Inter', sans-serif; text-decoration: none;
}
.btn--grad {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 22px rgba(232,98,63,.35);
}
.btn--grad:hover {
  color: #fff;
  box-shadow: 0 8px 32px rgba(232,98,63,.5);
  transform: translateY(-2px);
}
.btn--outline {
  border: 1.5px solid rgba(34,29,24,.18);
  color: rgba(34,29,24,.8); background: transparent;
}
.btn--outline:hover {
  border-color: rgba(34,29,24,.4);
  background: rgba(34,29,24,.05);
  color: var(--white); transform: translateY(-2px);
}
.btn--lg { padding: 1.05rem 2.5rem; font-size: .85rem; }
.btn--text {
  display: inline-flex; padding: 0; border-radius: 0; background: none; box-shadow: none;
  border-bottom: 1.5px solid var(--white); color: var(--white); font-weight: 500; letter-spacing: .02em;
}
.btn--text:hover { color: var(--cyan-dk); border-color: var(--cyan-dk); transform: none; }

/* ─── HERO (home — editorial, generous split) ──────────────────────── */
.hero--editorial {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 3rem 2rem 6rem;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; width: fit-content;
  background: rgba(232,98,63,.1);
  border: 1px solid rgba(232,98,63,.25);
  color: var(--cyan-dk); padding: .4rem 1.1rem; border-radius: 100px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.75rem; font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero__eyebrow span { width: 5px; height: 5px; background: var(--cyan-dk); border-radius: 50%; }
.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.5rem; max-width: 560px;
}
.hero__title em, .hero__title .grad {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.8; font-weight: 300; margin-bottom: 1.75rem; max-width: 440px;
}
.hero__proof {
  display: flex; align-items: center; gap: 1.25rem;
  font-size: .8rem; color: var(--gray); margin-bottom: 2rem;
}
.hero__proof-stars { color: #f59e0b; letter-spacing: 2px; }
.hero__proof-sep { width: 1px; height: 16px; background: var(--line); }
.hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero__cta-hint {
  font-size: .82rem; color: var(--gray); font-weight: 300;
  margin-top: -.6rem; margin-bottom: 1.75rem; max-width: 440px;
}
.hero__photo {
  aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(34,29,24,.2);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── SECTIONS ────────────────────────────────────────────────────── */
.section { padding: 5.5rem 2rem; }
.section--alt { background: var(--ink-2); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__head { text-align: center; margin-bottom: 3.5rem; }
.section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white); margin-bottom: .6rem;
}
.section__title .grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__sub {
  color: var(--gray); font-size: 1rem;
  max-width: 520px; margin: 0 auto; line-height: 1.8; font-weight: 300;
}

/* ─── NARRATIVE (alternating split sections) ───────────────────────── */
.narrative {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 6rem 2rem;
}
.narrative--reverse .narrative__img { order: 2; }
.narrative--reverse .narrative__text { order: 1; }
.narrative__img { border-radius: 16px; overflow: hidden; aspect-ratio: 5/4; background: var(--ink-2); }
.narrative__img img { width: 100%; height: 100%; object-fit: cover; }
.narrative__label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-dk);
  margin-bottom: 1.25rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.narrative__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.25rem; color: var(--white); font-weight: 900; }
.narrative__text p { color: var(--gray); font-weight: 300; }
.narrative-quote { background: var(--ink-2); padding: 6rem 2rem; }
.narrative-quote__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.narrative-quote__text {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.4; color: var(--white); margin-bottom: 1.25rem;
}
.narrative-quote__author { font-size: .85rem; color: var(--cyan-dk); font-weight: 600; margin-bottom: 2rem; }
.narrative-quote__community { color: var(--gray); font-weight: 300; font-size: .95rem; max-width: 480px; margin: 0 auto; }

/* ─── COURSES (course-row list) ──────────────────────────────────────── */
.courses { padding: 2rem 2rem 7rem; max-width: 1100px; margin: 0 auto; }
.courses__head { text-align: center; margin-bottom: 4rem; }
.courses__label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan-dk);
  margin-bottom: 1rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.courses__more { text-align: center; margin-top: 3rem; }
.course-row {
  display: flex; align-items: center; gap: 2.5rem; padding: 2rem 0;
  border-top: 1px solid var(--line); transition: background .25s;
  text-decoration: none; color: inherit;
}
.course-row:last-child { border-bottom: 1px solid var(--line); }
.course-row:hover { background: rgba(232,98,63,.04); }
.course-row__thumb { width: 96px; height: 96px; border-radius: 12px; overflow: hidden; flex-shrink: 0; background: var(--ink-2); }
.course-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-row__thumb--placeholder { display: flex; align-items: center; justify-content: center; font-size: 1.75rem; }
.course-row__main { flex: 1; min-width: 0; }
.course-row__title {
  font-size: 1.4rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  font-weight: 800; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
}
.course-row__badge {
  font-family: 'Inter', sans-serif; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan-dk); background: rgba(232,98,63,.1); border: 1px solid rgba(232,98,63,.25);
  border-radius: 100px; padding: .25rem .8rem; font-weight: 600;
}
.course-row__badge--intermediaire { color: #b45309; background: rgba(217,119,6,.12); border-color: rgba(217,119,6,.25); }
.course-row__badge--avance        { color: #b91c1c; background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.2); }
.course-row__desc { color: var(--gray); font-size: .95rem; max-width: 480px; font-weight: 300; }
.course-row__price {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 900; flex-shrink: 0; padding: 0 1rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.course-row__arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; font-size: 1.1rem;
  color: var(--white);
}
.course-row:hover .course-row__arrow { background: var(--grad); border-color: transparent; color: #fff; transform: translateX(4px); }

/* ─── WORKSHOP HIGHLIGHT CARD ───────────────────────────────────────── */
.workshop-section { padding: 0 2rem 7rem; max-width: 1280px; margin: 0 auto; }
.workshop-card {
  display: grid; grid-template-columns: 1fr 1.2fr; background: var(--surface-dark); color: var(--ink);
  border-radius: 24px; overflow: hidden; align-items: stretch; max-width: 1280px; margin: 0 auto;
  text-decoration: none;
}
.workshop-card__img { aspect-ratio: 1/1; background: var(--ink-2); }
.workshop-card__img img { width: 100%; height: 100%; object-fit: cover; }
.workshop-card__img--placeholder { display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.workshop-card__body { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.workshop-card__date {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 900; margin-bottom: 1rem; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.workshop-card__date span {
  display: block; font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250,246,240,.45); margin-top: .6rem; font-weight: 400;
  -webkit-text-fill-color: rgba(250,246,240,.45);
}
.workshop-card__title { font-size: 1.8rem; margin-bottom: 1rem; color: var(--ink); }
.workshop-card__desc { color: rgba(250,246,240,.85); margin-bottom: 1.5rem; font-weight: 300; }
.workshop-card__price {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 1.75rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.workshop-card .btn--outline { border-color: rgba(250,246,240,.25); color: var(--ink); }
.workshop-card .btn--outline:hover { border-color: rgba(250,246,240,.5); background: rgba(250,246,240,.06); }

/* ─── CARDS ───────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.card-wrap { display: flex; }
.card {
  background: #fffdfa; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column; width: 100%;
  text-decoration: none; color: inherit;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(34,29,24,.12), 0 0 0 1px rgba(232,98,63,.25);
  border-color: rgba(232,98,63,.3);
}
.card__img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .5s ease; }
.card:hover .card__img { transform: scale(1.04); }
.card__img--placeholder {
  height: 240px;
  background: linear-gradient(135deg, #f4e3cf 0%, #f0d2c4 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.card__body { padding: 1.5rem; flex: 1; }
.card__tag {
  display: inline-flex; align-items: center;
  background: rgba(232,98,63,.1); border: 1px solid rgba(232,98,63,.2);
  color: var(--cyan-dk); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px; margin-bottom: .85rem;
}
.card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: var(--white); margin-bottom: .5rem; line-height: 1.25;
}
.card__desc { color: var(--gray); font-size: .875rem; line-height: 1.7; }
.card__footer {
  padding: 1.1rem 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.card__price {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 1.35rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.card__link { font-size: .78rem; color: var(--gray-lt); font-weight: 500; transition: color .25s; }
.card:hover .card__link { color: var(--cyan-dk); }

.card--past { opacity: .72; filter: grayscale(.15); }
.card--past:hover { opacity: 1; }
.card--past .card__footer { justify-content: flex-end; }
.card--past .card__link { color: var(--gray-lt); font-weight: 600; }

/* ─── ATELIERS — état vide ────────────────────────────────────────── */
.workshops-empty { max-width: 560px; margin: 0 auto; text-align: center; padding: 2rem 1rem 1rem; }
.workshops-empty__orb {
  position: relative; width: 120px; height: 120px; margin: 0 auto 2.25rem;
  display: flex; align-items: center; justify-content: center;
}
.workshops-empty__orb-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(232,98,63,.35);
  animation: workshopsPulse 3s ease-out infinite;
}
.workshops-empty__orb-ring:nth-child(2) { animation-delay: 1.5s; }
.workshops-empty__orb-icon {
  position: relative; z-index: 1; font-size: 2.6rem;
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f4e3cf 0%, #f0d2c4 100%);
  box-shadow: 0 8px 30px rgba(232,98,63,.18);
}
@keyframes workshopsPulse {
  0%   { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.workshops-empty__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--white);
  line-height: 1.35; margin-bottom: 1rem;
}
.workshops-empty__sub {
  color: var(--gray); font-size: .95rem; line-height: 1.8; font-weight: 300;
  max-width: 460px; margin: 0 auto 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .workshops-empty__orb-ring { animation: none; opacity: .5; }
}

/* ─── STATS ───────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat {
  text-align: center; padding: 2.5rem 1.5rem;
  background: #fffdfa; border: 1px solid var(--line); border-radius: 16px;
  transition: border-color .3s, transform .3s;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(232,98,63,.3); }
.stat__icon { font-size: 1.5rem; margin-bottom: .75rem; opacity: .6; }
.stat__number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .5rem;
}
.stat__label {
  font-size: .72rem; color: var(--gray-lt); margin-top: .5rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
}

/* ─── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section {
  padding: 6rem 2rem; position: relative; overflow: hidden; background: var(--ink);
}
.cta-section__inner {
  max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
}
.cta-section__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 1rem;
}
.cta-section__title .grad {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-section__sub {
  color: var(--gray); font-size: 1rem;
  line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300;
}
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── CTA (home, gallery closing bookend) ──────────────────────────── */
.cta--gallery {
  position: relative; overflow: hidden; text-align: center;
  padding: 8rem 2rem; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-dark);
}
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta__scrim { position: absolute; inset: 0; background: rgba(21,19,15,.72); }
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; color: #fff;
}
.cta__sub { color: rgba(255,255,255,.85); max-width: 460px; margin: 0 auto 2.5rem; font-weight: 300; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta--gallery .btn--outline { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.9); }
.cta--gallery .btn--outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); color: #fff; }

/* ─── FORMS ───────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: .72rem; margin-bottom: .5rem;
  font-weight: 600; color: rgba(34,29,24,.7); letter-spacing: .07em; text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-size: .95rem; font-family: 'Inter', sans-serif;
  background: #fffdfa; color: var(--white);
  transition: border-color .25s, box-shadow .25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(232,162,60,.15);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-error { color: #c2410c; font-size: .82rem; margin-top: .4rem; }

/* ─── FILTERS ─────────────────────────────────────────────────────── */
.filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }
.filter-btn {
  padding: .5rem 1.35rem; border-radius: 100px;
  border: 1.5px solid var(--line); color: var(--gray); background: #fffdfa;
  cursor: pointer; font-size: .78rem; font-family: 'Inter', sans-serif; font-weight: 500;
  transition: all .25s; letter-spacing: .05em;
}
.filter-btn:hover { border-color: var(--blue); color: var(--cyan-dk); }
.filter-btn.active { background: var(--grad); color: #fff; border-color: transparent; }

/* ─── BADGES ──────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .3rem .9rem; border-radius: 100px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.badge--debutant      { background: rgba(232,98,63,.12); color: var(--cyan-dk); }
.badge--intermediaire { background: rgba(217,119,6,.12); color: #b45309; }
.badge--avance        { background: rgba(220,38,38,.1);  color: #b91c1c; }
.badge--tous          { background: rgba(34,29,24,.06); color: var(--gray); }

/* ─── DETAIL HERO ─────────────────────────────────────────────────── */
.detail-hero {
  padding: 9rem 2rem 5rem; background: var(--ink);
  color: var(--white); position: relative; overflow: hidden;
}
.detail-hero__inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.detail-hero h1 { color: var(--white); font-size: clamp(2.25rem, 5vw, 4rem); }
.detail-hero p  { color: var(--gray); }
.detail-hero__img {
  width: 100%; max-height: 520px; object-fit: cover;
  border-radius: 16px; margin-top: 3rem; box-shadow: 0 30px 70px rgba(34,29,24,.15);
}

/* ─── SHOW HERO (immersif) ────────────────────────────────────────── */
.show-hero-a { position: relative; min-height: 520px; margin-top: -68px; background: var(--ink); }
.show-hero-a img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.show-hero-a__overlay {
  position: relative; z-index: 1; min-height: 78vh; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(34,29,24,.85) 0%, rgba(34,29,24,.25) 55%, rgba(34,29,24,.05) 100%);
}
.show-hero-a__content { padding: 7rem 5% 4rem; max-width: 760px; color: #fff; }
.show-hero-a__content h1 { color: #fff; font-size: clamp(2.4rem,5.5vw,4rem); margin: 1rem 0 1rem; }
.show-hero-a__content p { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin-bottom: 1.75rem; line-height: 1.7; font-weight: 300; }
.show-hero-a__meta { display: flex; gap: 1.75rem; margin-bottom: 1.75rem; font-size: .95rem; color: rgba(255,255,255,.85); align-items: center; flex-wrap: wrap; }
.show-hero-a__meta .price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 1.5rem; color: #fff; }
.show-hero-a__meta .duration { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; }
.show-hero-a__meta .price-note { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 400; }

/* ─── CURRICULUM / PROGRAMME ─────────────────────────────────────── */
.curriculum-list { display: grid; gap: .75rem; margin-top: 1.25rem; }
.curriculum-item {
  display: flex; align-items: center; gap: .85rem;
  background: #fffdfa; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.25rem; font-size: .95rem; color: var(--white);
}
.curriculum-item__check {
  width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: .85rem;
}

/* ─── SHOW GALLERY ────────────────────────────────────────────────── */
.show-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.show-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; transition: transform .4s; }
.show-gallery img:hover { transform: scale(1.03); }

/* ─── BOOKING MODAL ───────────────────────────────────────────────── */
dialog.modal { border: none; border-radius: 20px; padding: 0; max-width: 480px; width: 92%; margin: auto; box-shadow: 0 30px 80px rgba(34,29,24,.25); }
dialog.modal::backdrop { background: rgba(34,29,24,.55); backdrop-filter: blur(4px); }
.modal__inner { padding: 2.5rem; position: relative; }
.modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--gray); line-height: 1;
}
.modal__close:hover { background: var(--ink-2); }

/* ─── ALERTS ──────────────────────────────────────────────────────── */
.alert { padding: 1rem 1.5rem; border-radius: 12px; margin-bottom: 1.5rem; }
.alert--success { background: rgba(16,185,129,.1); color: #15803d; border: 1px solid rgba(16,185,129,.25); }
.alert--error   { background: rgba(239,68,68,.08); color: #b91c1c; border: 1px solid rgba(239,68,68,.2); }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: var(--ink-2); border-top: 1px solid var(--line);
  padding: 3.5rem 2rem 2.5rem; text-align: center;
}
footer .footer__logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 900;
  color: rgba(34,29,24,.7); letter-spacing: .2em; text-transform: uppercase;
  display: block; margin-bottom: 1.25rem;
}
footer .footer__tagline {
  font-size: .78rem; color: var(--gray-lt);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2rem;
}
footer .footer__links {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2rem;
}
footer .footer__links a { color: var(--gray); transition: color .2s; }
footer .footer__links a:hover { color: var(--cyan-dk); }
footer .footer__copy { font-size: .78rem; color: var(--gray-lt); }

/* ─── ANIMATIONS ──────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ─── UTILS ───────────────────────────────────────────────────────── */
.grad {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 2rem; }

/* ─── ABOUT ───────────────────────────────────────────────────────── */
.about__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about__photo {
  border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; position: relative;
  background: linear-gradient(135deg, #f4e3cf 0%, #f0d2c4 100%);
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,29,24,.35) 0%, transparent 50%);
}
.about__label {
  font-size: .72rem; color: var(--cyan-dk); letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.about__text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.5rem; color: var(--white); }
.about__text h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about__text p { color: var(--gray); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2rem 0;
}
.about__stat {
  text-align: center; padding: 1rem .5rem;
  border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-direction: column; gap: .35rem;
}
.about__stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.about__stat .lbl {
  font-size: .65rem; color: var(--gray-lt);
  text-transform: uppercase; letter-spacing: .1em;
}

/* ─── PILLAR ───────────────────────────────────────────────────────── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: #fffdfa; border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem; transition: border-color .3s, transform .3s;
}
.pillar:hover { border-color: rgba(232,98,63,.3); transform: translateY(-4px); }
.pillar__icon { margin-bottom: 1rem; color: var(--cyan-dk); }
.pillar__icon svg { display: block; }
.pillar h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--white); margin-bottom: .5rem;
}
.pillar p { color: var(--gray); font-size: .875rem; line-height: 1.7; }

/* ─── USP STRIP (home, intro pillars) ──────────────────────────────── */
.usp { padding: 1rem 2rem 6rem; max-width: 1200px; margin: 0 auto; }
.usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }

/* ─── REVIEWS (Google avis) ─────────────────────────────────────────── */
.reviews__rating {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1.25rem; font-size: .9rem; color: var(--gray);
}
.reviews__rating .stars { color: #f59e0b; letter-spacing: 2px; }
.reviews__rating .score { font-weight: 800; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.review {
  background: #fffdfa; border: 1px solid var(--line); border-radius: 16px;
  padding: 2rem; transition: border-color .3s, transform .3s;
}
.review:hover { border-color: rgba(232,98,63,.3); transform: translateY(-4px); }
.review__stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 1rem; font-size: .9rem; }
.review__text { color: var(--gray); font-size: .92rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.review__author { font-weight: 700; font-size: .85rem; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; }
.reviews__more { text-align: center; margin-top: 3rem; }

/* ─── ABOUT GALLERY ───────────────────────────────────────────────── */
.about-gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem;
}
.about-gallery__item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s;
}
.about-gallery__item:hover img { transform: scale(1.05); }

/* ─── GIFT CARD ───────────────────────────────────────────────────── */
.giftcard-mock {
  background: var(--grad); border-radius: 20px; padding: 2.5rem;
  color: #fff; position: relative; overflow: hidden; aspect-ratio: 16/10;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 70px rgba(232,98,63,.25);
}
.giftcard-mock::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(255,255,255,.3), transparent 60%);
}
.giftcard-mock__top {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; letter-spacing: .2em;
  text-transform: uppercase; font-size: .78rem; opacity: .85; position: relative; z-index: 1;
}
.giftcard-mock__title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.2; position: relative; z-index: 1;
}
.giftcard-mock__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: .85rem; position: relative; z-index: 1;
}
.giftcard-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.giftcard-step__num {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0; background: var(--grad); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.giftcard-step h3 {
  font-size: 1rem; margin-bottom: .35rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; color: var(--white);
}
.giftcard-step p { color: var(--gray); font-size: .9rem; line-height: 1.6; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .narrative, .narrative--reverse { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .narrative--reverse .narrative__img, .narrative--reverse .narrative__text { order: initial; }
  .workshop-card { grid-template-columns: 1fr; }
  .workshop-card__body { padding: 2.5rem; }
  .giftcard-grid { grid-template-columns: 1fr !important; }
  .giftcard-mock { order: -1; aspect-ratio: 16/9; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero--editorial { grid-template-columns: 1fr; gap: 2.5rem; padding: 7rem 1.5rem 3rem; }
  .hero__photo { aspect-ratio: 4/3; order: -1; }
  .cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .about__split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo { aspect-ratio: 4/3; max-height: 320px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .course-row { gap: 1.25rem; }
  .course-row__thumb { width: 64px; height: 64px; }
  .course-row__title { font-size: 1.1rem; }
  .course-row__price { font-size: 1.2rem; padding: 0 .5rem; }
  .courses { padding: 1rem 1.25rem 4rem; }
  .usp { padding: 1rem 1.25rem 4rem; }
  .workshop-section { padding: 0 1.25rem 4rem; }
  .cta--gallery { padding: 4rem 1.5rem; min-height: 50vh; }
  .show-hero-a { min-height: 0; }
  .show-hero-a__overlay { min-height: 60vh; }
  .show-hero-a__content { padding: 2rem 1.5rem; }
  .show-gallery { grid-template-columns: 1fr; }
}
