/* =================================================================
   Les Ateliers d'impro · Toulouse — feuille de style commune
   Identité : affiche de théâtre vintage
   Noir de scène + crème parchemin + rouge théâtre
   ================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Rye&family=Ultra&family=Zilla+Slab:wght@500;600;700&family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  --black:      #100d0c;   /* fond de scène */
  --black-2:    #1b1513;   /* panneau sombre */
  --cream:      #f1e7d3;   /* parchemin */
  --cream-2:    #f7f0e1;   /* papier clair */
  --cream-dim:  #cbbda2;
  --ink:        #221b18;   /* texte sur crème */
  --muted:      #6f635a;   /* texte atténué sur crème */
  --muted-d:    #b9a98f;   /* texte atténué sur sombre */
  --red:        #a51d22;   /* rouge théâtre */
  --red-bright: #c4272c;
  --red-deep:   #821419;
  --gold:       #c9a24b;   /* dorure discrète */
  --line:       rgba(241,231,211,.16);
  --line-ink:   rgba(34,27,24,.14);
  --shadow:     0 18px 50px rgba(0,0,0,.45);
  --shadow-red: 0 14px 34px rgba(165,29,34,.32);
  --maxw:       1180px;
  --font-poster:"Zilla Slab", Georgia, serif;          /* gros titres / sections (slab) */
  --font-west:  "Rye", Georgia, serif;                 /* logo "Les Ateliers" — western slab vieilli */
  --font-script:"Ultra", Georgia, serif;               /* logo "d'impro" — Cooper Black rond rétro */
  --font-gothic:"Bebas Neue", "Oswald", sans-serif;    /* "TOULOUSE" — sans condensée capitales */
  --font-impact:"Alfa Slab One", Georgia, serif;       /* bandeau brush */
  --font-cond:  "Oswald", "Segoe UI", sans-serif;      /* sous-titres / nav / boutons */
  --font-body:  "Lora", Georgia, serif;                /* corps de texte */
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background-color: var(--black);
  background-image:
    radial-gradient(ellipse 60% 40% at 50% -5%, rgba(201,162,75,.10), transparent 60%),
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(165,29,34,.12), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 2px, transparent 2px 9px);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-bright); text-decoration: none; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: var(--font-poster); font-weight: 700; line-height: 1.1; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }

/* ---------- Boutons ---------- */
.btn {
  --bw: 2px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; font-size: 1rem; line-height: 1.1;
  padding: .95em 1.5em; border-radius: 4px; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary {
  background: var(--red); color: #fff !important;
  border: var(--bw) solid var(--red);
  box-shadow: var(--shadow-red), inset 0 0 0 2px rgba(241,231,211,.25);
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream) !important;
  border: var(--bw) solid var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--ink) !important; }
.btn-lg { font-size: 1.25rem; padding: 1.05em 2em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,13,12,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 1.2rem; min-height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand b { font-family: var(--font-poster); font-weight: 800; font-size: 1.18rem; color: var(--cream); line-height: 1; }
.brand b i { color: var(--red-bright); font-style: italic; }
.brand span { display: block; font-family: var(--font-cond); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted-d); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .05em;
  font-size: .82rem; font-weight: 600; color: var(--cream);
}
.nav a:hover, .nav a.is-active { color: var(--red-bright); }
.nav .btn { padding: .6em 1.05em; font-size: .8rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: .2s; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(16,13,12,.98); border-bottom: 1px solid var(--line);
    padding: .5rem 0; display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .9rem 22px; border-top: 1px solid var(--line); }
  .nav .btn { margin: .6rem 22px; }
}

