@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');
@import 'variables.css';
@import 'animations.css';

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Container ─── */
.container {
  max-width: 1400px;
  padding: 0 80px;
  margin: 0 auto;
}

/* ─── Grid ─── */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-md);
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: .95;
}
h1 { font-size: 88px; }
h2 { font-size: 56px; }
h3 { font-size: 32px; }
p { font-size: 18px; line-height: 1.65; }
.small { font-size: 14px; }

.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(138, 142, 247, .5);
  color: var(--accent);
}
.btn svg { transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ─── Label ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text-secondary);
}

/* ─── Section spacing ─── */
section { margin-top: var(--spacing-xxl); }

/* ========================================================
   NAVBAR
======================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 90px;
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(9, 9, 9, .75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  color: var(--accent);
  flex-shrink: 0;
  display: block;
  opacity: .9;
}
.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-active { color: var(--text); }
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.nav-lang {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition);
}
.nav-lang:hover { color: var(--text); }
.nav-menu-btn {
  width: 36px; height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all .3s ease;
}
.nav-menu-btn span:last-child { width: 60%; }

/* ========================================================
   HERO
======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px; /* section impose 160px, on divise par deux */
}

/* Image plein fond */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* Fumée / diffusion — plusieurs gradients superposés */
.hero-smoke {
  position: absolute;
  inset: 0;
  background:
    /* Fondu principal gauche → droite : zone texte opaque, transition organique */
    linear-gradient(
      to right,
      #090909  0%,
      #090909  22%,
      rgba(9,9,9,.99) 27%,
      rgba(9,9,9,.97) 30%,
      rgba(9,9,9,.93) 33%,
      rgba(9,9,9,.87) 36%,
      rgba(9,9,9,.78) 39%,
      rgba(9,9,9,.66) 42%,
      rgba(9,9,9,.51) 45%,
      rgba(9,9,9,.34) 48%,
      rgba(9,9,9,.19) 51%,
      rgba(9,9,9,.08) 54%,
      rgba(9,9,9,.02) 57%,
      transparent    60%
    ),
    /* Vignette haut */
    linear-gradient(
      to bottom,
      rgba(9,9,9,.30) 0%,
      rgba(9,9,9,.08) 8%,
      transparent    15%
    ),
    /* Vignette bas */
    linear-gradient(
      to top,
      rgba(9,9,9,.80) 0%,
      rgba(9,9,9,.25) 12%,
      transparent    22%
    ),
    /* Vignette droite */
    linear-gradient(
      to left,
      rgba(9,9,9,.50) 0%,
      rgba(9,9,9,.15) 12%,
      transparent    24%
    );
}

/* Contenu texte */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding-top: 48px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: var(--spacing-xl);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}
.hero-left {
  max-width: 380px;
  margin-left: 72px;
}
.hero-title {
  font-size: 58px;             /* réduit depuis 88px */
  line-height: .97;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}
.hero-desc {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}
.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ========================================================
   SERVICES
======================================================== */
.services {
  background: var(--gray-2);
  padding: var(--spacing-xl) 0;
  margin-top: var(--spacing-xxl);
}

/* Label */
.svc-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
}

/* Titre section */
.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
}

/* En-tête grille */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: 56px;
}
.services-desc-col {
  display: flex;
  align-items: center;
}
.services-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Grille cartes */
.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Carte */
.service-card {
  background: var(--gray-3);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: rgba(138, 142, 247, .28);
  transform: translateY(-5px);
}

/* Icône */
.sc-icon {
  color: var(--accent);
  margin-bottom: 28px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* Titre carte */
.sc-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Description carte */
.sc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

/* Flèche */
.sc-arrow {
  margin-top: 32px;
  color: var(--accent);
  opacity: .5;
  transition: opacity var(--transition), transform var(--transition);
  width: 18px;
}
.service-card:hover .sc-arrow {
  opacity: 1;
  transform: translateX(2px) translateY(-2px);
}

/* ========================================================
   PROCESS
======================================================== */
.process {
  margin-top: var(--spacing-xxl);
}

/* Pas de carte — section sur fond brut */
.process-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

/* Colonne gauche */
.process-header {
  padding: 48px 48px 48px 0;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 14px;
}

/* Grille des étapes */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Étape individuelle */
.process-step {
  padding: 48px 32px;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}

/* Numéro + flèche */
.ps-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: rgba(138, 142, 247, .40);
  letter-spacing: -.02em;
}
.ps-arrow {
  font-size: 16px;
  color: rgba(138, 142, 247, .35);
  letter-spacing: 0;
  line-height: 1;
  align-self: center;
  margin-bottom: 4px;
}

/* Titre étape */
.ps-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}

/* Description */
.ps-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

/* Ligne décorative bas */
.ps-line {
  margin-top: 28px;
  width: 36px;
  height: 1px;
  background: rgba(138, 142, 247, .45);
}

