/* ================================================================
   VISUEL — Premium Content Creator Site
   styles.css · Pure CSS · Mobile-first · No framework
   Palette : Blanc lait / Crème / Rouge profond
================================================================ */
 
/* ────────────────────────────────────────────────────────────────
   DESIGN TOKENS
──────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --c-bg:           #faf8f5;
  --c-bg-2:         #f4f1ec;
  --c-bg-3:         #edeae3;
  --c-surface:      #ffffff;
 
  /* Borders */
  --c-border:       rgba(0,0,0,0.08);
  --c-border-hover: rgba(0,0,0,0.18);
 
  /* Text */
  --c-text:         #111010;
  --c-text-muted:   rgba(17,16,16,0.55);
  --c-text-faint:   rgba(17,16,16,0.32);
 
  /* Red palette */
  --c-red:          #c0392b;
  --c-red-deep:     #962d22;
  --c-red-light:    #e05245;
  --c-red-pale:     rgba(192,57,43,0.07);
  --c-red-pale-2:   rgba(192,57,43,0.13);
 
  /* Gradients */
  --c-grad-red:     linear-gradient(135deg, #c0392b 0%, #e05245 60%, #962d22 100%);
  --c-grad-hero:    linear-gradient(160deg, #ffffff 0%, #faf8f5 50%, #f5ede8 100%);
 
  /* Typography */
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'DM Sans', system-ui, sans-serif;
 
  /* Spacing */
  --space-2xl:      7rem;
  --space-xl:       4rem;
  --space-lg:       2.5rem;
  --space-md:       1.5rem;
  --space-sm:       1rem;
 
  /* Radius */
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    20px;
  --r-xl:    32px;
 
  /* Shadows */
  --shadow-card:  0 1px 0 rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.08);
  --shadow-hover: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-red:   0 8px 32px rgba(192,57,43,0.3);
 
  /* Transitions */
  --t-fast: 0.2s ease;
  --t-mid:  0.35s cubic-bezier(0.4,0,0.2,1);
}
 
/* ────────────────────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { scroll-behavior: smooth; font-size: 16px; }
 
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
 
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
em { font-style: italic; }
 
.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: block; } }
 
/* ────────────────────────────────────────────────────────────────
   LAYOUT
──────────────────────────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }
 
/* ────────────────────────────────────────────────────────────────
   TYPOGRAPHY HELPERS
──────────────────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--space-sm);
}
 
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--c-text);
}
.section-title em { color: var(--c-red); font-style: italic; }
 
.section-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 56ch;
}
 
.section-header { margin-bottom: var(--space-xl); }
 
/* ────────────────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--r-xl);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid), color var(--t-mid), border-color var(--t-mid);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform var(--t-mid); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
 
.btn--primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.4);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }
 
.btn--ghost {
  background: transparent;
  color: var(--c-red);
  border: 1.5px solid rgba(192,57,43,0.3);
}
.btn--ghost:hover {
  border-color: var(--c-red);
  background: var(--c-red-pale);
  transform: translateY(-2px);
}
 
.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-hover);
}
.btn--outline:hover {
  border-color: var(--c-red);
  color: var(--c-red);
  background: var(--c-red-pale);
  transform: translateY(-2px);
}
 
.btn--gold {
  background: #fff;
  color: var(--c-red-deep);
  font-weight: 700;
}
.btn--gold:hover {
  background: #faf8f5;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
 
.btn--nav {
  background: var(--c-red);
  color: #fff;
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(192,57,43,0.2);
}
.btn--nav:hover { background: var(--c-red-deep); transform: translateY(-1px); }
 
/* ────────────────────────────────────────────────────────────────
   NAV
──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(250,248,245,0.88);
  backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--c-border);
}
 
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) { .nav__inner { padding-inline: 3rem; } }
 
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-text);
  flex-shrink: 0;
}
.nav__logo-dot { color: var(--c-red); }
 
.nav__links { display: none; gap: 2.5rem; margin-left: auto; }
@media (min-width: 768px) { .nav__links { display: flex; } }
 
.nav__link {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-weight: 500;
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-red);
  transition: width var(--t-mid);
}
.nav__link:hover { color: var(--c-text); }
.nav__link:hover::after { width: 100%; }
 
.nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
@media (min-width: 768px) { .nav__burger { display: none; } }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text-muted); border-radius: 2px;
}
 
/* ────────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
 
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--c-grad-hero);
}
 
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}
 
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.09) 0%, transparent 70%);
  top: -20%; right: -10%;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 70%);
  bottom: 0; left: -5%;
  animation-delay: -5s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  top: 35%; left: 50%;
  animation-delay: -2s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-18px) scale(1.05); }
}
 
.hero__inner { position: relative; z-index: 1; }
 
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(192,57,43,0.2);
  background: rgba(192,57,43,0.05);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-red);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}
 
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
 
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--c-text);
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero__title em { color: var(--c-red); font-style: italic; }
.hero__title-outline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-text);
  animation: fadeUp 0.7s ease 0.1s both;
}
 
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.7s ease 0.2s both;
}
 
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s ease 0.3s both;
}
 
.hero__scroll {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 4.5rem;
  animation: fadeUp 0.7s ease 0.5s both;
}
@media (min-width: 768px) { .hero__scroll { display: flex; } }
 
.hero__scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--c-red), transparent);
  animation: scrollLine 2.2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
 
.hero__scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ────────────────────────────────────────────────────────────────
   SOCIAL PROOF
──────────────────────────────────────────────────────────────── */
.social-proof {
  padding: var(--space-2xl) 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
 
.social-proof__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-faint);
  margin-bottom: 3rem;
}
 
