/* Google Fonts chargées de façon non-bloquante depuis header.php */

:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface2:  #1a1010;
  --border:    rgba(255,255,255,0.08);
  --accent:    #e8192c;
  --accent-dim:#8b0f1a;
  --cta:       #e8192c;
  --cta-hover: #c41020;
  --text:      #f0eded;
  --muted:     #b8b0b0;
  --white:     #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;

  --max: 1160px;
  --section: clamp(5rem, 8vw, 9rem);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}
.nav__bolt { color: var(--accent); font-size: 1.4rem; margin: 0 .05em; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a {
  color: var(--muted); font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--cta); color: var(--white);
  font-weight: 600; font-size: .875rem;
  padding: .6rem 1.4rem; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav__item-cta { display: none; }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; margin: 5px 0;
  transition: .2s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 6rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(232,25,44,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(180,10,20,.05) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 80%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,25,44,.12); border: 1px solid rgba(232,25,44,.3);
  color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: .95; letter-spacing: .01em;
  color: var(--white); margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero__h1 em { color: var(--accent); font-style: normal; }
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--cta); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 10px;
  text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(255,71,87,.3);
}
.btn-primary:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,71,87,.4); }
.btn-secondary {
  color: var(--text); font-weight: 600; font-size: .95rem;
  padding: .9rem 1.5rem; border-radius: 10px;
  text-decoration: none; border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(232,25,44,.05); }
.hero__visual {
  display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%;
}
.hero__card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  width: 100%;
  position: relative; overflow: hidden;
}
.hero__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.hero__stat {
  text-align: center; padding: 1.25rem;
  background: var(--surface2); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem; line-height: 1;
  color: var(--accent); letter-spacing: .02em;
}
.hero__stat-label { font-size: .75rem; color: var(--muted); margin-top: .4rem; }
.hero__eq {
  text-align: center; padding: 1.5rem 1rem;
  border-top: 1px solid var(--border); margin-top: 1.5rem;
}
.hero__eq-text {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--white); letter-spacing: .04em;
}
.hero__eq-sub { font-size: .78rem; color: var(--muted); margin-top: .4rem; }

