/*
Theme Name: MADAC
Theme URI: https://madac.fr
Author: MADAC
Author URI: https://madac.fr
Description: Theme custom pour la Maison des Arts Creoles de Guadeloupe
Version: 1.0.0
Text Domain: madac
*/

/* ══════════════════════════════════════════════════════════════════
   VARIABLES & RESET
   ══════════════════════════════════════════════════════════════════ */
:root {
  --brun: #5a3010;
  --brun-clair: #8b5a2b;
  --brun-pale: #c4956a;
  --creme: #faf6ee;
  --creme2: #f2ebe0;
  --or: #c9873a;
  --vert: #2d5a1b;
  --rouge: #c43b2a;
  --texte: #2a1a08;
  --texte-light: #8a7060;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--creme);
  color: var(--texte);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
#cur {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--brun);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

#cur2 {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(90, 48, 16, .35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .28s, height .28s;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--creme2); }
::-webkit-scrollbar-thumb { background: var(--brun-pale); }

/* ══════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 52px;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

nav.solid {
  background: rgba(250, 246, 238, .97);
  border-color: rgba(90, 48, 16, .1);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .08em;
  transition: color .4s;
}

.nav-logo-tagline {
  font-family: 'Jost', sans-serif;
  font-size: .46rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-top: 2px;
  transition: color .4s;
}

nav.solid .nav-logo-name { color: var(--brun); }
nav.solid .nav-logo-tagline { color: var(--brun-pale); }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color .4s;
}

.nav-links a:hover { color: var(--or); }
nav.solid .nav-links a { color: var(--texte); }
nav.solid .nav-links a:hover { color: var(--brun); }
.nav-reserve { background: var(--brun) !important; color: var(--creme) !important; padding: 9px 22px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?w=1600&q=85');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 48, 16, .85) 0%, rgba(16, 10, 5, .75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
  animation: riseIn 1s .1s both;
}

h1.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .92;
  color: var(--creme);
  animation: riseIn 1s .25s both;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: rgba(250, 246, 238, .75);
  margin-top: 24px;
  animation: riseIn 1s .4s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: riseIn 1s .55s both;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════ */
.btn {
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 15px 36px;
  transition: transform .25s, background .3s;
}

.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--or); color: var(--texte); }
.btn-primary:hover { background: #d99a4a; }
.btn-outline { border: 1.5px solid rgba(250, 246, 238, .4); color: rgba(250, 246, 238, .9); }
.btn-outline:hover { border-color: var(--or); background: var(--or); color: var(--texte); }
.btn-brun { background: var(--brun); color: var(--creme); }
.btn-brun:hover { background: var(--brun-clair); }

/* ══════════════════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--or);
  padding: 13px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--brun);
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}

.ticker-item::after {
  content: '\2726';
  font-size: .55rem;
  color: var(--brun);
  opacity: .6;
}

/* ══════════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════════ */
.section {
  padding: 110px 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: .57rem;
  font-weight: 600;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--brun-pale);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--brun-pale);
}

.section-h {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--texte);
}

.section-h em {
  font-style: italic;
  color: var(--brun);
}

.appear {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.appear.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════════ */
.about { background: var(--creme2); }
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-text .section-tag { color: var(--brun); }
.about-text .section-tag::before { background: var(--brun); }
.about-text p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.9; color: var(--texte-light); margin-top: 22px; }
.about-text p strong { color: var(--brun); font-weight: 600; font-style: italic; }
.about-poster { position: relative; max-width: 420px; }
.about-poster img { width: 100%; height: auto; box-shadow: 0 12px 48px rgba(90, 48, 16, .2); }

/* ══════════════════════════════════════════════════════════════════
   MASTERCLASS
   ══════════════════════════════════════════════════════════════════ */
