/* ============================================================
   RÉMI CHAUVIN — Portfolio 2026
   Design System · Mobile-first · WCAG AA · Core Web Vitals
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Palette */
  --bg:           #080808;
  --bg-card:      rgba(255,255,255,0.038);
  --bg-card-hover:rgba(255,255,255,0.065);
  --surface:      rgba(255,255,255,0.055);
  --surface-2:    rgba(255,255,255,0.08);

  --text:         #F0EDE8;
  --text-muted:   rgba(240,237,232,0.58);
  --text-soft:    rgba(240,237,232,0.32);

  --accent:       #C8A96E;
  --accent-hover: #D4B878;
  --accent-soft:  rgba(200,169,110,0.10);
  --accent-line:  rgba(200,169,110,0.28);
  --accent-line-strong: rgba(200,169,110,0.50);

  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);

  /* Spacing */
  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --max-w:     1280px;
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --t-fast:    0.18s;
  --t-base:    0.28s;
  --t-slow:    0.55s;

  /* Z-index scale */
  --z-base:    1;
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────── */
.t-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.t-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.t-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.t-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.t-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.75;
}
em.accent { font-style: italic; color: var(--accent); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--space-2xl); }
.section--sm { padding-block: var(--space-xl); }
.section--lg { padding-block: var(--space-3xl); }
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--t-base) var(--ease-out), box-shadow var(--t-base);
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding-block: 0.25rem;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--accent);
  transition: left var(--t-base) var(--ease-out), right var(--t-base) var(--ease-out);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { left: 0; right: 0; }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after { left: 0; right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--accent);
  color: #080808;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--r-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { font-size: 1.5rem; color: var(--text-muted); }
.nav__mobile .nav__cta { font-size: 1rem; padding: 0.75rem 2rem; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: #080808;
}
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.25); }
.btn--ghost {
  padding: 0.875rem 2rem;
  border: 1px solid var(--accent-line-strong);
  color: var(--accent);
  background: transparent;
}
.btn--ghost:hover { background: var(--accent-soft); transform: translateY(-2px); border-color: var(--accent); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.875rem; }
.btn__arrow { transition: transform var(--t-base) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a08;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.15) 30%,
    rgba(8,8,8,0.65) 70%,
    rgba(8,8,8,0.92) 100%
  );
}
.hero__overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(200,169,110,0.04) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
}
.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__kicker-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero__tagline {
  max-width: 720px;
  margin-bottom: var(--space-lg);
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero__trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: var(--z-base);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-soft);
  writing-mode: vertical-lr;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-xl); }
.section-header--center { text-align: center; }
.section-header--center .t-sub { margin-inline: auto; }
.section-header .t-kicker { margin-bottom: 0.75rem; }
.section-header .t-h2 { margin-bottom: 0.75rem; }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-block: var(--space-xl);
}
.stat-item {
  padding: var(--space-lg) var(--space-xl);
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── VIDEO SHOWCASE ─────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: auto;
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid var(--border);
  cursor: pointer;
  group: video-card;
}
.video-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base);
}
.video-card:hover .video-card__overlay { background: rgba(8,8,8,0.25); }
.video-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200,169,110,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base);
  flex-shrink: 0;
}
.video-play-btn svg { fill: #080808; margin-left: 3px; }
.video-card:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(200,169,110,0.15);
}
.video-card__meta {
  padding: var(--space-md) var(--space-md) var(--space-md);
}
.video-card__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.video-card__desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.video-lightbox.active { display: flex; }
.video-lightbox__inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
}
.video-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  transition: color var(--t-fast);
}
.video-lightbox__close:hover { color: var(--text); }
.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-md);
}

