/* ---------- Variables ---------- */
:root {
  --bg: #050608;
  --bg-soft: #0b0d10;
  --text: #f9fafb;
  --muted: #9ca3af;
  --accent: #f97316;
  --border-subtle: rgba(148, 163, 184, 0.2);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* ---------- Reset simple ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
 
  width: 100%;
  overflow-x: hidden;   /* pas de débordement horizontal */
  overflow-y: auto;     /* scrollbar verticale normale */
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color: var(--text);
  line-height: 1.6;
}

/* ---------- Layout global ---------- */
.page {
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  padding-top: 0;
  margin: 0;
}

/* ---------- Header + nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.0)
  );
  border-bottom: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

/* logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f97316 0, #f97316 22%, #020617 70%);
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.65);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* nav links */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--accent), transparent);
  transition: width 0.18s ease;
}

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

/* socials */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.nav-social a{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity .25s ease, transform .25s ease;
}

.nav-social a:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.nav-social svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}


/* bouton burger */
.nav-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text);
}

/* MENU OVERLAY MOBILE */
.nav-mobile {
  position: fixed;
  inset: 0;                /* top:0; right:0; bottom:0; left:0; */
  background: #f9fafb;
  color: #000;
  display: none;           /* caché par défaut */
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem 2.5rem;
  z-index: 40;
}

.nav-mobile.open {
  display: flex;
}

.nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #000;
}