/* ---------- Curtain / ornements ---------- */
.curtain-l, .curtain-r { position: absolute; top: 0; bottom: 0; width: 8%; min-width: 46px; z-index: 2; pointer-events: none; }
.curtain-l { left: 0; background: linear-gradient(90deg, rgba(130,20,25,.9), rgba(130,20,25,.0)); }
.curtain-r { right: 0; background: linear-gradient(-90deg, rgba(130,20,25,.9), rgba(130,20,25,.0)); }
.spotlights::before, .spotlights::after {
  content: ""; position: absolute; top: -10%; width: 40%; height: 80%; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(241,231,211,.16), transparent 60%);
}
.spotlights::before { left: 4%; transform: rotate(12deg); }
.spotlights::after { right: 4%; transform: rotate(-12deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 4rem 0 3rem;
  border-bottom: 6px solid var(--red);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,162,75,.12), transparent 55%),
    linear-gradient(180deg, #161110, #0c0a09);
}
.hero .inner { position: relative; z-index: 3; max-width: 880px; margin: 0 auto; }
.masks { width: 84px; height: auto; margin: 0 auto .4rem; }
.masks path { fill: var(--cream); }
.logo-lockup { position: relative; z-index: 5; margin: 0 0 1.4rem; }
.logo-lockup .l1, .logo-lockup .l2 { display: block; }
.logo-lockup .l1 {
  font-family: var(--font-west); font-weight: 400; color: var(--cream);
  font-size: clamp(1.7rem, 6.8vw, 4.7rem); line-height: 1; letter-spacing: .005em;
  text-shadow: 0 3px 0 rgba(0,0,0,.45);
}
.logo-lockup .l2 {
  font-family: var(--font-script); font-weight: 400; color: var(--red-bright);
  font-size: clamp(2.1rem, 9.6vw, 6.2rem); line-height: .95; margin: .04em 0 .12rem;
  transform: rotate(-3deg); text-shadow: 0 5px 16px rgba(0,0,0,.5);
}
.logo-lockup .l-rule {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  color: var(--red); font-size: .8rem; margin: .15rem 0 .5rem;
}
.logo-lockup .l-rule::before, .logo-lockup .l-rule::after {
  content: ""; height: 2px; width: clamp(40px, 12vw, 120px); background: var(--red); opacity: .9;
}
.logo-lockup .l3 {
  display: flex; align-items: center; justify-content: center; gap: clamp(.6rem, 2vw, 1.1rem);
  font-family: var(--font-gothic); font-weight: 400; color: var(--cream);
  text-transform: uppercase; letter-spacing: .34em; font-size: clamp(1.15rem, 3.4vw, 2rem);
  padding-left: .34em;
}
.logo-lockup .l3::before, .logo-lockup .l3::after {
  content: ""; height: 2px; width: clamp(24px, 7vw, 66px); background: var(--cream); opacity: .8;
}

.badge-here {
  display: inline-block; border: 2px solid var(--cream); border-radius: 3px;
  padding: .55rem 1rem; margin: .4rem 0 1.6rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; color: var(--cream); background: rgba(0,0,0,.25);
}
.badge-here b { color: var(--red-bright); }

/* bandeau brush "essai gratuit" */
.brush {
  position: relative; display: inline-block; margin: 1rem auto 1.6rem;
  background: var(--cream); color: var(--ink);
  padding: 1rem 2.6rem; border-radius: 40px 16px 36px 14px / 22px 30px 18px 28px;
  box-shadow: var(--shadow);
}
.brush small { display: block; font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: clamp(1rem,3.5vw,1.6rem); color: var(--ink); }
.brush b { display: block; font-family: var(--font-impact); text-transform: uppercase; letter-spacing: .01em; font-size: clamp(2rem,7vw,3.6rem); color: var(--red); line-height: .95; }
.brush::before, .brush::after { content: "›››"; position: absolute; top: 50%; transform: translateY(-50%); color: var(--red); font-weight: 800; letter-spacing: -.1em; opacity: .8; }
.brush::before { left: .6rem; content: "‹‹‹"; }
.brush::after { right: .6rem; }
.hero-cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: .6rem; }

