*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050505;
  color:#f5f1ea;
  font-family:Georgia, serif;
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   LARGEUR GLOBALE
========================= */

.section,
.site-header,
.site-footer,
.hero{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:40px 32px;
}

.divider{
  border-top:1px solid rgba(255,255,255,.08);
}

/* =========================
   HEADER
========================= */

.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  font-size:28px;
  letter-spacing:.04em;
}

.nav a{
  margin-left:28px;
  font-family:Arial,sans-serif;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}

/* =========================
   TYPO
========================= */

h1{
  font-size:74px;
  font-weight:400;
  line-height:1.03;
}

h2{
  font-size:46px;
  font-weight:400;
  margin-bottom:36px;
}

h3{
  font-size:14px;
  font-weight:400;
}

p{
  font-family:Arial,sans-serif;
  color:rgba(255,255,255,.72);
}

.eyebrow{
  font-family:Arial,sans-serif;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#c99762;
  margin-bottom:22px;
}

/* =========================
   BUTTON
========================= */

.btn{
  display:inline-block;
  padding:14px 28px;
  border:1px solid #c99762;
  border-radius:999px;
  font-family:Arial,sans-serif;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#c99762;
  transition:.25s ease;
}

.btn:hover{
  background:#c99762;
  color:#050505;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:88vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-copy p{
  max-width:520px;
  margin:28px 0 36px;
}

.hero-media{
  height:620px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  background:#000;
}

.hero-media video,
.hero-media img{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%,-50%) scale(1.12);
}

/* =========================
   PROJECTS
========================= */

.projects-grid{
  display:grid;
  grid-template-columns:1fr 1.7fr 1fr;
  grid-template-rows:430px 390px;
  gap:18px;
}

.tile{
  position:relative;
  overflow:hidden;
  background:#111;
  border-radius:18px;
}

.tile img,
.tile video{
  width:100%;
  height:100%;
  object-fit:cover;
 ;
}

.tile:hover img,
.tile:hover video{
  transform:scale(1.03);
}

/* TEXTE */

.intro{
  grid-column:2;
  grid-row:1;
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.intro h2{
  font-size:58px;
  line-height:1.02;
  margin-bottom:36px;
}

/* POSITIONS */

.video-large{grid-column:1;grid-row:1;}
.lamp{grid-column:3;grid-row:1;}
.backstage{grid-column:1;grid-row:2;}
.vitrine-main{grid-column:2;grid-row:2;}
.vitrine-side{grid-column:3;grid-row:2;}

/* CADRAGES */

.video-large video{
  object-fit:cover;
  object-position:center center;
  transform:scale(1.16);
}

.lamp img{
  object-position:center top;
}

.vitrine-main img{
  object-fit:contain;
  background:#111;
}

/* PLAY BUTTON */

.play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:58px;
  height:58px;
  border:2px solid rgba(255,255,255,.9);
  border-radius:50%;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  background:rgba(0,0,0,.25);
  z-index:3;
}

/* CAPTION */

.caption{
  position:absolute;
  left:18px;
  bottom:16px;
  z-index:3;
  color:#fff;
  font-size:12px;
  letter-spacing:.14em;
  font-family:Arial,sans-serif;
}

/* =========================
   SKILLS
========================= */

.skills{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.skill h3{
  font-family:Arial,sans-serif;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#c99762;
  margin-bottom:12px;
}

.skill p{
  color:rgba(255,255,255,.72);
}

/* =========================
   ABOUT
========================= */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-media{
  height:380px;
  border-radius:24px;
  overflow:hidden;
  background:#111;
}

/* =========================
   CONTACT
========================= */

.contact h2{
  font-size:64px;
  margin-bottom:18px;
}

.contact p{
  margin-bottom:28px;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  display:flex;
  justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.08);
  font-family:Arial,sans-serif;
  font-size:12px;
  color:rgba(255,255,255,.45);
}

/* =========================
   TABLETTE
========================= */

@media(max-width:1024px){

  .section,
  .site-header,
  .site-footer,
  .hero{
    max-width:100%;
    padding:32px 24px;
  }

  .hero{
    grid-template-columns:1fr;
    gap:36px;
    min-height:auto;
  }

  .hero-media{
    height:520px;
  }

  .projects-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
    gap:16px;
  }

  .intro,
  .video-large,
  .lamp,
  .backstage,
  .vitrine-main,
  .vitrine-side{
    grid-column:auto;
    grid-row:auto;
    min-height:340px;
  }

  .about{
    grid-template-columns:1fr;
  }

  .skills{
    grid-template-columns:repeat(2,1fr);
  }

  h1{font-size:56px;}
  .intro h2{font-size:42px;}
  .contact h2{font-size:52px;}

  .nav{
    display:none;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .section,
  .site-header,
  .site-footer,
  .hero{
    padding:24px 18px;
  }

  .hero{
    gap:24px;
  }

  .hero-media{
    height:380px;
    order:-1;
  }

  h1{
    font-size:40px;
    line-height:1.08;
  }

  h2{
    font-size:34px;
  }

  .hero-copy p{
    font-size:16px;
    margin:20px 0 28px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .projects-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .tile{
    min-height:280px;
  }

  .intro{
    padding:24px;
  }

  .intro h2{
    font-size:32px;
    margin-bottom:24px;
  }

  .skills{
    grid-template-columns:1fr;
  }

  .about-media{
    height:300px;
  }

  .contact h2{
    font-size:38px;
  }

  .play{
    width:46px;
    height:46px;
    font-size:20px;
  }
}