/* ── STATS BAR ── */
.statsbar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.statsbar__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.statsbar__item { text-align: center; }
.statsbar__value {
  font-family: var(--font-display);
  font-size: 2.8rem; letter-spacing: .04em;
  color: var(--white); line-height: 1;
}
.statsbar__value span { color: var(--accent); }
.statsbar__label { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

/* ── SECTION HEADERS ── */
.section { padding: var(--section) 0; }
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: .01em; line-height: .95;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 540px; line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ── */
.how { background: var(--surface); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; position: relative;
}
.step__num {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 900; line-height: 1; letter-spacing: .02em;
  color: rgba(255,255,255,.12); margin-bottom: 1.25rem;
}
.step__icon {
  display: none;
}
.step::before {
  content: ''; display: block;
  width: 32px; height: 3px;
  background: var(--accent); border-radius: 2px;
  margin-bottom: 1.25rem;
}
.step__title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.step__text { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── BENEFITS ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.benefit {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .2s, transform .2s;
}
.benefit:hover { border-color: rgba(232,25,44,.3); transform: translateY(-3px); }
.benefit__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.benefit__title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.benefit__text { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── STUDIOS ── */
.studios-section { background: var(--surface); }
.studios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.studio-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .2s;
}
.studio-card:hover { border-color: rgba(232,25,44,.25); }
.studio-card__city {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: .04em; color: var(--white);
}
.studio-card__address { font-size: .85rem; color: var(--muted); display: flex; gap: .4rem; align-items: flex-start; }
.studio-card__address::before { content: '📍'; font-size: .8rem; margin-top: .15rem; flex-shrink: 0; }
.studio-card__phone { font-size: .875rem; color: var(--accent); font-weight: 600; text-decoration: none; }
.studio-card__cta {
  margin-top: auto;
  display: block; text-align: center;
  background: transparent; color: var(--accent);
  border: 1px solid rgba(232,25,44,.3); border-radius: 8px;
  padding: .65rem 1rem; font-size: .875rem; font-weight: 600;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.studio-card__cta:hover { background: rgba(232,25,44,.08); border-color: var(--accent); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; overflow: hidden;
}
.pricing-card--featured {
  border-color: rgba(232,25,44,.45);
  background: linear-gradient(145deg, var(--surface), #1a0808);
}
.pricing-card--featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.pricing-badge {
  display: inline-block; background: var(--accent); color: var(--bg);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px; margin-bottom: 1rem;
}
.pricing-name { font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: .02em; color: var(--white); line-height: 1;
}
.pricing-price span { font-size: 1.1rem; color: var(--muted); font-family: var(--font-body); }
.pricing-desc { font-size: .85rem; color: var(--muted); margin: .75rem 0 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.pricing-features li { font-size: .875rem; color: var(--text); display: flex; gap: .6rem; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-cta {
  display: block; text-align: center; text-decoration: none;
  padding: .85rem; border-radius: 8px; font-weight: 700; font-size: .9rem;
  transition: .2s;
}
.pricing-cta--primary { background: var(--cta); color: var(--white); }
.pricing-cta--primary:hover { background: var(--cta-hover); }
.pricing-cta--outline { border: 1px solid var(--border); color: var(--text); }
.pricing-cta--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── FAQ ── */
.faq-section { background: var(--surface); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left;
  color: var(--white); font-size: .95rem; font-weight: 600; font-family: var(--font-body);
}
.faq-question .icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; transition: transform .25s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center; padding: var(--section) 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(232,25,44,.07) 0%, transparent 70%);
}
.final-cta .section-title { font-size: clamp(2.5rem, 5vw, 5rem); }
.final-cta .section-sub { margin: 1.25rem auto 2.5rem; max-width: 480px; }
.final-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.tel-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text); font-weight: 600; font-size: 1.1rem;
  text-decoration: none; padding: .9rem 1.75rem;
  border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .2s, color .2s;
}
.tel-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── FOOTER ── */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex; flex-direction: column; gap: 2rem;
}
.footer__top { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer__brand .nav__logo { font-size: 1.5rem; }
.footer__tagline { font-size: .875rem; color: var(--muted); margin-top: .5rem; max-width: 240px; }
.footer__nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer__col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__col a { font-size: .875rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: var(--muted);
}

/* ── LAYOUT CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: start;
}
.contact-form-col { /* formulaire */ }
.contact-side-col { display: flex; flex-direction: column; gap: 2rem; }

.form-header { margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-full { width: 100%; justify-content: center; margin-top: .25rem; font-size: 1rem; padding: 1rem 1.5rem; }

.form-reassurance {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: center; margin-top: 1rem;
  font-size: .78rem; color: var(--muted);
}

.form-gdpr {
  font-size: .72rem; color: rgba(184,176,176,.6);
  line-height: 1.5; text-align: center; margin-top: .75rem;
}

/* Avantages sidebar */
.contact-benefits {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.contact-benefits h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--white); letter-spacing: .04em; margin-bottom: 1.25rem;
}
.contact-benefits ul { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.contact-benefits li { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.cb-icon { color: var(--accent); flex-shrink: 0; font-size: 1rem; margin-top: .05rem; }
.cb-price {
  border-top: 1px solid var(--border); margin-top: 1.5rem; padding-top: 1.25rem;
  text-align: center;
}
.cb-price__value { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--accent); }
.cb-price__label { font-size: .78rem; color: var(--muted); }

/* Phones sidebar */
.contact-phones h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--white); letter-spacing: .04em; margin-bottom: .5rem;
}
.contact-phones > p { font-size: .875rem; color: var(--muted); }