/* ---------- Bandeau secondaire (pages internes) ---------- */
.pagehead {
  position: relative; overflow: hidden; text-align: center;
  padding: 3.4rem 0 2.6rem; border-bottom: 5px solid var(--red);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,162,75,.10), transparent 55%),
    linear-gradient(180deg, #161110, #0c0a09);
}
.pagehead .inner { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; }
.pagehead .kicker { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .28em; font-size: .78rem; color: var(--red-bright); margin-bottom: .6rem; }
.pagehead h1 { color: var(--cream); font-weight: 900; font-size: clamp(2rem, 6vw, 3.6rem); }
.pagehead .l2 { font-style: italic; color: var(--red-bright); }
.pagehead p { color: var(--muted-d); max-width: 620px; margin: .8rem auto 0; }
.breadcrumb { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--muted-d); margin-top: 1.2rem; }
.breadcrumb a { color: var(--cream); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 4rem 0; }
.section-dark { background: linear-gradient(180deg, #120e0d, #171210); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-paper { background: var(--cream); color: var(--ink); }
.section-paper h2, .section-paper h3 { color: var(--ink); }
.section-paper p { color: var(--ink); }
.section-paper .muted { color: var(--muted); }

.section-title { text-align: center; margin-bottom: 2.4rem; }
.section-title .kicker { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .26em; font-size: .78rem; color: var(--red-bright); margin-bottom: .5rem; }
.section-title h2 { font-weight: 800; font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.section-title h2 .em { color: var(--red); font-style: italic; }
.section-title .rule { width: 90px; height: 4px; background: var(--red); border-radius: 2px; margin: .9rem auto 0; }
.lead { font-size: 1.18rem; }

/* ---------- Pastilles features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature { text-align: center; }
.feature .disc {
  width: 116px; height: 116px; margin: 0 auto 1rem; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--red-bright), var(--red-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.4), inset 0 0 0 3px rgba(241,231,211,.18);
}
.feature .disc svg { width: 54px; height: 54px; fill: var(--cream); }
.feature h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.18rem; }
.feature p { color: inherit; font-size: 1rem; }
.section-dark .feature h3 { color: var(--cream); }
.section-dark .feature p { color: var(--muted-d); }

/* ---------- Cartes ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--cream-2); color: var(--ink); border: 1px solid var(--line-ink);
  border-top: 4px solid var(--red); border-radius: 8px; padding: 1.6rem; box-shadow: var(--shadow);
}
.card h3 { color: var(--ink); font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: 1.2rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card .tag { display: inline-block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 700; color: #fff; background: var(--red); padding: .2rem .6rem; border-radius: 3px; margin-bottom: .7rem; }

/* listes “check” */
.ticks { list-style: none; padding: 0; margin: 1.2rem 0; }
.ticks li { position: relative; padding-left: 1.8rem; margin-bottom: .6rem; }
.ticks li::before { content: "★"; position: absolute; left: 0; top: 0; color: var(--red); }

/* bandeau CTA */
.cta-band { text-align: center; background: linear-gradient(180deg, #15100e, #1d1512); border-top: 5px solid var(--red); border-bottom: 5px solid var(--red); }
.cta-band h2 { color: var(--cream); font-weight: 900; font-size: clamp(1.8rem, 5vw, 3rem); }
.cta-band .em { color: var(--red-bright); font-style: italic; }
.cta-band p { color: var(--muted-d); max-width: 600px; margin: 0 auto 1.6rem; }

/* tableau horaires */
.schedule { width: 100%; border-collapse: collapse; background: var(--cream-2); color: var(--ink); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.schedule th, .schedule td { padding: .9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line-ink); }
.schedule th { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; background: var(--ink); color: var(--cream); }
.schedule tr:last-child td { border-bottom: 0; }
.schedule .lvl { font-family: var(--font-cond); font-weight: 700; color: var(--red); text-transform: uppercase; font-size: .82rem; }

/* prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1.4rem,3.6vw,2rem); margin-top: 2.2rem; }
.prose h2 .em { color: var(--red); font-style: italic; }
.prose h3 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .03em; font-size: 1.2rem; margin-top: 1.6rem; }
.prose a { text-decoration: underline; }

/* ---------- Footlights ---------- */
.footlights { height: 26px; background: linear-gradient(180deg, var(--red-deep), var(--red)); position: relative; }
.footlights::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(241,231,211,.95) 0 3px, transparent 4px);
  background-size: 30px 26px; background-position: center;
  opacity: .85;
}

/* ---------- Footer ---------- */
.site-footer { background: #0c0a09; color: var(--muted-d); padding: 3rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; color: var(--cream); font-size: .9rem; margin-bottom: .8rem; }
.site-footer a { color: var(--muted-d); }
.site-footer a:hover { color: var(--red-bright); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-brand b { font-family: var(--font-poster); font-weight: 800; color: var(--cream); font-size: 1.3rem; }
.footer-brand b i { color: var(--red-bright); font-style: italic; }
.footer-bottom { text-align: center; margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }

/* =================================================================
   Visuels d'affiche — graphismes SANS TEXTE + texte HTML superposé
   (mêmes polices / couleurs / tailles que la maquette)
   ================================================================= */
.brand-logo { width: 40px; height: 40px; object-fit: contain; flex: none; }

/* fond de scène du hero (image vraie : spots + rideaux) */
.hero-stage-bg {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(1280px, 122%); max-width: none; height: auto; z-index: 0;
  opacity: .6; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
          mask-image: linear-gradient(180deg, #000 62%, transparent 96%);
}

/* emblème masques */
.emblem { width: clamp(74px, 11vw, 120px); height: auto; margin: 0 auto .2rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.55)); }

/* plaque "ICI ON JOUE ON ÉCOUTE ON OSE !" — coin haut droit */
.sign { position: absolute; top: 6px; right: 6px; width: clamp(116px, 15vw, 178px); z-index: 4; transform: rotate(2deg); filter: drop-shadow(0 10px 22px rgba(0,0,0,.55)); }
.sign .sign-img { width: 100%; height: auto; display: block; }
.sign .sign-txt {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .15em;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; line-height: 1.04; color: var(--cream);
  font-size: clamp(.58rem, 1.5vw, .96rem); text-align: center; padding: 4% 6% 9%;
}
.sign .sign-txt .ose { color: var(--red-bright); }

/* scène photo (duo + public) */
.stage { position: relative; max-width: 840px; margin: 1rem auto .4rem; z-index: 3; }
.stage-aud { display: block; width: 100%; height: auto; opacity: .95; border-radius: 6px; }
.stage-duo { position: absolute; left: 50%; bottom: -2%; transform: translateX(-50%); width: 33%; max-width: 280px; height: auto; z-index: 2; filter: drop-shadow(0 14px 22px rgba(0,0,0,.6)); }

/* bandeau brush "PREMIER ATELIER / D'ESSAI GRATUIT" */
.brush-banner { position: relative; display: block; max-width: 600px; margin: .2rem auto 1.4rem; z-index: 3; transition: transform .2s ease; }
.brush-banner:hover { transform: scale(1.015); }
.brush-banner > img { width: 100%; height: auto; display: block; }
.brush-banner .bt {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; line-height: .92;
}
.brush-banner .bt small {
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ink); font-size: clamp(.95rem, 3.4vw, 1.55rem);
}
.brush-banner .bt b {
  font-family: var(--font-impact); text-transform: uppercase;
  letter-spacing: .005em; color: var(--red); font-size: clamp(1.45rem, 5.6vw, 2.7rem);
}

.hero-lead { max-width: 600px; margin: .6rem auto 0; color: var(--muted-d); font-size: 1.08rem; line-height: 1.6; position: relative; z-index: 3; }

/* pastilles features (disque image + titre + texte) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.feature-card { text-align: center; padding: 0 .4rem; }
.features-grid .feature-card + .feature-card { border-left: 1px solid var(--line); }
.feature-card .disc-img { width: clamp(116px, 20vw, 158px); height: auto; margin: 0 auto .9rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,.4)); transition: transform .2s ease; }
.feature-card:hover .disc-img { transform: translateY(-6px); }
.feature-card h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: clamp(1rem, 2.5vw, 1.22rem); color: var(--cream); margin-bottom: .5rem; line-height: 1.08; }
.feature-card p { color: var(--muted-d); font-size: .98rem; max-width: 230px; margin: 0 auto; }

/* bouton "RÉSERVER MON ATELIER D'ESSAI" (bandeau rouge) */
.reserve-btn { position: relative; display: block; max-width: 500px; width: 92%; margin: 2.6rem auto 0; transition: transform .15s ease, filter .15s ease; }
.reserve-btn > img { width: 100%; height: auto; display: block; }
.reserve-btn:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 22px rgba(165,29,34,.5)); }
.reserve-btn .rt {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 3% 11% 7%; line-height: 1.02;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--cream); font-size: clamp(2rem, 5.4vw, 3.3rem);
  white-space: nowrap;
}