/* ========================================================
   PROJECTS
======================================================== */
.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Image — flush gauche, pleine hauteur */
.proj-img-col {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 48px 56px;
}
.proj-img-col img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s ease;
}
.proj-img-col:hover img { transform: scale(1.03); }

/* Texte */
.proj-txt-col {
  display: flex;
  align-items: center;
  padding: 64px 80px 64px 72px;
}
.proj-txt-inner {
  max-width: 460px;
}
.proj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  margin: 14px 0 24px;
}
.proj-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

/* Bouton rectangle — partagé projets + CTA */
.btn-rect {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  align-self: flex-start;
}
.btn-rect:hover {
  border-color: var(--accent);
  background: rgba(138, 142, 247, .06);
  color: var(--accent-light);
}

/* ========================================================
   CTA
======================================================== */
.cta-section {
  margin-top: var(--spacing-xxl);
  padding: var(--spacing-xl) 0;
  position: relative;
  background-image:
    linear-gradient(rgba(9,9,9,.45), rgba(9,9,9,.45)),
    url('../assets/images/cta-bg.jpg.jpg');
  background-size: cover;
  background-position: center;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-icon {
  color: var(--accent);
  margin-bottom: var(--spacing-lg);
  opacity: .85;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}
.cta-inner .btn-rect {
  align-self: center;
}

/* ========================================================
   FOOTER
======================================================== */
.footer {
  margin-top: 0;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--border);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 40px;
}
.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 32px;
}
.footer-social a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--text); }

/* ========================================================
   PAGE PROJETS — En-tête
======================================================== */
.pg-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}
.pg-header--bg {
  background-image:
    linear-gradient(rgba(9,9,9,.45), rgba(9,9,9,.45)),
    url('../assets/images/cta-bg.jpg.jpg');
  background-size: cover;
  background-position: center;
}
.pg-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 400;
  line-height: .95;
  margin: 16px 0 28px;
}
.pg-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
}

/* ========================================================
   PAGE PROJETS — Liste par marque
======================================================== */
.brands-section {
  padding-bottom: var(--spacing-xxl);
}
.brand-entry {
  display: grid;
  grid-template-columns: 38% 62%;
  grid-template-areas: "info gallery";
  gap: 0;
  padding: var(--spacing-xl) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.brand-info    { grid-area: info; }
.brand-gallery { grid-area: gallery; }
.brands-end-line {
  border-top: 1px solid var(--border);
}
.brand-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 18px;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  line-height: .95;
  margin-bottom: 14px;
}
.brand-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 36px;
}
.brand-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.brand-link svg { transition: transform var(--transition); }
.brand-link:hover { color: var(--accent); }
.brand-link:hover svg { transform: translateX(3px) translateY(-3px); }

/* Layout inversé (galerie à gauche, texte à droite) */
.brand-entry--reverse {
  grid-template-columns: 62% 38%;
  grid-template-areas: "gallery info";
}
.brand-entry--reverse .brand-info { padding-left: 72px; }

/* Galerie images */
.brand-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bg-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s ease;
}
.bg-img:hover img { transform: scale(1.04); }

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

/* En-tête avec portrait */
.pg-header--about {
  padding-bottom: var(--spacing-xl);
}
.about-header-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--spacing-xl);
}
.about-header-text {
  /* pas de padding supplémentaire */
}
.about-header-photo {
  width: 200px;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
}
.about-header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-section {
  margin-top: var(--spacing-xxl);
}
.about-intro {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xxl);
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.about-bio-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--spacing-lg);
}
.about-bio-main {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--spacing-md);
}
.about-bio-quote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: var(--spacing-md) 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: italic;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  align-content: start;
  padding-top: 6px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
}
.stat-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* Parcours */
.parcours-section {
  margin-top: var(--spacing-xxl);
}
.parcours-list {
  margin-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
}
.parcours-item {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.parcours-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
}
.parcours-place {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: .04em;
}
.parcours-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: right;
}
.parcours-date--current {
  color: var(--accent);
}

/* ========================================================
   PAGE CONTACT
======================================================== */
.contact-section {
  margin-top: 0;
  padding-bottom: var(--spacing-xl);
}
.contact-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-xl) 0;
  gap: 0;
}

/* Colonne infos */
.contact-info {
  padding-right: 80px;
  border-right: 1px solid var(--border);
}
.contact-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: var(--spacing-xl);
}
.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.contact-detail-value {
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
}
.contact-detail-value:hover { color: var(--accent); }
.contact-note {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: .6;
}

/* Colonne formulaire */
.contact-form-col {
  padding-left: 80px;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--spacing-md);
}
.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--gray-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(138, 142, 247, .5);
  background: var(--gray-3);
}
.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.form-select-wrap {
  position: relative;
}
.form-select {
  cursor: pointer;
  padding-right: 44px;
}
.form-select option {
  background: var(--gray-2);
  color: var(--text);
}
.form-select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}
.form-submit {
  align-self: flex-start;
  margin-top: var(--spacing-xs);
  cursor: pointer;
}

