/* =============================================
   1. VARIABLES — Le panneau de contrôle
      Modifiez ici pour changer toute l'identité
============================================= */
:root {
  /* Couleurs — palette marron chaud inspirée de Sincère */
  --cream:        #FFFFFF;   /* fond principal, crème doux */
  --cream-soft:   #EDE2D0;   /* crème légèrement plus sombre */
  --brown-dark:   #2B1D14;   /* marron très sombre (texte fort) */
  --brown:        #4A3425;   /* marron principal */
  --brown-mid:    #7A5A3F;   /* marron moyen */
  --brown-light:  #B89878;   /* marron clair (accents) */
  --warm-accent:  #C9804A;   /* cuivre chaud (CTA, détails) */
  --line:         rgba(74, 52, 37, 0.15);  /* bordures subtiles */

  /* Typographie */
  --font-display: 'Fraunces', Georgia, serif;   /* serif éditoriale */
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --page-pad:     clamp(24px, 5vw, 80px);
  --radius:       12px;

  /* Animations */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.7, 0, 0.3, 1);
}


/* =============================================
   2. RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--cream);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Effet grain très subtil — donne le côté artisanal/éditorial */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}


/* =============================================
   3. NAVIGATION — Commune à toutes les pages
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--page-pad);
  background-color: rgba(245, 237, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  padding: 14px var(--page-pad);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--brown-dark);
  letter-spacing: -0.3px;
}

.nav-brand-text em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.65;
  margin-left: 4px;
}

/* Liens */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--warm-accent);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--brown-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--brown-dark);
}

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--brown-dark);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background-color: var(--warm-accent);
  transform: translateY(-1px);
}

.nav-cta svg {
  transition: transform 0.3s var(--ease-out);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}


/* =============================================
   4. TYPOGRAPHIE — Système éditorial
============================================= */

/* Titres display */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--brown-dark);
}

.display-hero em {
  font-style: italic;
  font-weight: 300;
  color: var(--warm-accent);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--brown-dark);
}

.display-xl em {
  color: var(--warm-accent);
  font-style: italic;
  font-weight: 300;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--brown-dark);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--brown-dark);
}

/* Labels de section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: var(--warm-accent);
}

/* Corps de texte */
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--brown);
  font-weight: 300;
  max-width: 560px;
}

.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
}


/* =============================================
   5. LAYOUT — Grilles et sections
============================================= */
.page {
  padding-top: 100px; /* espace pour la nav fixe */
}

.section {
  padding: clamp(80px, 10vw, 140px) var(--page-pad);
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}


/* =============================================
   6. BOUTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--brown-dark);
  color: var(--cream);
}

.btn-primary:hover {
  background-color: var(--warm-accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brown-dark);
  border: 1px solid var(--brown-dark);
}

.btn-secondary:hover {
  background-color: var(--brown-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn svg {
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}


/* =============================================
   7. ANIMATIONS — Reveal au scroll
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s 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; }


/* =============================================
   8. HERO — Page accueil
============================================= */
.hero {
  min-height: 100vh;
  padding: 160px var(--page-pad) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: rgba(201, 128, 74, 0.08);
  border: 1px solid rgba(201, 128, 74, 0.25);
  border-radius: 999px;
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 32px;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--warm-accent);
  position: relative;
}

.hero-status-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--warm-accent);
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.8); opacity: 0; }
}

.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: end;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown-mid);
}

.hero-meta-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brown-dark);
  font-style: italic;
}

/* Forme décorative dans le hero */
.hero-shape {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 128, 74, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Texte défilant en bas du hero */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  overflow: hidden;        /* masque ce qui dépasse */
  white-space: nowrap;
  z-index: 2;
  display: flex;           /* deux pistes côte à côte */
}

/* Chaque piste est une copie identique du texte.
   Technique : quand la piste 1 sort à gauche (-100% de sa largeur),
   la piste 2 prend exactement sa place — le saut est invisible. */