/* ── PHOTO GALLERY ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.gallery-filter {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.825rem;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--t-fast);
  cursor: pointer;
  font-family: var(--font-body);
}
.gallery-filter:hover { border-color: var(--border-hover); color: var(--text); }
.gallery-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #080808;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.375rem; } }

.gallery-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.gallery-item.hidden { display: none; }
.gallery-item.portrait { grid-row: span 2; }
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform var(--t-slow) var(--ease-out), filter var(--t-base);
}
.gallery-item.portrait .gallery-item__img { aspect-ratio: unset; height: 100%; }
.gallery-item:hover .gallery-item__img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Photo lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.photo-lightbox.active { display: flex; }
.photo-lightbox__inner { position: relative; max-height: 90vh; }
.photo-lightbox__img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.photo-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.photo-lightbox__close:hover { color: var(--text); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding: var(--space-md);
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color var(--t-fast);
  z-index: calc(var(--z-modal) + 1);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--text); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-xl) var(--space-lg);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-line);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}
.service-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-md);
}
.service-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 40px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--accent-line), var(--accent-line));
  pointer-events: none;
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}
.process-step {
  text-align: center;
  padding: var(--space-lg);
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  background: var(--bg);
  position: relative;
  z-index: var(--z-base);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.process-step__desc { font-size: 0.875rem; color: var(--text-muted); }

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: transform var(--t-base), border-color var(--t-base);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent-line);
  background: rgba(200,169,110,0.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #080808;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 40px;
  white-space: nowrap;
  font-family: var(--font-mono);
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}
.pricing-card__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card__price span { font-size: 1rem; color: var(--text-muted); font-family: var(--font-body); }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--space-md);
}
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: var(--space-lg); }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-feature::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%23C8A96E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-lg);
}
.testimonial-quote {
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  border: 1px solid var(--accent-line);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.78rem; color: var(--text-soft); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.open { border-color: var(--accent-line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card);
  transition: background var(--t-fast);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question[aria-expanded="true"] { background: var(--accent-soft); }
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease-out);
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer__inner {
  overflow: hidden;
  padding: 0 var(--space-lg);
}
.faq-answer.open .faq-answer__inner { padding-bottom: var(--space-md); padding-top: 0.5rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.about-portrait {
  position: relative;
}
.about-portrait__img {
  border-radius: var(--r-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  max-height: 540px;
}
.about-portrait__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
}
@media (max-width: 640px) {
  .about-portrait__badge { position: static; margin-top: var(--space-md); display: inline-block; }
}
.about-badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.about-badge-label { font-size: 0.75rem; color: var(--text-muted); }
.about-content { }
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.skill-chip {
  padding: 0.3rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.skill-chip:hover { border-color: var(--accent-line); color: var(--accent); background: var(--accent-soft); }
.about-experience { margin-top: var(--space-lg); }
.exp-item {
  display: flex;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.exp-item:last-child { border-bottom: none; }
.exp-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 60px;
  padding-top: 2px;
}
.exp-company { font-size: 0.925rem; font-weight: 600; color: var(--text); }
.exp-role { font-size: 0.825rem; color: var(--text-muted); }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { }
.contact-info-items { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-info-item { display: flex; align-items: flex-start; gap: var(--space-md); }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 0.72rem; color: var(--text-soft); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text); }
.contact-info-value a { transition: color var(--t-fast); }
.contact-info-value a:hover { color: var(--accent); }

.availability-badge {
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-sm);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 6px rgba(76,175,80,0.6);
  flex-shrink: 0;
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 4px rgba(76,175,80,0.5); }
  50% { box-shadow: 0 0 12px rgba(76,175,80,0.8); }
}
.availability-text { font-size: 0.875rem; color: var(--text-muted); }
.availability-text strong { color: var(--accent); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-soft); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-line-strong);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
}
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(240,237,232,0.4)' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.5rem; cursor: pointer; }
.form-select option { background: #1a1a1a; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; }
.form-hint { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.25rem; }
.form-success {
  display: none;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--r-sm);
  padding: var(--space-md) var(--space-lg);
  color: #4CAF50;
  font-size: 0.9rem;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, rgba(42,79,110,0.06) 100%);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: var(--z-base); }
.cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-top: var(--space-lg); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); } }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.footer__tagline { font-size: 0.825rem; color: var(--text-muted); }
.footer__links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}
.footer__link {
  font-size: 0.825rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.footer__copy { font-size: 0.78rem; color: var(--text-soft); }
.footer__legal-links { display: flex; gap: var(--space-md); }
.footer__legal-link { font-size: 0.78rem; color: var(--text-soft); transition: color var(--t-fast); }
.footer__legal-link:hover { color: var(--accent); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── PAGE: MENTIONS LÉGALES ─────────────────────────────────── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--space-sm); }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #080808;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base), transform var(--t-base);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent-hover); }
.back-to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── LOADING / SKELETON ─────────────────────────────────────── */
@keyframes shimmer {
  from { background-position: -400px 0; }
  to { background-position: 400px 0; }
}