/* Témoignages */
.testimonials-grid,
.temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card,
.temo-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card__stars { color: var(--accent); font-size: 1.1rem; letter-spacing: .1em; }
.testimonial-card__text,
.temo-card__texte { font-size: .9rem; color: var(--muted); line-height: 1.75; flex: 1; }
.testimonial-card__author strong { display: block; font-size: .875rem; color: var(--text); }
.testimonial-card__author span { font-size: .78rem; color: var(--muted); }
.temo-card__auteur { font-size: .875rem; font-weight: 700; color: var(--text); }
.temo-card__studio { font-size: .78rem; color: var(--muted); }
.temo-card--video { padding: 0; overflow: hidden; }
.temo-card--video .temo-card__video-wrap { position: relative; padding-top: 56.25%; background: #000; }
.temo-card--video .temo-card__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.temo-card--video .temo-card__footer { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 700px) {
  .contact-side-col { grid-template-columns: 1fr; }
  .testimonials-grid, .temoignages-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FORMULAIRE CONTACT ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem;
}
.form-input {
  width: 100%; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .75rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: rgba(255,255,255,.25); }
.form-select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8b0b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select option { background: var(--surface); color: var(--text); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-success {
  background: rgba(232,25,44,.08); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
  margin-bottom: 1.5rem; color: var(--text);
}
.form-error {
  background: rgba(232,25,44,.12); border: 1px solid var(--accent);
  border-radius: var(--radius); padding: 1rem;
  margin-bottom: 1.5rem; color: var(--accent); font-size: .9rem;
}

/* ── BOUTONS APPEL STUDIO ── */
.studio-call-btn {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  text-decoration: none; transition: border-color .2s, background .2s;
  gap: 1rem;
}
.studio-call-btn:hover { border-color: var(--accent); background: rgba(232,25,44,.06); }
.studio-call-btn__name { font-size: .9rem; font-weight: 600; color: var(--text); }
.studio-call-btn__phone { font-size: .9rem; color: var(--accent); font-weight: 700; white-space: nowrap; }

/* ── BANDE PHOTOS ── */
.photo-strip {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-strip__inner {
  display: flex; gap: 1rem;
  animation: strip-scroll 30s linear infinite;
  width: max-content;
}
.photo-strip__inner img {
  width: 320px; height: 213px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  filter: brightness(.85);
  transition: filter .3s;
}
.photo-strip__inner img:hover { filter: brightness(1); }
@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .photo-strip__inner { animation: none; }
}

/* ── HERO PHOTO STACK ── */
.hero__photo-stack {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}
.hero__photo-stack > img:first-child,
.hero__photo-stack > video:first-child {
  width: 100%; height: 380px;
  object-fit: cover; border-radius: var(--radius-lg);
  display: block;
}
.hero__photo-stack > img:last-child {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 42%; height: 160px;
  object-fit: cover; border-radius: var(--radius);
  border: 3px solid var(--bg);
}
@media (max-width: 900px) {
  .hero__photo-stack { display: none; }
}

/* ── GALERIE STUDIO ── */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.studio-gallery__item { overflow: hidden; border-radius: var(--radius); }
.studio-gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.studio-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.studio-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .studio-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .studio-gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .studio-gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .studio-gallery__item--wide { grid-column: span 1; }
}

/* ── BLOG ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .25s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-card__tag {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); padding: 1.5rem 1.5rem .5rem;
}
.blog-card__title {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--white); padding: .25rem 1.5rem 1rem;
  line-height: 1.2; letter-spacing: .03em;
}
.blog-card__excerpt {
  font-size: .875rem; color: var(--muted); line-height: 1.7;
  padding: 0 1.5rem 1.5rem; flex: 1;
}
.blog-card__cta {
  display: block; padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--accent);
  text-decoration: none; transition: background .2s;
}
.blog-card__cta:hover { background: rgba(232,25,44,.08); }

/* Article blog */
.article { max-width: 780px; margin: 0 auto; padding: clamp(2rem,5vw,4rem) clamp(1.25rem,4vw,2rem); }
.article h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem);
  color: var(--white); letter-spacing: .03em; line-height: 1.1; margin-bottom: 1.5rem; }
.article h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem);
  color: var(--white); letter-spacing: .03em; margin: 2.5rem 0 1rem; }
.article h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 2rem 0 .75rem; }
.article p { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.article strong { color: var(--text); }
.article ul, .article ol { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article li { margin-bottom: .4rem; }
.article .article-meta {
  font-size: .8rem; color: var(--muted); letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 2rem;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.article .article-tag {
  display: inline-block; background: rgba(232,25,44,.12);
  color: var(--accent); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 4px; margin-bottom: 1.25rem;
}
.article-cta-box {
  background: var(--surface2); border: 1px solid var(--accent);
  border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; margin: 3rem 0;
}
.article-cta-box h3 { font-family: var(--font-display); font-size: 1.8rem;
  color: var(--white); margin-bottom: .5rem; }
.article-cta-box p { color: var(--muted); margin-bottom: 1.5rem; }
.article-breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 2rem; }
.article-breadcrumb a { color: var(--muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-figure { margin: 2rem 0 2.5rem; }
.article-figure img { display: block; border-radius: var(--radius-lg); width: 100%; height: auto; }
.article-figure--portrait img { max-width: 420px; margin: 0 auto; }
.article-figure figcaption { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .6rem; font-style: italic; }

/* ── UTILS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .studios-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__item-cta { display: block; }
  .nav__burger { display: block; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .studios-grid { grid-template-columns: 1fr; }
  .statsbar__inner { flex-direction: column; align-items: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer__col { flex: 1; min-width: 130px; }
}
@media (max-width: 480px) {
  #cookie-banner { padding: 1rem; gap: .75rem; }
  #cookie-banner p { min-width: unset; }
}

/* ── PAGES LÉGALES ── */
.legal-content { color: var(--muted); line-height: 1.8; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: .04em; margin: 2.5rem 0 .75rem; border-bottom: 1px solid var(--border); padding-bottom: .5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: .4rem; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ── BANDEAU COOKIES ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
#cookie-banner p { font-size: .85rem; color: var(--muted); margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn { padding: .5rem 1.25rem; border-radius: var(--radius); font-size: .82rem; font-weight: 600; cursor: pointer; border: none; transition: opacity .15s; }
.cookie-btn--accept { background: var(--accent); color: #000; }
.cookie-btn--refuse  { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.cookie-btn:hover { opacity: .85; }