.hero-marquee-track {
  display: flex;
  flex-shrink: 0;                  /* empêche la piste de rétrécir */
  min-width: 100%;                 /* la piste fait AU MOINS la largeur de l'écran */
  justify-content: space-around;   /* étale les mots pour qu'aucun vide ne reste */
  gap: 48px;
  animation: marquee 40s linear infinite;
  will-change: transform;          /* indique au navigateur d'accélérer la transition */
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--brown-mid);
}

/* Séparateur étoile entre chaque item */
.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 148px;
}

.hero-marquee-track span::after {
  content: '✦';
  color: var(--warm-accent);
  font-style: normal;
}

/* La piste se déplace de sa propre largeur vers la gauche,
   puis repart instantanément de 0 — imperceptible grâce à la piste 2 */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}


/* =============================================
   9. SECTIONS SPÉCIFIQUES
============================================= */

/* Section avec fond sombre */
.section-dark {
  background-color: var(--brown-dark);
  color: var(--cream);
}

.section-dark .display-lg,
.section-dark .display-md,
.section-dark .display-xl {
  color: var(--cream);
}

.section-dark .lead,
.section-dark .body-text {
  color: rgba(245, 237, 224, 0.75);
}

.section-dark .eyebrow {
  color: rgba(245, 237, 224, 0.6);
}


/* =============================================
   10. PORTFOLIO GRID
============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}

.portfolio-item:hover {
  transform: translateY(-6px);
}

/* Layout asymétrique — différentes tailles */
.portfolio-item:nth-child(1) { grid-column: span 7; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 5; }
.portfolio-item:nth-child(4) { grid-column: span 7; }
.portfolio-item:nth-child(5) { grid-column: span 6; }
.portfolio-item:nth-child(6) { grid-column: span 6; }

.portfolio-preview {
  aspect-ratio: 4/3;
  background-color: var(--brown);
  position: relative;
  overflow: hidden;
}

/* Mockup d'écran stylisé */
.mockup {
  position: absolute;
  inset: 10%;
  background-color: var(--cream);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}

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

.mockup-bar {
  height: 22px;
  background-color: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
}

.mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brown-light);
  opacity: 0.5;
}

.mockup-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-line {
  height: 8px;
  background-color: var(--brown-light);
  opacity: 0.25;
  border-radius: 2px;
}

.mockup-line.short { width: 40%; }
.mockup-line.medium { width: 70%; }
.mockup-line.accent {
  background-color: var(--warm-accent);
  opacity: 0.7;
  height: 12px;
  width: 55%;
}

.mockup-block {
  height: 60px;
  background-color: var(--brown-light);
  opacity: 0.2;
  border-radius: 4px;
  margin-top: 8px;
}

.portfolio-info {
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.portfolio-title em {
  font-style: italic;
  font-weight: 400;
}

.portfolio-tag {
  font-size: 12px;
  color: var(--brown-mid);
  letter-spacing: 0.5px;
}

.portfolio-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--brown-mid);
  white-space: nowrap;
}


/* =============================================
   11. SERVICES
============================================= */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.4s var(--ease-out);
}

.service-row:hover {
  padding-left: 20px;
}

.service-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--brown-mid);
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--brown-dark);
  transition: color 0.3s;
}

.service-row:hover .service-name {
  color: var(--warm-accent);
}

.service-desc {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.6;
}

.service-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--brown-dark);
  white-space: nowrap;
}