.social-proof__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
  margin-bottom: 4rem;
}
 
.social-proof__stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 0 2rem;
}
 
.social-proof__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: 0.4rem;
}
 
.social-proof__desc { font-size: 0.82rem; color: var(--c-text-muted); }
 
.social-proof__divider {
  width: 1px; height: 40px;
  background: var(--c-border);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 600px) { .social-proof__divider { display: block; } }
 
.social-proof__logos { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
 
.social-proof__logo-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}
 
.social-proof__logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}
 
.social-proof__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-text-faint);
  transition: color var(--t-fast);
  cursor: default;
}
.social-proof__logo:hover { color: var(--c-text-muted); }
 
/* ────────────────────────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────────────────────────── */
.services { padding: var(--space-2xl) 0; background: var(--c-bg); }
 
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
 
.service-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,57,43,0.18);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::after { transform: scaleX(1); }
 
.service-card--featured {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.service-card--featured::after { display: none; }
.service-card--featured:hover {
  background: var(--c-red-deep);
  border-color: var(--c-red-deep);
  box-shadow: var(--shadow-red);
}
.service-card--featured .service-card__icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.service-card--featured .service-card__icon svg { color: #fff; }
.service-card--featured .service-card__tag   { background: rgba(255,255,255,0.18); color: #fff; }
.service-card--featured .service-card__title { color: #fff; }
.service-card--featured .service-card__text  { color: rgba(255,255,255,0.72); }
.service-card--featured .service-card__list li        { color: rgba(255,255,255,0.72); }
.service-card--featured .service-card__list li::before{ color: rgba(255,255,255,0.55); }
.service-card--featured .service-card__cta            { color: rgba(255,255,255,0.88); }
.service-card--featured .service-card__cta:hover      { color: #fff; }
 
.service-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--c-red-pale);
  border: 1px solid rgba(192,57,43,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.service-card__icon svg { width: 20px; height: 20px; color: var(--c-red); }
.service-card:not(.service-card--featured):hover .service-card__icon {
  background: var(--c-red-pale-2);
  border-color: rgba(192,57,43,0.25);
}
 
.service-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  background: var(--c-red-pale);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
}
 
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  color: var(--c-text);
}
 
.service-card__text {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
 
.service-card__list { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.5rem; }
.service-card__list li {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.service-card__list li::before { content: '✦'; font-size: 0.55rem; color: var(--c-red); flex-shrink: 0; }
 
.service-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--t-fast), gap var(--t-fast);
}
.service-card__cta:hover { color: var(--c-red-deep); gap: 0.5rem; }
 
/* ────────────────────────────────────────────────────────────────
   PORTFOLIO
   Layout :
     Desktop : colonne gauche hero portrait (9:16) + colonne droite 2×2
     Mobile  : empilé verticalement, chaque carte avec son vrai ratio
──────────────────────────────────────────────────────────────── */
/* ────────────────────────────────────────────────────────────────
   PORTFOLIO
   Layout :
     Col 1 : IMG_7171 (9:16) + Video para negocio (9:16) empilées
     Col 2 : 3 vidéos 16:9 empilées
   Chaque vidéo garde son ratio exact — zéro bande noire
──────────────────────────────────────────────────────────────── */
.portfolio { padding: var(--space-2xl) 0; background: var(--c-bg-2); }

/* ── Grille principale 2 colonnes ── */
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .portfolio__grid {
    /* Col1 portrait (9:16) ≈ 36% · Col2 paysage (16:9) ≈ 64% */
    grid-template-columns: 36fr 64fr;
  }
}

/* ── Col 1 : les 2 portraits empilés ── */
.portfolio__col1 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Col 2 : les 3 paysages empilés ── */
.portfolio__col2 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Carte de base ── */
.portfolio-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
}

/* ── Media wrapper ── */
.portfolio-card__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ── Placeholder (fond coloré) ── */
.portfolio-card__placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #f5eee6 0%, #ddc8b0 50%, #c9a882 100%);
}
.portfolio-card__placeholder--2 { background: linear-gradient(145deg, #f0e6d8 0%, #d9c5b0 50%, #c4a88c 100%); }
.portfolio-card__placeholder--3 { background: linear-gradient(145deg, #ede0d4 0%, #c9a99a 50%, #b08070 100%); }
.portfolio-card__placeholder--4 { background: linear-gradient(145deg, #f5ede0 0%, #e8d5b8 50%, #d4bc90 100%); }

/* ── Ratios exacts ── */
/* Portrait 9:16 (IMG_7171 & IMG_4158) */
.portfolio-card__placeholder--ratio-916 {
  aspect-ratio: 9 / 16;
}
/* Paysage 16:9 (IMG_4150, Fashion, LifestyleCafe) */
.portfolio-card__placeholder--ratio-169 {
  aspect-ratio: 16 / 9;
}

/* Badge Destacado */
.portfolio-card__featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #c9a84c, #f0d080);
  color: #5a3e00;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 3;
}

/* ── Vidéo — object-fit:cover car le ratio du placeholder est exact ── */
.portfolio-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* ── Bouton play ── */
.portfolio-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform var(--t-mid), background var(--t-mid), opacity var(--t-mid);
}
.portfolio-card__play svg {
  width: 18px;
  height: 18px;
  color: var(--c-text);
  margin-left: 3px;
}
.portfolio-card__play.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Label ── */
.portfolio-card__label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  white-space: nowrap;
}

/* ── Overlay hover ── */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    to top,
    rgba(17,16,16,0.95) 0%,
    rgba(17,16,16,0.55) 50%,
    rgba(17,16,16,0.05) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card:hover .portfolio-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255,255,255,0.7);
}

/* ── Texte overlay ── */
.portfolio-card__cat {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red-light);
  margin-bottom: 0.35rem;
}
.portfolio-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.portfolio-card__result {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ── CTA ── */
.portfolio__cta { text-align: center; }

/* ── Contrôles vidéo ── */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.video-controls.visible { display: flex; }

.video-controls__btn {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
}
.video-controls__btn:hover { background: rgba(255,255,255,0.3); }
.video-controls__btn svg { width: 14px; height: 14px; color: #fff; }

.video-controls__progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
}
.video-controls__bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 50px;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ────────────────────────────────────────────────────────────────
   PROCESS
──────────────────────────────────────────────────────────────── */
.process { padding: var(--space-2xl) 0; background: var(--c-bg); }
 
.process__steps { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .process__steps { grid-template-columns: repeat(4, 1fr); align-items: start; }
}
 
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--r-md);
  transition: background var(--t-mid);
}
.process-step:hover { background: var(--c-bg-2); }
.process-step__number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(192,57,43,0.06);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color var(--t-mid);
}
.process-step:hover .process-step__number { color: rgba(192,57,43,0.11); }
.process-step__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--c-red-pale);
  border: 1px solid rgba(192,57,43,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.process-step:hover .process-step__icon { background: var(--c-red-pale-2); border-color: rgba(192,57,43,0.3); }
.process-step__icon svg { width: 20px; height: 20px; color: var(--c-red); }
.process-step__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.process-step__text  { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.7; }
.process-step__line  { display: none; }
@media (min-width: 768px) {
  .process-step__line {
    display: block;
    position: absolute;
    top: 4rem; right: 0;
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, var(--c-red), transparent);
    opacity: 0.3;
  }
}
 