/* localisation "📍 TOULOUSE" */
.geo { display: flex; align-items: center; justify-content: center; gap: .65rem; margin: 1.8rem auto 0; }
.geo img { width: clamp(26px, 5vw, 38px); height: auto; }
.geo span { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .34em; font-size: clamp(1rem, 3vw, 1.35rem); color: var(--cream); padding-left: .34em; }
.geo::before, .geo::after { content: ""; height: 2px; width: clamp(18px, 7vw, 56px); background: var(--cream); opacity: .55; }

/* rampe de lumières (marquee) avant le footer */
.marquee { text-align: center; padding: .6rem 22px .2rem; }
.marquee img { display: inline-block; width: auto; height: clamp(108px, 19vw, 188px); margin: 0 auto; }

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; gap: 2.4rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: .7rem; max-width: none; }
  .feature-card { padding: 0 .15rem; }
  .feature-card .disc-img { width: clamp(54px, 19vw, 118px); margin-bottom: .6rem; }
  .feature-card h3 { font-size: clamp(.7rem, 2.5vw, 1rem); letter-spacing: .02em; margin-bottom: .35rem; }
  .feature-card p { font-size: clamp(.7rem, 2.3vw, .92rem); max-width: none; }
  .stage-duo { width: 42%; max-width: 200px; }
  .hero-stage-bg { opacity: .42; }
  .sign { width: 96px; top: 2px; right: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .section { padding: 3rem 0; }
  body { font-size: 17px; }
}

/* garde-fou petits téléphones : évite que "ATELIER D'ESSAI" (nowrap) déborde du cadre */
@media (max-width: 430px) {
  .reserve-btn .rt { padding: 3% 8% 7%; font-size: clamp(1.35rem, 6.6vw, 2rem); }
}