/* =============================================
   12. TEAM — Qui sommes-nous
============================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
}

.team-card {
  position: relative;
}

.team-portrait {
  aspect-ratio: 3/4;
  background-color: var(--brown);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 300;
  color: var(--cream);
  opacity: 0.95;
}

.team-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(43, 29, 20, 0.85), transparent);
  color: var(--cream);
}

.team-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 4px;
}

.team-name em {
  font-style: italic;
  font-weight: 400;
}

.team-role {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.team-skill {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--brown);
}


/* =============================================
   13. PROCESS — Étapes
============================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  position: relative;
}

.process-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  font-weight: 300;
  color: var(--warm-accent);
  line-height: 1;
  margin-bottom: 24px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 237, 224, 0.7);
}


/* =============================================
   14. CONTACT
============================================= */
.contact-hero {
  text-align: center;
  padding: 120px var(--page-pad) 80px;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 400;
  color: var(--brown-dark);
  margin: 40px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.contact-email:hover {
  border-bottom-color: var(--warm-accent);
}

.contact-email em {
  font-style: italic;
  color: var(--warm-accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.contact-block h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-block p,
.contact-block a {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brown-dark);
  line-height: 1.6;
}

.contact-block a:hover {
  color: var(--warm-accent);
}


/* =============================================
   15. FOOTER
============================================= */
.footer {
  padding: 80px var(--page-pad) 40px;
  background-color: var(--brown-dark);
  color: var(--cream);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 237, 224, 0.15);
}

.footer-brand-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -2px;
}

.footer-brand-big em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.7);
  margin-top: 20px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(245, 237, 224, 0.85);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(245, 237, 224, 0.5);
}


/* =============================================
   16. RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .section-header,
  .team-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-item:nth-child(n) {
    grid-column: span 1;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-row {
    grid-template-columns: 40px 1fr auto;
    gap: 20px;
  }

  .service-desc {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Canaux de contact et grille studio : passage en colonne unique */
  .channels-grid,
  .studio-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Formulaire de contact : passage en colonne unique */
@media (max-width: 700px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-full,
  .form-submit {
    grid-column: span 1;
  }
}


/* =============================================
   17. UTILITAIRES — Espacement & alignement
   (règles génériques réutilisables sur toutes les pages)
============================================= */

/* Centre le texte dans un conteneur */
.text-center { text-align: center; }

/* Aligne le trait et le texte d'un .eyebrow au centre */
.eyebrow-center { justify-content: center; }

/* Modificateurs de padding sur .section */
.section-pt-xs { padding-top: 20px; }     /* très réduit, ex : après un header */
.section-pt-sm { padding-top: 40px; }     /* réduit, ex : suite de sections */
.section-pb-sm { padding-bottom: 40px; }  /* réduit en bas */
.section-pb-md { padding-bottom: 60px; }  /* moyen en bas */

/* Marges inférieures isolées */
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }


/* =============================================
   18. HERO — Éléments déplacés depuis le HTML
============================================= */

/* Espace au-dessus du paragraphe d'accroche */
.hero-lead { margin-top: 40px; }

/* Rangée de boutons CTA : flex horizontal avec retour à la ligne */
.hero-cta-group {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;   /* passe en colonne sur mobile */
}


/* =============================================
   19. PORTFOLIO — Couleurs de fond des aperçus
   (chaque projet a une teinte différente issue de la palette)
============================================= */
.preview-brown-mid   { background-color: #7A5A3F; } /* marron moyen */
.preview-copper      { background-color: #C9804A; } /* cuivre / accent */
.preview-brown       { background-color: #4A3425; } /* marron principal */
.preview-brown-light { background-color: #B89878; } /* marron clair */
.preview-brown-dark  { background-color: #2B1D14; } /* marron très sombre */

/* Bloc centré sous la grille : bouton "Voir tous les projets" */
.portfolio-cta {
  text-align: center;
  margin-top: 60px;
}


/* =============================================
   20. CTA — Appels à l'action récurrents
============================================= */

/* Paragraphe de lead dans les sections CTA (centré avec espace autour) */
.cta-lead { margin: 32px auto 48px; }

/* Bouton primaire en cuivre pour les fonds sombres */
.btn-primary-accent { background-color: var(--warm-accent); }


/* =============================================
   21. CONTACT — Formulaire & canaux
============================================= */

/* Lead centré horizontalement (ex : intro page contact) */
.lead-centered { margin: 0 auto; }

/* Paragraphe de description du formulaire limité en largeur */
.body-text-narrow { max-width: 560px; }

/* Conteneur d'en-tête du formulaire (centré, limité) */
.form-header {
  max-width: 900px;
  margin: 0 auto;
}

/* ----- Formulaire de contact ----- */

/* Grille 2 colonnes pour les champs */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 80px auto 0;
}

/* Champ pleine largeur dans la grille (ex : message, budget) */
.form-full { grid-column: span 2; }

/* Groupe : étiquette + champ empilés verticalement */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Étiquette en capitales discrètes au-dessus du champ */
.form-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
}

/* Champs texte, textarea et select : style minimaliste sur ligne de base */
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);  /* seul le bord bas est visible */
  color: var(--brown-dark);
  transition: border-color 0.3s;
  width: 100%;
}

/* Ligne de base qui s'illumine au focus */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--warm-accent);
}