/* ────────────────────────────────────────────────────────────────
   RESULTS
──────────────────────────────────────────────────────────────── */
.results { padding: var(--space-2xl) 0; background: var(--c-bg-2); border-top: 1px solid var(--c-border); }
 
.results__inner { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) {
  .results__inner { grid-template-columns: 1fr 1.3fr; align-items: center; gap: 6rem; }
}
 
.results__left .section-sub { margin-bottom: 2rem; }
.results__right { display: flex; flex-direction: column; gap: 1.75rem; }
 
.result-bar__header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.6rem; }
.result-bar__label  { font-size: 0.88rem; color: var(--c-text-muted); }
.result-bar__value  { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--c-red); }
.result-bar__track  { height: 5px; background: rgba(0,0,0,0.07); border-radius: 50px; overflow: hidden; }
.result-bar__fill   {
  height: 100%; width: var(--fill);
  background: var(--c-grad-red); border-radius: 50px;
  animation: growBar 1.2s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes growBar { from { width: 0; } to { width: var(--fill); } }
 
.results__testimonial {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  position: relative;
}
.results__testimonial::before {
  content: '"';
  position: absolute;
  top: -0.25rem; left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 4rem; color: var(--c-red); opacity: 0.15; line-height: 1;
}
.results__quote  { font-style: italic; color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1rem; }
.results__author { display: flex; align-items: center; gap: 0.75rem; }
.results__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c-grad-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.results__author strong { display: block; font-size: 0.88rem; font-weight: 600; }
.results__author span   { font-size: 0.75rem; color: var(--c-text-muted); }
 
/* ────────────────────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────────────────────── */
.about { padding: var(--space-2xl) 0; background: var(--c-bg); }
 
.about__inner { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1.2fr; align-items: center; gap: 6rem; }
}
 