.masterclass { background: var(--brun); }
.masterclass .section-tag { color: var(--brun-pale); }
.masterclass .section-tag::before { background: var(--brun-pale); }
.masterclass .section-h { color: var(--creme); }
.masterclass .section-h em { color: var(--or); }
.masterclass-intro { max-width: 750px; margin: 0 auto 64px; text-align: center; }
.masterclass-intro p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(250, 246, 238, .7); line-height: 1.85; margin-top: 18px; }
.masterclass-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 24px; }
.master-card { background: rgba(250, 246, 238, .05); border: 1px solid rgba(250, 246, 238, .12); overflow: hidden; transition: transform .35s, box-shadow .35s, border-color .35s; }
.master-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(201, 135, 58, .3); border-color: var(--or); }
.master-header { padding: 36px 32px; background: linear-gradient(135deg, rgba(201, 135, 58, .15) 0%, rgba(90, 48, 16, .08) 100%); border-bottom: 1px solid rgba(250, 246, 238, .1); }
.master-icon { font-size: 3rem; margin-bottom: 14px; }
.master-category { font-size: .52rem; font-weight: 600; letter-spacing: .35em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
.master-title { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 700; color: var(--creme); line-height: 1.2; margin-bottom: 12px; }
.master-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(250, 246, 238, .65); line-height: 1.5; }
.master-body { padding: 32px; }
.master-desc { font-size: .9rem; color: rgba(250, 246, 238, .7); line-height: 1.75; margin-bottom: 28px; }
.master-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.master-detail { display: flex; flex-direction: column; gap: 6px; }
.detail-label { font-size: .55rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--or); }
.detail-value { font-size: .88rem; color: var(--creme); font-weight: 400; }
.master-program { margin-bottom: 28px; }
.master-program h4 { font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 700; color: var(--creme); margin-bottom: 14px; }
.master-program ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.master-program li { font-size: .82rem; color: rgba(250, 246, 238, .7); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.master-program li::before { content: '\2192'; color: var(--or); font-weight: 700; flex-shrink: 0; }
.master-footer { padding: 24px 32px; background: rgba(16, 10, 5, .3); border-top: 1px solid rgba(250, 246, 238, .08); display: flex; justify-content: space-between; align-items: center; }
.master-price { display: flex; flex-direction: column; gap: 4px; }
.master-price-label { font-size: .58rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: rgba(250, 246, 238, .5); }
.master-price-value { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--or); }
.master-price-detail { font-size: .65rem; color: rgba(250, 246, 238, .5); margin-top: -2px; }
.master-cta { background: var(--or); color: var(--brun); border: none; font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 14px 28px; cursor: none; transition: background .25s, transform .2s; }
.master-cta:hover { background: #d99a4a; transform: translateY(-2px); }
.master-badge { position: absolute; top: 24px; right: 24px; background: var(--rouge); color: #fff; font-size: .48rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; z-index: 2; }

/* ══════════════════════════════════════════════════════════════════
   CATALOGUE ENTREPRISES
   ══════════════════════════════════════════════════════════════════ */
.catalogue { background: var(--creme); }
.catalogue .section-tag { color: var(--brun); }
.catalogue .section-tag::before { background: var(--brun); }
.catalogue-intro { max-width: 700px; margin: 0 auto 64px; text-align: center; }
.catalogue-intro p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--texte-light); line-height: 1.85; margin-top: 18px; }
.catalogue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; margin-top: 56px; }
.prestation-card { background: #fff; border: 1px solid rgba(90, 48, 16, .1); padding: 0; overflow: hidden; transition: transform .35s, box-shadow .35s, border-color .35s; position: relative; }
.prestation-card:hover { transform: translateY(-6px); box-shadow: 0 16px 56px rgba(90, 48, 16, .15); border-color: var(--or); }
.prestation-header { background: linear-gradient(135deg, var(--brun) 0%, var(--brun-clair) 100%); padding: 32px 28px; position: relative; overflow: hidden; }
.prestation-header::before { content: ''; position: absolute; top: -50%; right: -20%; width: 200px; height: 200px; background: rgba(255, 255, 255, .08); border-radius: 50%; }
.prestation-icon { font-size: 2.8rem; margin-bottom: 12px; }
.prestation-name { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: var(--creme); line-height: 1.2; margin-bottom: 8px; }
.prestation-tagline { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-style: italic; color: rgba(250, 246, 238, .7); line-height: 1.5; }
.prestation-body { padding: 32px 28px; }
.prestation-desc { font-size: .88rem; color: var(--texte-light); line-height: 1.75; margin-bottom: 24px; }
.prestation-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.prestation-features li { font-size: .82rem; color: var(--texte); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.prestation-features li::before { content: '\2713'; font-weight: 700; color: var(--vert); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.prestation-price-block { background: var(--creme2); padding: 20px; margin: 0 -28px -32px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(90, 48, 16, .08); }
.prestation-price { display: flex; flex-direction: column; gap: 4px; }
.price-label { font-size: .58rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--texte-light); }
.price-value { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; color: var(--brun); }
.price-value.devis { font-size: 1.1rem; color: var(--or); }
.prestation-cta { background: var(--brun); color: var(--creme); border: none; font-family: 'Jost', sans-serif; font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 12px 24px; cursor: none; transition: background .25s, transform .2s; }
.prestation-cta:hover { background: var(--brun-clair); transform: translateY(-2px); }
.prestation-badge { position: absolute; top: 20px; right: 20px; background: var(--or); color: var(--brun); font-family: 'Jost', sans-serif; font-size: .48rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 6px 14px; z-index: 2; }
.prestation-card.featured { border-color: var(--or); border-width: 2px; }
.prestation-card.featured .prestation-header { background: linear-gradient(135deg, var(--or) 0%, #d99a4a 100%); }

/* ══════════════════════════════════════════════════════════════════
   MODAL RESERVATION
   ══════════════════════════════════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(16, 10, 0, .88); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s; backdrop-filter: blur(5px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--creme); max-width: 620px; width: 92%; max-height: 92vh; overflow-y: auto; position: relative; transform: translateY(30px); transition: transform .35s; padding: 56px 44px; box-shadow: 0 24px 80px rgba(0, 0, 0, .4); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 1.6rem; cursor: none; color: var(--texte-light); transition: color .2s, transform .2s; font-weight: 300; }
.modal-close:hover { color: var(--brun); transform: rotate(90deg); }
.modal-tag { font-family: 'Jost', sans-serif; font-size: .58rem; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--brun-pale); margin-bottom: 12px; display: block; }
.modal-title { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--texte); margin-bottom: 8px; line-height: 1.2; }
.modal-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--texte-light); margin-bottom: 36px; }
.modal-form { display: flex; flex-direction: column; gap: 20px; }
.mf-label { font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--brun); display: block; margin-bottom: 8px; }
.mf-input, .mf-select, .mf-textarea { width: 100%; border: 1px solid rgba(90, 48, 16, .25); background: rgba(90, 48, 16, .02); padding: 14px 18px; font-family: 'Jost', sans-serif; font-size: .95rem; color: var(--texte); outline: none; transition: border-color .25s; }
.mf-input:focus, .mf-select:focus, .mf-textarea:focus { border-color: var(--brun); }
.mf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mf-select { cursor: none; }
.mf-select option { background: var(--creme); }
.mf-total { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: var(--creme2); border: 1px solid rgba(90, 48, 16, .12); margin-top: 8px; }
.mf-total-label { font-family: 'Jost', sans-serif; font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--texte-light); }
.mf-total-price { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; color: var(--vert); }
.mf-submit { background: var(--brun); color: var(--creme); border: none; font-family: 'Jost', sans-serif; font-size: .65rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; padding: 18px; cursor: none; transition: background .25s, transform .2s; margin-top: 8px; }
.mf-submit:hover { background: var(--brun-clair); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   VIDEOS
   ══════════════════════════════════════════════════════════════════ */
.videos { background: var(--creme2); }
.videos .section-tag { color: var(--brun); }
.videos .section-tag::before { background: var(--brun); }
.videos-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 20px; }
.video-card { background: #fff; border: 1px solid rgba(90, 48, 16, .08); overflow: hidden; transition: transform .35s, box-shadow .35s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(90, 48, 16, .15); }
.video-frame { position: relative; width: 100%; padding-bottom: 56.25%; overflow: hidden; background: #000; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 24px; }
.video-title { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--texte); margin-bottom: 8px; line-height: 1.3; }
.video-desc { font-family: 'Cormorant Garamond', serif; font-size: .9rem; font-style: italic; color: var(--texte-light); line-height: 1.6; margin-bottom: 12px; }
.video-date { font-size: .65rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--or); }

/* ══════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════ */
.contact { background: var(--brun); padding: 110px 56px; }
.contact .section-tag { color: var(--brun-pale); }
.contact .section-tag::before { background: var(--brun-pale); }
.contact .section-h { color: var(--creme); }
.contact .section-h em { color: var(--or); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 56px; }
.contact-info p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(250, 246, 238, .65); line-height: 1.85; margin-top: 22px; }
.contact p { color: rgba(250, 246, 238, .75); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; line-height: 1.85; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-label { font-family: 'Jost', sans-serif; font-size: .55rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--or); display: block; margin-bottom: 8px; }
.cf-input, .cf-select, .cf-textarea { background: rgba(250, 246, 238, .05); border: 1px solid rgba(250, 246, 238, .15); padding: 13px 16px; color: var(--creme); font-family: 'Jost', sans-serif; font-size: .9rem; outline: none; width: 100%; margin-bottom: 18px; }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-submit { background: var(--or); color: var(--brun); border: none; font-family: 'Jost', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; padding: 16px 40px; cursor: none; transition: background .25s; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
footer {
  background: #0d0c08;
  padding: 60px 56px;
  text-align: center;
  color: rgba(250, 246, 238, .3);
}

.footer-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brun-pale);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   HAMBURGER
   ══════════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 500;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background .4s;
}

nav.solid .nav-hamburger span { background: var(--brun); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(250, 246, 238, .98); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 450; }
  .nav-links.open { display: flex; }
  .nav-links.open a { color: var(--texte); font-size: .9rem; }
  .nav-links.open a:hover { color: var(--brun); }
  .section { padding: 80px 24px; }
  .contact { padding: 80px 24px; }
  footer { padding: 40px 24px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .videos-grid, .catalogue-grid, .masterclass-grid { grid-template-columns: 1fr; }
  .cf-grid, .mf-grid, .master-details { grid-template-columns: 1fr; }
  .modal { padding: 36px 24px; }
  #cur, #cur2 { display: none; }
  body { cursor: auto; }
  button, .master-cta, .prestation-cta, .mf-submit, .cf-submit, .modal-close, .mf-select { cursor: auto; }
}

@media (max-width: 480px) {
  h1.hero-title { font-size: 3rem; }
  .hero-eyebrow { font-size: .55rem; letter-spacing: .3em; }
  .hero-subtitle { font-size: 1rem; }
  .section-h { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .master-title { font-size: 1.3rem; }
  .prestation-name { font-size: 1.25rem; }
  .master-price-value { font-size: 1.6rem; }
  .prestation-price-block { flex-direction: column; gap: 12px; align-items: flex-start; padding: 20px 28px; }
}