/* ========================================================
   RESPONSIVE — Tablet 1024px
======================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  h1, .hero-title { font-size: 64px; }
  h2 { font-size: 44px; }

  .hero-left { max-width: 480px; }

  .services-header { grid-template-columns: 1fr; gap: var(--spacing-md); }
  .services-title { font-size: 40px; }
  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .process-inner { grid-template-columns: 1fr; }
  .process-header { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 36px 0 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-top: 1px solid rgba(255,255,255,.08); }
  .process-step:nth-child(odd) { border-left: none; }
  .process-step:nth-child(even) { border-left: 1px solid rgba(255,255,255,.08); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .proj-txt-col { padding: 48px 40px 48px 48px; }
  .proj-title { font-size: 40px; }
  .cta-title { font-size: 40px; }
  .footer-row { flex-wrap: wrap; gap: var(--spacing-md); }

  /* Page projets */
  .pg-title { font-size: 64px; }
  .brand-entry { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .brand-name { font-size: 40px; }
  .brand-desc { max-width: 100%; }

  /* Page à propos */
  .about-header-photo { width: 160px; height: 210px; }
  .about-intro { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .about-bio-main { font-size: 26px; }
  .parcours-item { grid-template-columns: 1fr 1fr; }
  .parcours-place { display: none; }

  /* Page contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: var(--spacing-xl); }
  .contact-form-col { padding-left: 0; padding-top: var(--spacing-xl); }
}

/* ========================================================
   RESPONSIVE — Mobile 768px
======================================================== */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  h1, .hero-title { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
  section { margin-top: var(--spacing-xl); }

  .nav-links { display: none; }
  .nav-lang { display: none; }

  /* Hero mobile : image centrée, fumée du bas vers le haut */
  .hero-bg img { object-position: center top; }
  .hero-smoke {
    background:
      linear-gradient(to top,
        #090909  0%,
        #090909  25%,
        rgba(9,9,9,.95) 32%,
        rgba(9,9,9,.82) 38%,
        rgba(9,9,9,.60) 44%,
        rgba(9,9,9,.32) 50%,
        rgba(9,9,9,.10) 56%,
        transparent    62%
      ),
      linear-gradient(to bottom,
        rgba(9,9,9,.6) 0%,
        transparent 15%
      ),
      linear-gradient(to right,
        rgba(9,9,9,.4) 0%,
        transparent 30%
      ),
      linear-gradient(to left,
        rgba(9,9,9,.4) 0%,
        transparent 30%
      );
  }
  .hero-content { align-items: flex-end; padding-bottom: var(--spacing-xl); }
  .hero-left { max-width: 100%; }

  .services-header { grid-template-columns: 1fr; gap: var(--spacing-md); }
  .services-title { font-size: 34px; }
  .services-cards { grid-template-columns: 1fr; }

  .process-inner { grid-template-columns: 1fr; }
  .process-header { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
  .process-title { font-size: 30px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-left: none; border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; }
  .ps-num { font-size: 40px; }

  .projects-grid { grid-template-columns: 1fr; }
  .proj-img-col { min-height: 60vw; }
  .proj-txt-col { padding: 40px 24px; }
  .proj-title { font-size: 34px; }

  .cta-title { font-size: 30px; }

  .footer-row { flex-direction: column; align-items: flex-start; gap: var(--spacing-md); }
  .footer-nav { flex-wrap: wrap; gap: var(--spacing-md); }
  .footer-social { flex-wrap: wrap; gap: var(--spacing-md); }
  .section-tracker { display: none; }

  /* Page projets */
  .pg-header { padding: 120px 0 56px; }
  .pg-title { font-size: 44px; }
  .brand-entry { padding: var(--spacing-lg) 0; }

  /* Page à propos — mobile */
  .about-header-layout { grid-template-columns: 1fr; gap: var(--spacing-md); }
  .about-header-photo { width: 140px; height: 180px; border-radius: 6px; margin: 0; }


  /* Page contact */
  .form-row { grid-template-columns: 1fr; }
  .brand-entry,
  .brand-entry--reverse {
    grid-template-areas: "gallery" "info";
    grid-template-columns: 1fr;
  }
  .brand-entry--reverse .brand-info { padding-left: 0; }
  .brand-name { font-size: 34px; }
  .brand-gallery { grid-template-columns: 1fr 1fr; }
  .bg-img { aspect-ratio: 3 / 4; }
}

/* ========================================================
   SECTION TRACKER
======================================================== */
.section-tracker {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tracker-line {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, .1);
  pointer-events: none;
}
.tracker-dot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, .22);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: color .35s ease;
}
.tracker-dot::before {
  content: attr(data-num);
  display: block;
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1;
}
.tracker-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transition: all .35s ease;
}
.tracker-dot.active {
  color: var(--accent);
}
.tracker-dot.active::after {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 10px rgba(138, 142, 247, .6);
}