.about__visual { position: relative; display: flex; justify-content: center; }
.about__photo  { position: relative; width: 320px; max-width: 100%; }
 
.about__photo-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-xl); border: 1px solid var(--c-border);
  aspect-ratio: 3/4; display: block;
}
.about__photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #e8ddd3, #d0bfb0, #c0aea0);
  border-radius: var(--r-xl); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(0,0,0,0.28);
  letter-spacing: 0.1em; text-transform: uppercase;
  overflow: hidden; position: relative;
}
.about__photo-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(255,255,255,0.3) 0%, transparent 60%);
}
 
.about__photo-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--c-text);
  box-shadow: var(--shadow-card);
}
.about__photo-badge svg { width: 16px; height: 16px; color: #22c55e; }
 
.about__stat-float {
  position: absolute;
  top: 2rem; left: -1.5rem;
  background: var(--c-red);
  border-radius: var(--r-md);
  padding: 0.75rem 1.1rem;
  display: none;
}
@media (min-width: 900px) { .about__stat-float { display: block; } }
.about__stat-num   { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 900; color: #fff; }
.about__stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.72); }
 
.about__text { font-size: 1rem; color: var(--c-text-muted); line-height: 1.75; margin-bottom: 1rem; }
 
.about__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.about__tag {
  padding: 0.45rem 1rem; border-radius: 50px;
  border: 1.5px solid var(--c-border);
  font-size: 0.8rem; font-weight: 500; color: var(--c-text-muted);
  background: var(--c-surface);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.about__tag:hover { border-color: rgba(192,57,43,0.3); color: var(--c-red); background: var(--c-red-pale); }
 
/* ────────────────────────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative; padding: 8rem 0;
  overflow: hidden; background: var(--c-red); text-align: center;
}
.cta-section__bg { position: absolute; inset: 0; z-index: 0; }
.cta-section__orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.cta-section__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, transparent 70%);
  top: -30%; left: -10%;
}
.cta-section__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  bottom: -20%; right: -5%;
}
.cta-section__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta-section__eyebrow {
  display: block; font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem;
}
.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 1.5rem;
}
.cta-section__title em { font-style: italic; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.55); }
.cta-section__sub { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 3rem; }
.cta-section__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-section__note    { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }
 
/* ────────────────────────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────────────────────────── */
.contact { padding: var(--space-2xl) 0; background: var(--c-bg); }
 
.contact__inner { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1.4fr; align-items: start; gap: 6rem; }
}
 