/* Textarea : hauteur minimale et police cohérente */
.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* Bouton d'envoi aligné à gauche de sa zone */
.form-submit {
  grid-column: span 2;
  justify-self: start;
  margin-top: 20px;
}

/* ----- Canaux de contact alternatifs ----- */

/* Grille 2 colonnes pour e-mail / téléphone */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

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

/* Carte d'un canal : bordure subtile sur fond sombre */
.channel-card {
  padding: 40px;
  border: 1px solid rgba(245, 237, 224, 0.15);
  border-radius: var(--radius);
}

/* Icône décorative en police serif italique */
.channel-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--warm-accent);
  line-height: 1;
  margin-bottom: 20px;
}

/* Titre du canal (e-mail, téléphone…) */
.channel-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
}

/* Description courte du canal */
.channel-desc {
  color: rgba(245, 237, 224, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Lien d'action du canal (ex : adresse e-mail cliquable) */
.channel-link {
  color: var(--warm-accent);
  font-family: var(--font-display);
  font-size: 16px;
}


/* =============================================
   22. STUDIO — Page équipe & localisation
============================================= */

/* Intro de la page studio : limitée en largeur pour la lisibilité */
.studio-header-content { max-width: 900px; }

/* Grille deux colonnes : texte à gauche, carte à droite */
.studio-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Rangée de puces (ville, e-mail) sous l'intro */
.studio-contact-chips {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Portrait de Baptiste : dégradé marron chaud → marron sombre */
.portrait-baptiste {
  background: linear-gradient(135deg, #7A5A3F 0%, #4A3425 100%);
}

/* Portrait d'Eliot : dégradé cuivre → marron moyen */
.portrait-eliot {
  background: linear-gradient(135deg, #C9804A 0%, #7A5A3F 100%);
}

/* Carte stylisée de Toulouse : dégradé, centrage et position relative */
.studio-map {
  aspect-ratio: 1/1;                                           /* carré parfait */
  background: linear-gradient(135deg, #B89878 0%, #7A5A3F 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  padding: 40px;
}

/* Texte de coordonnées GPS positionné en haut à gauche */
.studio-map-coord {
  position: absolute;
  left: 40px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
}
.studio-map-coord-lat { top: 40px; }               /* ligne latitude */
.studio-map-coord-lon { top: 70px; opacity: 0.7; } /* ligne longitude, atténuée */

/* Conteneur des cercles concentriques décoratifs (centré en absolu) */
.studio-map-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.studio-map-circles svg { opacity: 0.25; } /* discret, effet filigrane */

/* Nom de la ville en grand en bas à gauche */
.studio-map-city {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}
.studio-map-city em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.7;  /* le point séparateur est atténué */
}

/* Label de la marque en bas à droite */
.studio-map-label {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}
.merci-hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px var(--page-pad) 80px;
      gap: 32px;
    }

    .merci-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background-color: var(--warm-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .merci-icon svg {
      width: 32px;
      height: 32px;
      color: var(--cream);
    }

    .merci-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 8px;
    }
