/* ============================================
   400shot — Photographe & Vidéaste · Paris
   Design system
   ============================================ */

:root {
  /* Palette */
  --bg: #ececec;
  --bg-alt: #e2e2e2;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --muted: #9a9a9a;
  --muted-2: #6e6e6e;
  --line: #d4d4d4;
  --red: #C61330;
  --red-dark: #9E0E26;
  --red-soft: #f7d4d8;

  /* Alias texte (hierarchie de gris) */
  --text-1: var(--ink);
  --text-2: var(--muted-2);
  --text-3: var(--muted);

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;
  --space-12: 96px;
  --space-16: 128px;

  /* Radii */
  --radius-pill: 999px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1280px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  background: rgba(236, 236, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.nav-brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-right: var(--space-4);
}

.nav-brand sup {
  font-size: 10px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.pill:hover { background: var(--red-dark); transform: translateY(-1px); }
.pill.is-active { background: var(--ink); }
.pill-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.pill-ghost:hover { background: var(--ink); color: #fff; }

/* ============================================
   HERO (Home)
   ============================================ */

.hero {
  padding: var(--space-12) 0 var(--space-10);
  text-align: center;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  display: inline-block;
  margin-bottom: 0;
}

.hero-logo svg,
.hero-logo img {
  width: clamp(420px, 80vw, 1100px);
  height: auto;
  display: block;
}

.hero-title {
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}

.hero-title .accent { color: var(--red); display: block; }

.hero-cta {
  margin-top: var(--space-2);
}

/* ============================================
   MINI-REEL PRESENTATION BLOCK
   ============================================ */

.reel-block {
  padding: var(--space-10) 0 var(--space-12);
}

.reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

.reel-text {
  max-width: 860px;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 auto;
  text-align: center;
}

.reel-text .dim {
  color: var(--muted);
  display: block;
  margin-top: var(--space-3);
}

.reel-visual {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.reel-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #0a0a0a 100%);
}

.reel-visual .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .reel-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ============================================
   STATS (chiffres clés)
   ============================================ */

.stats {
  padding: var(--space-10) 0;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 0 var(--space-5);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: 0 var(--space-6);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
  display: block;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SECTIONS génériques
   ============================================ */

.section {
  padding: var(--space-12) var(--space-5);
}

.section-header {
  margin-bottom: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  display: block;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 720px;
}

.section-title .accent { color: var(--red); }

.section-lead {
  font-size: 17px;
  color: var(--muted-2);
  max-width: 480px;
  margin: 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}

.service-card .num {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.service-card p {
  color: var(--muted-2);
  font-size: 15px;
  margin: 0;
  flex: 1;
}

.service-card .arrow {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-3);
  transition: background var(--transition);
}

.service-card:hover .arrow { background: var(--red); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--bg-alt);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.testi-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.testi-card blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--ink));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testi-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testi-meta span {
  font-size: 12px;
  color: var(--muted-2);
}

.stars { color: var(--red); font-size: 14px; letter-spacing: 2px; }

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

/* ============================================
   PORTFOLIO PREVIEW & PAGE
   ============================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-4);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform var(--transition);
}

.portfolio-item:hover { transform: scale(0.99); }

.portfolio-item.span-6 { grid-column: span 6; }
.portfolio-item.span-4 { grid-column: span 4; }
.portfolio-item.span-8 { grid-column: span 8; aspect-ratio: 16/10; }
.portfolio-item.span-3 { grid-column: span 3; }
.portfolio-item.span-12 { grid-column: span 12; aspect-ratio: 21/9; }

.portfolio-item .placeholder-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portfolio-item .meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-5);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.portfolio-item:hover .meta { opacity: 1; transform: translateY(0); }

.portfolio-item .meta h4 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.portfolio-item .meta span {
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Different placeholder gradients */
.ph-1 { background: linear-gradient(135deg, #2c2c2c, #4a4a4a); }
.ph-2 { background: linear-gradient(135deg, #8c1c24, #4a0a0e); }
.ph-3 { background: linear-gradient(135deg, #1a3a5c, #0a1a2c); }
.ph-4 { background: linear-gradient(135deg, #5c4a2a, #2a1c0e); }
.ph-5 { background: linear-gradient(135deg, #3a2a4a, #1a0e2c); }
.ph-6 { background: linear-gradient(135deg, #2a4a3a, #0e2c1c); }
.ph-7 { background: linear-gradient(135deg, #4a2a2a, #2c0e0e); }
.ph-8 { background: linear-gradient(135deg, #2a2a4a, #0e0e2c); }
.ph-9 { background: linear-gradient(135deg, #4a4a2a, #2c2c0e); }

@media (max-width: 768px) {
  .portfolio-item.span-6,
  .portfolio-item.span-4,
  .portfolio-item.span-8,
  .portfolio-item.span-3,
  .portfolio-item.span-12 {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }
}

/* Filters */
.filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all var(--transition);
}

.filter-btn:hover { border-color: var(--ink); }
.filter-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ============================================
   PAGE HEADER (interior)
   ============================================ */

.page-header {
  padding: var(--space-10) var(--space-5) var(--space-8);
}

.page-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-4);
}

.page-title .accent { color: var(--red); }

.page-lead {
  font-size: 19px;
  color: var(--muted-2);
  max-width: 580px;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-row .num-big {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.service-row h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 var(--space-3);
}

.service-row p {
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 0 var(--space-4);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-tags li {
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.service-price {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: left;
}

.service-price .label {
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-2);
}

.service-price .amount {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.service-price .desc {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: var(--space-4);
}

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row .num-big { font-size: 22px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 var(--space-2);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info .big-link {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: inline-block;
  margin-bottom: var(--space-6);
  transition: color var(--transition);
}

.contact-info .big-link:hover { color: var(--red); }

.contact-info p { color: var(--muted-2); margin: 0 0 var(--space-3); }

.contact-socials {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.contact-socials a:hover { background: var(--red); }

.form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--transition);
  font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

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

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

.form button[type="submit"] {
  background: var(--red);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--transition);
  align-self: flex-start;
}

.form button[type="submit"]:hover { background: var(--red-dark); }

/* ============================================
   FORM FEEDBACK ANIMATION
   ============================================ */

.contact-feedback {
  margin-top: var(--space-4);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms ease, opacity 300ms ease, padding 300ms ease;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-feedback.is-visible {
  opacity: 1;
  max-height: 400px;
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-feedback .feedback-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-feedback .feedback-text span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
}

.contact-feedback .feedback-text a {
  color: inherit;
  text-decoration: underline;
}

.contact-feedback.is-success {
  background: linear-gradient(135deg, var(--ink) 0%, #1f1f1f 100%);
  color: #fff;
  border: 1.5px solid var(--red);
}

.contact-feedback.is-error {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--red);
}

.contact-feedback .feedback-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-feedback .feedback-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: feedbackPop 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-feedback strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-feedback p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
}

@keyframes feedbackPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.form button[type="submit"][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Spinner inside button while sending */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: var(--space-10) var(--space-5);
  padding: var(--space-12) var(--space-8);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 .accent { color: var(--red); }

.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto var(--space-6);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-10) 0 var(--space-6);
  background: transparent;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--line);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-4);
}

.footer-brand .footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
}

.footer-brand p { color: var(--muted-2); max-width: 320px; margin: 0; }

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted-2);
  margin: 0 0 var(--space-4);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-5);
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ============================================
   UTILITIES
   ============================================ */

.center { text-align: center; }
.muted { color: var(--muted-2); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CALENDRIER DE RÉSERVATION (Cal.com embed)
   ============================================ */

.booking-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 var(--space-5);
}

.booking-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.booking-tab:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.booking-tab.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.booking-frames {
  position: relative;
}

.cal-inline-wrap {
  display: none;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 700px;
}

.cal-inline-wrap.is-active {
  display: block;
}

.cal-inline {
  width: 100%;
  min-height: 700px;
}

.cal-inline iframe {
  width: 100% !important;
  min-height: 700px;
  border: none;
}

@media (max-width: 768px) {
  .cal-inline-wrap,
  .cal-inline,
  .cal-inline iframe {
    min-height: 600px;
  }
}

/* ============================================
   PAGE À PROPOS
   ============================================ */

/* --- Story (intro + stats) --- */
.about-story {
  padding-bottom: var(--space-12);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.about-text .about-h {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 var(--space-4);
}

.about-text p strong {
  color: var(--text-1);
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-stats .stat {
  background: #fff;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about-stats .stat-num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-stats .stat-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- Values section --- */
.values-section {
  padding: var(--space-12) var(--space-6);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  border-color: var(--text-1);
  transform: translateY(-2px);
}

.value-card .value-num {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.value-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
}

.value-card p {
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-10);
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: var(--space-8);
}

.faq-aside .section-title {
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
}

.faq-lead {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.faq-cta {
  display: inline-block;
  margin-top: var(--space-3);
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.faq-cta:hover { border-color: var(--red); }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--space-5) 0;
}

.faq-item:first-child { padding-top: 0; }

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-1);
  padding: 0;
  transition: color 0.2s ease;
}

.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }

.faq-item > summary:hover { color: var(--red); }

.faq-q {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 6px;
  display: inline-block;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical bar (hidden when open) */
.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-item[open] > summary { color: var(--red); }

.faq-answer {
  margin-top: var(--space-3);
  padding-left: calc(22px + var(--space-4));
  animation: faqIn 0.35s ease;
}

.faq-answer p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 var(--space-3);
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer a {
  color: var(--text-1);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.faq-answer a:hover { color: var(--red); }

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid,
  .faq-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .faq-aside { position: static; }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   PAGES LÉGALES + CONSENTEMENT RGPD
   ============================================ */

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: var(--space-12);
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: var(--space-8) 0 var(--space-3);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: var(--space-5) 0 var(--space-2);
}

.legal-content p,
.legal-content li {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 var(--space-3);
}

.legal-content ul { padding-left: var(--space-5); margin: 0 0 var(--space-4); }

.legal-content a {
  color: var(--text-1);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--red); }

.legal-content .legal-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  font-size: 0.95rem;
}

.legal-content .legal-note p:last-child { margin-bottom: 0; }

.legal-content .legal-updated {
  color: var(--text-3);
  font-size: 0.875rem;
  margin-top: var(--space-8);
}

/* Liens du bas de page (mentions / confidentialité) */
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--red); }

/* Case de consentement RGPD du formulaire de contact */
.field-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
}

.field-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.field-consent label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-2);
  line-height: 1.5;
}

.field-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 2px;
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px -6px rgba(0,0,0,0.45);
}

@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ============================================
   BOUTON INSTAGRAM FLOTTANT (au-dessus de WhatsApp)
   ============================================ */

.ig-float {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ig-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px -6px rgba(0,0,0,0.45);
}

@media (max-width: 600px) {
  .ig-float { right: 16px; bottom: 78px; width: 52px; height: 52px; }
}

/* ============================================
   OPTIMISATIONS MOBILE (UX petits écrans)
   ============================================ */

/* Sécurité : aucun débordement horizontal */
html, body { overflow-x: hidden; }

@media (max-width: 768px) {

  /* --- Espacements verticaux plus compacts --- */
  .hero { padding: var(--space-8) 0 var(--space-6); min-height: 45vh; }
  .reel-block { padding: var(--space-6) 0 var(--space-8); }
  .section { padding: var(--space-8) var(--space-5); }
  .page-header { padding: var(--space-6) var(--space-5) var(--space-5); }
  .stats { padding: var(--space-8) 0; margin: 0 var(--space-4); }
  .cta-band { margin: var(--space-8) var(--space-4); padding: var(--space-8) var(--space-5); }
  .values-section { padding: var(--space-8) 0; }
  .faq-section { padding-top: var(--space-12); padding-bottom: var(--space-8); margin-top: var(--space-8); }
  .about-story { padding-bottom: var(--space-16); }
  .legal-content { padding-bottom: var(--space-8); }

  /* --- Navigation : marque au-dessus, onglets sur une ligne défilable --- */
  .nav { padding: var(--space-3) 0; }
  .nav-inner { flex-direction: column; gap: var(--space-3); }
  .nav-brand { margin-right: 0; }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .pill { flex-shrink: 0; padding: 10px 16px; }

  /* --- Titres mieux proportionnés --- */
  .hero-title { font-size: clamp(32px, 8.5vw, 50px); }
  .page-title { font-size: clamp(30px, 8vw, 52px); }
  .hero-logo img { width: clamp(320px, 92vw, 720px); }

  /* --- Stats : 3 colonnes serrées, chiffres adaptés --- */
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); padding: 0 var(--space-4); }
  .stat-num { font-size: clamp(26px, 8vw, 40px); }
  .stat-label { font-size: 11px; letter-spacing: 0.05em; }
}

@media (max-width: 400px) {
  .stat-label { font-size: 10px; letter-spacing: 0.03em; }
  .pill { padding: 10px 14px; font-size: 13px; }
  .stat-num { font-size: clamp(22px, 8vw, 34px); }
}

/* ============================================
   FINITIONS (accessibilité, confort tactile)
   ============================================ */

* { -webkit-tap-highlight-color: rgba(198, 19, 48, 0.12); }

/* Focus clavier visible et cohérent */
a:focus-visible,
button:focus-visible,
.pill:focus-visible,
.filter-btn:focus-visible,
.booking-tab:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Respect des préférences d'animation réduite */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 768px) {
  /* Zones tactiles plus confortables */
  .filter-btn { padding: 10px 18px; }

  /* Onglets du calendrier : compacts, défilables si besoin */
  .booking-tabs { gap: 8px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .booking-tabs::-webkit-scrollbar { display: none; }
  .booking-tab { flex-shrink: 0; padding: 9px 16px; font-size: 13px; }

  /* Bloc reel moins imposant en portrait sur mobile */
  .reel-visual { aspect-ratio: 16 / 11; }

  /* Cartes de prix : un poil plus aérées une fois empilées */
  .service-row { padding: var(--space-6) 0; }
}

/* ============================================
   MOBILE UX v2 — affinage tactile & lisibilité
   (ajouts conservateurs, n'altère rien sur desktop)
   ============================================ */

@media (max-width: 768px) {
  /* Le contenu ne doit pas être masqué par les boutons flottants IG / WA */
  body { padding-bottom: 80px; }

  /* Titres : line-height plus serré, plus aérés sur petits écrans */
  .hero-title { line-height: 1.05; }
  .section-title,
  .page-title { font-size: clamp(28px, 7vw, 44px); line-height: 1.1; }

  /* Service cards : un poil plus d'espace interne pour la lecture */
  .service-card { padding: var(--space-5); }

  /* Toutes les pills (boutons à puce) deviennent vraiment tactiles : 44px mini */
  .pill,
  .filter-btn,
  .booking-tab,
  .service-card .pill,
  .cta-band .pill {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* CTA-band : titre maîtrisé pour ne pas exploser le layout */
  .cta-band h2 { font-size: clamp(24px, 6.5vw, 36px); line-height: 1.15; }
  .cta-band { padding: var(--space-7) var(--space-5); }

  /* FAQ accordéon : surface tactile élargie */
  .faq-q { min-height: 56px; }

  /* Formulaires : champs plus aérés, boutons confortables */
  .field input,
  .field select,
  .field textarea {
    padding: 14px;
    border-radius: 12px;
  }
  .field { margin-bottom: var(--space-4); }
  button[type="submit"] { min-height: 48px; padding: 14px 22px; }

  /* Reel-text : un peu d'air sur les bords pour ne pas coller aux marges */
  .reel-text { padding: 0 var(--space-4); }
}

/* Téléphones standards portrait (≤ 480px) */
@media (max-width: 480px) {
  /* Hero plus compact */
  .hero { padding: var(--space-6) 0 var(--space-4); }
  .hero-title { font-size: clamp(28px, 9vw, 40px); }
  .page-title { font-size: clamp(26px, 9vw, 40px); }

  /* Footer : 1 colonne empilée, plus lisible */
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  /* Sections : padding vertical plus court */
  .section { padding: var(--space-6) var(--space-5); }

  /* Reel-text taille plus modeste sur petits écrans */
  .reel-text { font-size: clamp(20px, 5.5vw, 26px); }

  /* Stats labels minimisés */
  .stat-label { font-size: 10px; }

  /* CTA-band marges latérales serrées */
  .cta-band { margin: var(--space-6) var(--space-3); padding: var(--space-6) var(--space-4); }
}

/* ============================================
   INSTAGRAM — feed preview
   ============================================ */

.instagram-section {
  padding: var(--space-10) 0;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.instagram-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
  border-radius: 4px;
}

.instagram-item .placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.instagram-item:hover .placeholder-img {
  transform: scale(1.06);
}

/* Overlay icône IG au hover */
.instagram-item .instagram-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 99, 87, 0.0), rgba(225, 48, 108, 0.0));
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.instagram-item:hover .instagram-hover {
  opacity: 1;
  background: linear-gradient(135deg, rgba(245, 99, 87, 0.85), rgba(225, 48, 108, 0.85));
}

/* 6 gradients distincts pour évoquer la variété des publications */
.insta-1 { background: linear-gradient(135deg, #1f0d12, #3a1820); }
.insta-2 { background: linear-gradient(135deg, #0e1620, #1a2a3c); }
.insta-3 { background: linear-gradient(160deg, #1e1a0c, #3a3320); }
.insta-4 { background: linear-gradient(135deg, #1d0e1d, #3a1f3a); }
.insta-5 { background: linear-gradient(135deg, #0e1c17, #1c3a30); }
.insta-6 { background: linear-gradient(135deg, #20100f, #3a1c1a); }

@media (max-width: 600px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .instagram-section { padding: var(--space-8) 0; }
}

@media (max-width: 400px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   PROMISE BANNER (services)
   ============================================ */
.promise-banner {
  margin: var(--space-6) auto var(--space-4);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--red);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(198, 19, 48, 0.06), rgba(198, 19, 48, 0.02));
}
.promise-text {
  margin: 0;
  text-align: center;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: var(--text-1);
}
.promise-text strong {
  color: var(--red);
  display: block;
  font-size: clamp(17px, 1.8vw, 20px);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

/* ============================================
   HERO VIDEO BACKGROUND
   ============================================ */
.hero { position: relative; overflow: hidden; }
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.hero > *:not(.hero-bg-video):not(.hero-bg-overlay) {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
  .hero-bg-overlay { display: none; }
}

/* ============================================
   UTILITAIRE : MASQUER VISUELLEMENT MAIS GARDER POUR SEO/ACCESSIBILITÉ
   ============================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ============================================
   MOBILE TWEAKS — logo agrandi + nav pills compactes
   ============================================ */
@media (max-width: 768px) {
  /* Logo hero agrandi : il sort du padding container et est mis à l'échelle */
  .hero-logo {
    display: block;
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
  }
  .hero-logo img {
    width: 100vw;
    max-width: 100vw;
    transform: scale(1.7);
    transform-origin: center;
  }

  /* Pills nav (CTA en haut : Portfolio, Services, Contact, À propos) plus compactes */
  .nav-links .pill {
    padding: 6px 12px;
    font-size: 12px;
    min-height: 36px;
    letter-spacing: 0;
    gap: 6px;
  }
}


/* ============================================
   MOBILE TWEAKS — affinage post-v29
   ============================================ */
@media (max-width: 768px) {
  /* Pills nav centrées au lieu d'alignées à gauche */
  .nav-links {
    justify-content: center;
  }

  /* CTA hero "Voir le portfolio" : plus compact et plus bas
     pour laisser respirer le logo agrandi (scale 1.7×) */
  .hero-cta {
    margin-top: var(--space-8);
  }
  .hero-cta .pill {
    padding: 8px 14px;
    font-size: 13px;
    min-height: 38px;
  }
}


/* ============================================
   ANIMATIONS — vivant mais sobre
   ============================================ */

/* ------------ Entrée page (fade subtil sur body) ------------ */
body {
  animation: pageIn 0.5s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------------ Entrée hero : logo + CTA arrivent du bas ------------ */
.hero-logo {
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-cta {
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* ------------ Boutons flottants IG + WA : entrée rebondie ------------ */
.ig-float, .wa-float {
  animation: floatIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ig-float { animation-delay: 1.0s; }
.wa-float { animation-delay: 1.2s; }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(60px) scale(0.5); }
  to { opacity: 1; transform: none; }
}
.ig-float:hover svg,
.wa-float:hover svg {
  animation: wiggle 0.6s ease;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* ------------ Service cards : lift + ombre rouge subtile au hover ------------ */
.service-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(198, 19, 48, 0.12),
              0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(198, 19, 48, 0.45);
}

/* ------------ Value cards (3 engagements) : pareil que service-card ------------ */
.value-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(198, 19, 48, 0.10),
              0 2px 8px rgba(0, 0, 0, 0.25);
  border-color: rgba(198, 19, 48, 0.35);
}

/* ------------ Portfolio items : zoom de l'image + ombre rouge au hover ------------ */
.portfolio-item {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  cursor: pointer;
}
.portfolio-item .placeholder-img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.4s ease;
}
.portfolio-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(198, 19, 48, 0.4);
}
.portfolio-item:hover .placeholder-img {
  transform: scale(1.08);
  filter: brightness(1.15) saturate(1.1);
}

/* ------------ Pills (boutons) : finish plus soigné ------------ */
.pill {
  position: relative;
  overflow: hidden;
}
.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pill:hover::before { opacity: 1; }
.pill:active { transform: translateY(0) scale(0.97); }

/* ------------ Filtres portfolio : underline rouge animée ------------ */
.filter-btn {
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.filter-btn:not(.is-active)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease, left 0.3s ease;
}
.filter-btn:not(.is-active):hover::after {
  width: 50%;
  left: 25%;
}

/* ------------ Liens footer : underline qui pousse de la gauche ------------ */
.footer-col a {
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-col a:hover { color: var(--red); }
.footer-col a:hover::after { transform: scaleX(1); }

/* ------------ Formulaire : focus avec glow rouge ------------ */
.field input,
.field select,
.field textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198, 19, 48, 0.15);
  outline: none;
}

/* ------------ FAQ : icône qui tourne + réponse qui glisse ------------ */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-item[open] .faq-answer {
  animation: faqOpen 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* ------------ Reveal stagger : les cards entrent en cascade ------------ */
.fade-in.is-visible .service-card,
.fade-in.is-visible .value-card {
  animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fade-in.is-visible .service-card:nth-child(1),
.fade-in.is-visible .value-card:nth-child(1) { animation-delay: 0.05s; }
.fade-in.is-visible .service-card:nth-child(2),
.fade-in.is-visible .value-card:nth-child(2) { animation-delay: 0.15s; }
.fade-in.is-visible .service-card:nth-child(3),
.fade-in.is-visible .value-card:nth-child(3) { animation-delay: 0.25s; }
.fade-in.is-visible .service-card:nth-child(4) { animation-delay: 0.35s; }
.fade-in.is-visible .service-card:nth-child(5) { animation-delay: 0.45s; }
.fade-in.is-visible .service-card:nth-child(6) { animation-delay: 0.55s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ------------ Stats : compteurs avec petit pop ------------ */
.stat-item {
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-2px);
}

/* ------------ Section titles : trait rouge animé sous le titre au hover ------------ */
.section-title {
  position: relative;
  display: inline-block;
}

/* ------------ Image Instagram : icône qui apparaît au hover (déjà en place, on peaufine) ------------ */
.instagram-item {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}
.instagram-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* ------------ Reduced motion : on respecte ceux qui ne veulent pas ------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================
   SERVICES — FORMULES ÉDITORIALES
   ============================================ */

.formula-section {
  padding: var(--space-10) var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.formula-section + .formula-section { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.formula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}

/* Alternance image gauche / image droite */
.formula-reverse .formula-visual { grid-column: 2; grid-row: 1; }
.formula-reverse .formula-content { grid-column: 1; grid-row: 1; }

/* Visuel */
.formula-visual {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  position: relative;
}
.formula-visual img,
.formula-visual .formula-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.formula-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formula-placeholder-photo {
  background: linear-gradient(135deg, #2a1216 0%, #1a0a0d 50%, #3a1820 100%);
}
.formula-placeholder-video {
  background: linear-gradient(135deg, #1a2530 0%, #0d1419 50%, #2a3a45 100%);
}
.formula-placeholder-combo {
  background: linear-gradient(135deg, #2a162a 0%, #190d19 50%, #3a2540 100%);
}
.placeholder-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Contenu */
.formula-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.formula-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.formula-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.formula-tagline {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
}
.formula-tagline em { font-style: italic; }
.formula-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-1);
  margin: var(--space-3) 0 0;
}
.formula-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: var(--space-5) 0 var(--space-2);
  font-weight: 700;
}
.formula-for {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0;
}
.formula-included {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}
.formula-included li {
  padding-left: var(--space-5);
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-1);
}
.formula-included li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 1px;
  transform: rotate(45deg);
}

.formula-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.formula-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.price-amount {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
  margin-top: 2px;
}
.price-note {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  max-width: 240px;
  line-height: 1.45;
}

/* Mobile : on empile et on retire l'alternance */
@media (max-width: 768px) {
  .formula-grid,
  .formula-reverse .formula-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .formula-reverse .formula-visual,
  .formula-reverse .formula-content {
    grid-column: 1;
    grid-row: auto;
  }
  .formula-section { padding: var(--space-8) 0; }
  .formula-visual { aspect-ratio: 2 / 3; }
  .formula-footer { flex-direction: column; align-items: flex-start; }
  .formula-footer .pill { width: 100%; justify-content: center; }
}

/* ============================================
   ESSENTIALS — ce que vous emportez à chaque fois
   ============================================ */

.essentials-section {
  padding: var(--space-10) var(--space-6);
  background: linear-gradient(135deg, rgba(198, 19, 48, 0.04), rgba(198, 19, 48, 0.01));
  border-radius: var(--radius-md);
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
  border: 1px solid rgba(198, 19, 48, 0.15);
}
.essentials-header { text-align: center; margin-bottom: var(--space-7); }
.essentials-eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.essentials-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-7);
  max-width: 900px;
  margin: 0 auto;
}
.essential-item {
  padding-left: var(--space-6);
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-1);
  margin: 0;
}
.essential-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}
.essential-item strong { color: #fff; }

@media (max-width: 600px) {
  .essentials-section { padding: var(--space-7) var(--space-4); }
  .essentials-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}


/* ============================================
   PROMO BANNER (top of site, dismissible)
   ============================================ */
.promo-banner {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 50;
  animation: promoSlideDown 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo-banner.is-hidden { display: none; }
@keyframes promoSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.promo-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.promo-banner__text {
  margin: 0;
  text-align: center;
  flex: 1;
  line-height: 1.4;
}
.promo-banner__cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.promo-banner__cta:hover { opacity: 0.85; }
.promo-banner__close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.2s ease;
}
.promo-banner__close:hover { background: rgba(255, 255, 255, 0.18); }
@media (max-width: 600px) {
  .promo-banner { font-size: 13px; }
  .promo-banner__inner { padding: 8px var(--space-3); gap: var(--space-2); }
  .promo-banner__text { font-size: 12.5px; }
}


/* ============================================
   FORMULA NOTE (ex: format vidéo 1min30)
   ============================================ */
.formula-note {
  background: rgba(198, 19, 48, 0.07);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  margin: var(--space-4) 0;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0 6px 6px 0;
  color: var(--text-1);
}
.formula-note strong { color: var(--red); }
.formula-note a { color: var(--red); font-weight: 600; text-decoration: underline; }
.formula-note a:hover { text-decoration: none; }


/* ============================================
   MOBILE — refonte complète v36
   Philosophie : large > long. 2 colonnes partout
   où c'est possible. Rien ne colle les bords.
   ============================================ */

@media (max-width: 768px) {

  /* === BASE === */
  html, body { overflow-x: hidden; }
  body { font-size: 15px; }

  /* Marge latérale systématique — rien ne colle les bords */
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 24px 20px; }

  /* === NAV === */
  .nav-brand { font-size: 16px; }
  .nav-links { gap: 6px; }
  .pill { padding: 7px 14px; font-size: 12px; min-height: 40px; }

  /* === HERO === */
  .hero { padding: 32px 0 24px; }
  .hero-title { font-size: clamp(26px, 8vw, 36px); line-height: 1.05; }
  .hero-sub { font-size: 14px; line-height: 1.5; }
  .hero-cta { margin-top: 20px; }
  .hero-cta .pill { padding: 5px 11px; font-size: 11px; }

  /* === TITRES DE SECTION === */
  .section-eyebrow { font-size: 10px; }
  .section-title {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.1;
    max-width: 100%;
    word-break: break-word;
  }
  .section-lead { font-size: 13px; line-height: 1.55; max-width: 100%; }
  .page-title { font-size: clamp(22px, 7vw, 32px); line-height: 1.1; }
  .page-lead { font-size: 13px; line-height: 1.55; }
  .page-header { padding: 20px 20px 12px; }

  /* section-header : titre + bouton côte à côte quand possible */
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }
  .section-header > div { flex: 1; min-width: 0; }
  .section-header .pill,
  .section-header .pill-ghost { flex-shrink: 0; white-space: nowrap; }

  /* === SERVICES GRID (accueil) : 3 colonnes horizontales === */
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }
  .services-grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100%;
  }
  .service-card {
    padding: 14px;
    gap: 10px;
    border-radius: 14px;
  }
  .service-card .num { font-size: 10px; }
  .service-card h3 { font-size: 15px; line-height: 1.2; margin: 0; }
  .service-card p { font-size: 12px; line-height: 1.5; }
  .service-card .arrow {
    width: 36px;
    height: 36px;
    margin-top: 8px;
  }

  /* === PORTFOLIO PREVIEW : 2 colonnes compactes === */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .portfolio-item,
  .portfolio-item.span-6,
  .portfolio-item.span-4,
  .portfolio-item.span-8,
  .portfolio-item.span-3,
  .portfolio-item.span-12 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  /* Meta toujours visible sur mobile (pas de hover) */
  .portfolio-item .meta {
    opacity: 1;
    transform: none;
  }
  .portfolio-item .meta h4 { font-size: 13px; }
  .portfolio-item .meta span { font-size: 10px; }

  /* === STATS : 2 colonnes === */
  .stats { margin: 0 20px; border-radius: 16px; padding: 32px 0; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 20px;
  }
  .stat-num { font-size: clamp(28px, 8vw, 40px); }
  .stat-label { font-size: 10px; }

  /* === CTA BAND === */
  .cta-band {
    margin: 16px 16px;
    padding: 24px 16px;
    border-radius: 20px;
  }
  .cta-band h2 { font-size: clamp(17px, 5vw, 22px); line-height: 1.2; margin-bottom: 8px; }
  .cta-band p { font-size: 12px; margin-bottom: 14px; }

  /* === REEL TEXT === */
  .reel-text { font-size: clamp(17px, 4.5vw, 22px); line-height: 1.4; padding: 0 20px; }
  .reel-grid { grid-template-columns: 1fr; gap: 24px; }

  /* === ABOUT : engagements 2 colonnes === */
  .engagements-grid,
  .value-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .engagement-card { padding: 14px; border-radius: 14px; }
  .engagement-title { font-size: 14px; }
  .engagement-text { font-size: 12px; line-height: 1.5; }

  /* === FAQ === */
  .faq-q { font-size: 14px; padding: 12px 0; min-height: 48px; }
  .faq-a { font-size: 13px; line-height: 1.6; padding-bottom: 12px; }

  /* === FORMULES SERVICES === */
  .formula-section { padding: 16px 0; }
  .formula-grid { gap: 12px; }
  .formula-eyebrow { font-size: 13px; }
  .formula-description { font-size: 13px; line-height: 1.6; }
  .formula-subtitle { font-size: 13px; margin: 8px 0 4px; }
  .formula-for,
  .formula-included { font-size: 14px; line-height: 1.55; }
  .formula-included { padding-left: 16px; }
  .formula-note { font-size: 12px; padding: 10px 14px; }

  /* Tarif grid compact */
  .tarif-row { padding: 8px 4px; border-radius: 6px; }
  .tarif-duration { font-size: 11px; }
  .tarif-price { font-size: 14px; }
  .tarif-badge { font-size: 9px; padding: 1px 5px; }
  .price-note { font-size: 11px; margin: 4px 0 8px; }

  /* === CONTACT === */
  .contact-intro { font-size: 13px; line-height: 1.6; }
  .field label { font-size: 13px; }
  .field input, .field select, .field textarea { font-size: 15px; padding: 12px; }
  .field { margin-bottom: 14px; }

  /* === INSTAGRAM === */
  .instagram-section { padding: 32px 0; }
  .instagram-header { margin-bottom: 16px; }

  /* === PORTFOLIO PAGE : filtres 2 lignes compactes === */
  .portfolio-filters,
  .filters { gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }

  /* === FOOTER === */
  .footer-top { gap: 14px; }
  .footer-col h4 { font-size: 11px; margin-bottom: 6px; }
  .footer-col li, .footer-col a { font-size: 12px; }
  .footer-bottom {
    font-size: 11px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .footer-brand p { font-size: 12px; }

  /* === LÉGAL === */
  .legal-content h2 { font-size: 17px; }
  .legal-content p, .legal-content li { font-size: 13px; line-height: 1.6; }

  /* === PROMO BANNER === */
  .promo-banner { font-size: 12px; }
  .promo-banner__inner { padding: 8px 16px; gap: 8px; }
}

/* Très petits écrans (≤ 390px) */
@media (max-width: 390px) {
  .container { padding: 0 18px; }
  .section-title { font-size: clamp(19px, 6.5vw, 24px); }
  .hero-title { font-size: clamp(23px, 9vw, 30px); }
  .page-title { font-size: clamp(20px, 8vw, 26px); }
  .services-grid { gap: 8px; }
  .service-card { padding: 12px; }
  .service-card h3 { font-size: 13px; }
  .service-card p { font-size: 11px; }
  .stats-inner { padding: 0 14px; gap: 16px; }
  .cta-band { margin: 16px 14px; padding: 24px 16px; }
}


/* ============================================
   OPTIMISATIONS MOBILE v37
   Contact · About · Services
   ============================================ */

/* ---- CONTACT : textes + formulaire ---- */
@media (max-width: 768px) {

  .page-title { font-size: clamp(18px, 5.5vw, 22px); margin-bottom: 6px; }
  .page-lead  { font-size: 12px; line-height: 1.5; }

  /* Labels */
  .field label { font-size: 12px; margin-bottom: 3px; }

  /* Inputs + textarea + select */
  .field input,
  .field select,
  .field textarea { font-size: 14px; padding: 9px 11px; }

  /* Textarea moins haute */
  .field textarea { min-height: 88px; }

  /* Espacement entre champs */
  .field { margin-bottom: 10px; }

  /* Texte RGPD */
  .field-consent label { font-size: 11px; line-height: 1.45; }

  /* Bouton submit */
  #submit-btn { font-size: 13px; padding: 11px 20px; }

  /* Infos contact */
  .contact-info h3 { font-size: 12px; margin-bottom: 4px; }
  .big-link        { font-size: 14px; }
  .contact-intro   { font-size: 12px; }

  /* ---- ABOUT : histoire + stats + engagements + FAQ ---- */

  /* Textes histoire */
  .about-h      { font-size: 18px; margin-bottom: 10px; }
  .about-text p { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }

  /* Carrés stats */
  .about-stats { gap: 10px; }
  .about-stats .stat { padding: 12px 8px; }
  .about-stats .stat-num   { font-size: clamp(18px, 6vw, 26px); }
  .about-stats .stat-label { font-size: 10px; }

  /* Engagements */
  .engagement-card  { padding: 12px; }
  .engagement-title { font-size: 13px; }
  .engagement-text  { font-size: 11px; line-height: 1.5; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 10px 0; min-height: 44px; }
  .faq-a { font-size: 12px; line-height: 1.6; padding-bottom: 10px; }

  /* ---- SERVICES : séparateurs + images portrait + réduction ---- */

  /* Séparateur entre les 3 formules */
  .formula-section + .formula-section {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 4px;
  }

  /* Images ratio 2/3 (4672×7008) — déjà défini via .formula-visual ci-dessus */

  /* Padding latéral formula-section aligné sur le container */
  .formula-section { padding-left: 20px; padding-right: 20px; }

  /* Titre formule */
  .formula-title       { font-size: clamp(18px, 5.5vw, 22px); margin-bottom: 10px; }
  .formula-eyebrow     { font-size: 13px; }

  /* Textes formule */
  .formula-description { font-size: 12px; line-height: 1.55; }
  .formula-subtitle    { font-size: 12px; margin: 10px 0 5px; }
  .formula-for,
  .formula-included    { font-size: 13px; line-height: 1.5; }
  .formula-included    { padding-left: 14px; }

  /* Tarifs */
  .tarif-row      { padding: 9px 6px; gap: 3px; }
  .tarif-duration { font-size: 11px; }
  .tarif-price    { font-size: 15px; }
  .tarif-badge    { font-size: 9px; padding: 1px 5px; }
  .price-note     { font-size: 11px; margin: 4px 0 8px; }

  /* Note encadrée */
  .formula-note { font-size: 11px; padding: 9px 12px; }

}

@media (max-width: 390px) {
  .field input,
  .field select,
  .field textarea { font-size: 13px; padding: 8px 10px; }

  .about-stats .stat-num { font-size: clamp(16px, 6.5vw, 22px); }

  .formula-title    { font-size: clamp(16px, 5.5vw, 20px); }
  .tarif-price      { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}


/* ============================================
   HERO VIDEO — Chargement optimisé mobile v37
   Le poster s'affiche immédiatement.
   La vidéo se lance en JS différé sans bloquer.
   ============================================ */

.hero-bg-video {
  /* Assure que le poster est visible avant que la vidéo démarre */
  background-size: cover;
  background-position: center;
}

/* Sur mobile, si la connexion est lente, on peut forcer poster seul via classe JS */
@media (max-width: 768px) {
  .hero-bg-video.video-paused {
    opacity: 0;
  }
}


/* ============================================
   SPLASH SCREEN — Intro index.html
   Fond #ececec, logo SVG rouge, spinner rouge
   ============================================ */

/* Splash géré entièrement en inline dans index.html */

/* =============================================
   FORMULA COMBO SLIDER — Photo vs Vidéo
   ============================================= */

.formula-combo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
  background: #111;
}

/* Les deux côtés */
.fcs-side {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fcs-side img,
.fcs-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Côté photo : clipé dynamiquement par le JS */
.fcs-side--photo {
  clip-path: inset(0 50% 0 0);
}

/* Labels */
.fcs-label {
  position: absolute;
  bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 4px;
  pointer-events: none;
  transition: opacity 0.2s;
}

.fcs-label--video { left: 14px; }
.fcs-label--photo { right: 14px; }

.formula-combo-slider[data-pos="low"]  .fcs-label--photo { opacity: 0; }
.formula-combo-slider[data-pos="high"] .fcs-label--video { opacity: 0; }

/* La poignée */
.fcs-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: col-resize;
}

.fcs-handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  pointer-events: none;
}

.fcs-handle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.4);
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.15s;
}

.fcs-handle:hover .fcs-handle-btn { transform: scale(1.1); }
.fcs-handle:focus { outline: none; }
.fcs-handle:focus-visible .fcs-handle-btn {
  box-shadow: 0 0 0 3px var(--red), 0 2px 14px rgba(0,0,0,0.4);
}

/* Animation hint au chargement */
@keyframes fcs-hint {
  0%   { left: 50%; }
  25%  { left: 38%; }
  50%  { left: 62%; }
  75%  { left: 38%; }
  100% { left: 50%; }
}

.formula-combo-slider.fcs-hint-active .fcs-handle {
  animation: fcs-hint 1.4s ease-in-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .formula-combo-slider.fcs-hint-active .fcs-handle { animation: none; }
}

/* Carousel photos dans le slider */
.fcs-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fcs-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fcs-carousel-img--active {
  opacity: 1;
}

/* Légende sous le slider combo */
.fcs-caption {
  margin: 8px 0 0;
  font-size: 11px;
  color: #999;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* Vraies images et vidéos dans les items portfolio */
.portfolio-item .portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.03);
}

.portfolio-item .portfolio-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* =============================================
   LIGHTBOX PORTFOLIO
   ============================================= */

.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lb-in 0.2s ease;
}

@keyframes lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-overlay[hidden] { display: none; }

.lb-content {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.lb-video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 4px;
  display: block;
  background: #000;
}

.lb-caption {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.15s;
  z-index: 1001;
}

.lb-close:hover { opacity: 1; }

/* Indicateur curseur sur les items cliquables */
[data-lightbox] { cursor: pointer; }

/* Carousel dans les items portfolio */
.pf-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pf-carousel-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.pf-carousel-img--active {
  opacity: 1;
}

/* =============================================
   OPTIMISATIONS PERFORMANCE
   ============================================= */

/* Déclaration des dimensions pour éviter le layout shift */
.portfolio-item {
  contain: layout style;
}

/* Accélération GPU sur les images portfolio */
.portfolio-img,
.portfolio-video {
  will-change: auto;
  transform: translateZ(0);
}

/* Réserver l'espace pour les sections sous le fold */
.instagram-section,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 0 400px;
}