.contact__text  { font-size: 1rem; color: var(--c-text-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact__infos { display: flex; flex-direction: column; gap: 1rem; }
.contact__info  { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--c-text-muted); }
.contact__info svg { width: 18px; height: 18px; color: var(--c-red); flex-shrink: 0; }
 
.contact-form       { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__row  { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 500px) { .contact-form__row { grid-template-columns: repeat(2, 1fr); } }
.contact-form__group { display: flex; flex-direction: column; gap: 0.45rem; }
.contact-form__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-text-muted);
}
.contact-form__input {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm); color: var(--c-text);
  padding: 0.9rem 1.1rem; font-size: 0.95rem; outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.contact-form__input::placeholder { color: var(--c-text-faint); }
.contact-form__input:hover { border-color: var(--c-border-hover); }
.contact-form__input:focus { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; background-color: var(--c-surface);
}
.contact-form__textarea { resize: vertical; min-height: 140px; }
.contact-form__submit   { align-self: flex-start; }
 
/* ────────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────────── */
.footer { padding: 3rem 0; border-top: 1px solid var(--c-border); background: var(--c-bg-3); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.04em; color: var(--c-text); }
.footer__logo span { color: var(--c-red); }
.footer__tagline { font-size: 0.8rem; color: var(--c-text-faint); letter-spacing: 0.05em; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem 2rem; margin: 0.5rem 0; }
.footer__nav a { font-size: 0.82rem; color: var(--c-text-faint); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--c-red); }
.footer__copy { font-size: 0.75rem; color: var(--c-text-faint); }
 
/* ────────────────────────────────────────────────────────────────
   SCROLLBAR / SELECTION / FOCUS / REDUCED MOTION
──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--c-bg-2); }
::-webkit-scrollbar-thumb  { background: rgba(192,57,43,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192,57,43,0.5); }
 
::selection { background: rgba(192,57,43,0.12); color: var(--c-red-deep); }
:focus-visible { outline: 2px solid var(--c-red); outline-offset: 3px; border-radius: 4px; }
 
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