.nav-mobile-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.nav-mobile-main a {
  text-decoration: none;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

.nav-mobile-main a:hover {
  opacity: 0.7;
}

.nav-mobile-footer {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-mobile-footer a {
  text-decoration: none;
  color: #000;
}

.nav-mobile-footer a:hover {
  text-decoration: underline;
}

/* ---------- Sections / textes ---------- */
.section {
  padding: 3.5rem 0 4rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--muted);
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin: 0.4rem 0 0.8rem;
}

.section-title .highlight {
  background: linear-gradient(to right, #f97316, #fb923c);
  -webkit-background-clip: text;
  color: transparent;
}

.section-intro {
  max-width: 540px;
  font-size: 0.97rem;
  color: var(--muted);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: background 0.17s ease, transform 0.17s ease, box-shadow 0.17s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.55);
}

.btn-primary {
  background: linear-gradient(to right, #f97316, #fb923c);
  border-color: transparent;
  color: #111827;
}

.btn-ghost {
  background: transparent;
}

/* ---------- HERO VIDÉO PLEIN ÉCRAN ---------- */
.hero {
  padding: 0;
  margin: 0;
}

.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;       /* la vidéo remplit la fenêtre */
  overflow: hidden;
  background: #000;
}

.hero-full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

/* ---------- Clients ---------- */
.clients {
  padding: 0 0 4rem;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.client-logo {
  height: 26px;
  opacity: 0.7;
  filter: grayscale(1);
}

/* ---------- Newsletter simple ---------- */
.newsletter {
  padding: 0 0 4rem;
}

.newsletter-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
  max-width: 520px;
}

.news-form {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.news-form input {
  flex: 1;
  min-width: 170px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: #020617;
  color: var(--text);
  font-size: 0.85rem;
}

.news-form input::placeholder {
  color: var(--muted);
}

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #020617;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.work-thumb {
  position: relative;
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.work-card:hover .work-thumb img {
  transform: scale(1.05);
}

.work-info {
  padding: 1.1rem 1.2rem 1.2rem;
}

.work-title {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.work-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  border: 1px solid var(--border-subtle);
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #020617;
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 44px;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-right {
    display: none;   /* on cache les liens inline */
  }

  .nav-toggle {
    display: block;  /* on affiche le burger */
  }

  .section {
    padding: 2.8rem 0 3.2rem;
  }
}

/* Scrollbar style (Safari, Chrome, Edge) */
::-webkit-scrollbar {
  width: 8px;               /* épaisseur */
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;   /* invisible comme macOS */
}

::-webkit-scrollbar-thumb {
  background: rgba(110, 110, 110, 0.55);  /* gris Apple */
  border-radius: 20px;                     /* arrondi */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(140, 140, 140, 0.65);   /* gris plus clair au survol */
}
/* ---------- PAGE WORK : TUILES PLEINE LARGEUR ---------- */

.work-main {
  flex: 1;
  padding-top: 72px;  /* laisse la place au header fixe */
  margin: 0;
}

.work-list {
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.work-tiles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* tuile = bande horizontale pleine largeur */
.work-tile {
  width: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* lien texte centré verticalement, à gauche */
.work-tile-title {
  margin-left: 8%;
  text-decoration: none;
  color: #f9fafb;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid #f9fafb;
  padding-bottom: 0.2rem;
}

.work-tile-title:hover {
  opacity: 0.8;
}

/* mobile */
@media (max-width: 768px) {
  .work-tile {
    min-height: 200px;
  }

  .work-tile-title {
    font-size: 1.1rem;
    margin-left: 6%;
    letter-spacing: 0.12em;
  }
}
/* ---------- PAGES PROJET ---------- */

.project-hero {
  padding-top: 0;
  padding-bottom: 2.5rem;
  background: #000;
}

.project-video-frame {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2rem;
}

.project-video-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #000;
}

/* texte du projet */
.project-text-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.project-text h1 {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.project-text p {
  max-width: 720px;
  font-size: 0.98rem;
  color: var(--muted);
}

/* galerie 8 emplacements */
.project-gallery-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-media {
  background: #020617;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* mobile / tablette */
@media (max-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-video-frame {
    padding-top: 3.5rem;
  }
}

@media (max-width: 640px) {
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .project-video-frame {
    padding-top: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* =========================
   ROY INTRO SPLIT
   ========================= */

.intro-split{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;              /* ajuste: 70vh / 85vh selon ton goût */
  background: #000;              /* base noire */
}

/* Colonne gauche (bloc noir + padding large) */
.intro-left{
  background: #000;
  display: flex;
  align-items: center;           /* Roy vibe: contenu centré verticalement */
}

.intro-left-inner{
  width: 100%;
  max-width: 560px;
  padding: clamp(3.5rem, 6vw, 6rem);
  padding-left: clamp(3.5rem, 8vw, 8rem); /* plus de “vide” comme Roy */
}

/* Titres + texte (plus proche Roy) */
.intro-title{
  margin: 0 0 1.6rem;
  font-size: clamp(2.3rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.intro-text{
  margin: 0 0 1.2rem;
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Colonne droite : image plein cadre */
.intro-right{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 78vh;
}

/* Mobile: texte puis image dessous */
@media (max-width: 900px){
  .intro-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .intro-left{
    align-items: flex-start;
  }

  .intro-left-inner{
    max-width: 680px;
    padding: 3rem 1.5rem 2rem;
  }

  .intro-right{
    min-height: 52vh;
  }
}
/* =========================
   ROY UPDATES (newsletter)
   ========================= */

.updates{
  background: #000;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.updates-inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.updates-title{
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.updates-subtitle{
  margin: 0 0 2.25rem;
  font-size: 1rem;
  color: var(--muted);
}

/* Form en 4 colonnes (Roy) */
.updates-form{
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 0.7fr;
  gap: 1rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 2.25rem;
}

.updates-form input{
  width: 100%;
  padding: 1.1rem 1rem;
  border: 1px solid #222;
  background: #fff;
  color: #000;
  outline: none;
  border-radius: 0; /* Roy: carré */
  font-size: 0.95rem;
}

.updates-form input::placeholder{
  color: #777;
}

.updates-form button{
  width: 100%;
  padding: 1.1rem 1rem;
  border: 0;
  background: #cfcfcf; /* Roy: bouton gris */
  color: #000;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.updates-form button:hover{
  filter: brightness(0.95);
}

/* Liens centrés (Instagram | Terms...) */
.updates-links{
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.updates-links a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  opacity: 0.9;
}

.updates-links .sep{
  opacity: 0.7;
}

/* Responsive : stack propre en mobile */
@media (max-width: 900px){
  .updates-form{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Footer minimal
   ========================= */

.site-footer-min{
  background: #000;
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
/* =========================
   CONTACT (Roy split + newsletter UI)
   ========================= */

.contact-split{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  background: #000;
}

/* gauche: identique intro */
.contact-left{
  background: #000;
  display: flex;
  align-items: center;
}

.contact-left-inner{
  width: 100%;
  max-width: 560px;
  padding: clamp(3.5rem, 6vw, 6rem);
  padding-left: clamp(3.5rem, 8vw, 8rem);
}

.contact-title{
  margin: 0 0 1.6rem;
  font-size: clamp(2.3rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-text{
  margin: 0 0 1.2rem;
  max-width: 520px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* droite: zone formulaire */
.contact-right{
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem);
}

.contact-form-wrap{
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.contact-form-title{
  margin: 0 0 0.75rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form-subtitle{
  margin: 0 0 2rem;
  color: var(--muted);
}

/* Form style newsletter */
.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 auto 2rem;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 1.1rem 1rem;
  border: 1px solid #222;
  background: #fff;
  color: #000;
  outline: none;
  border-radius: 0;
  font-size: 0.95rem;
}

.contact-form textarea{
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 160px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #777;
}

.contact-form button{
  grid-column: 1 / -1;
  width: 100%;
  padding: 1.1rem 1rem;
  border: 0;
  background: #cfcfcf;
  color: #000;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover{
  filter: brightness(0.95);
}

/* liens bas */
.contact-links{
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.contact-links a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
  opacity: 0.9;
}

.contact-links .sep{
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px){
  .contact-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-left{
    align-items: flex-start;
  }

  .contact-left-inner{
    max-width: 680px;
    padding: 3rem 1.5rem 2rem;
  }

  .contact-right{
    padding: 2rem 1.5rem 3rem;
  }

  .contact-form{
    grid-template-columns: 1fr;
  }
}
/* FIX GAP BETWEEN HEADER AND CONTACT SECTION */

main {
  margin-top: 0;
  padding-top: 0;
}

/* ===== FINAL FIX : CONTACT ===== */
.contact-page main {
  flex: 0 0 auto;
}
/* Contact – compensate fixed header (desktop only) */
@media (min-width: 900px) {
  .contact-page .contact-split {
    padding-top: 100px; /* ≈ hauteur réelle de ton header */
  }
/* Force icon color (Instagram / YouTube / Mail) */
.nav-social a {
  color: #fff;          /* ou var(--text) si tu as une variable */
  text-decoration: none;
}

/* =========================
   TERMS PAGE (Roy editorial)
   ========================= */

.terms-hero{
  background:#000;
  padding: clamp(6rem, 10vw, 8rem) 1.5rem 4rem;
}

.terms-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.terms-title{
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Content */
.terms-content{
  background:#000;
  padding: 3rem 1.5rem 6rem;
}

.terms-inner{
  max-width: 820px;
  margin: 0 auto;
}

.terms-inner h2{
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.terms-inner h3{
  margin: 2.5rem 0 0.8rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-inner p{
  margin: 0 0 1.2rem;
  line-height: 1.7;
  color: #eaeaea;
}

.terms-inner .muted{
  color: var(--muted);
}
