:root {
  --bg: #f7f5ee;
  --fg: #14110f;
  --muted: #8a857c;
  --muted-bg: #ecebe4;
  --accent: #5cc5ef;
  --border: #d9d6cc;
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
strong { font-weight: 700; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 238, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 16px 40px; } }
.logo { font-family: var(--font-display); font-size: 18px; letter-spacing: -.02em; }
.nav-links { display: none; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a:hover { opacity: .6; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.btn-pill {
  background: var(--fg); color: var(--bg);
  padding: 8px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: opacity .2s;
}
.btn-pill:hover { opacity: .9; }

/* SECTIONS */
.section { border-bottom: 1px solid var(--border); padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

/* HERO */
.hero { padding: 48px 0; }
@media (min-width: 768px) { .hero { padding: 80px 0; } }
.hero-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
}
.hero-photo { background: var(--accent); padding: 24px; }
@media (min-width: 768px) { .hero-photo { padding: 40px; } }
.hero-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transform: scale(1); }
.hero-caption {
  margin-top: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--fg);
}
.dot { width: 8px; height: 8px; background: var(--fg); border-radius: 50%; }

.hero-title-wrap { display: flex; align-items: center; justify-content: center; }
.hero-title {
  font-family: var(--font-display);
  font-size: 18vw;
  line-height: .85;
  letter-spacing: -.04em;
}
@media (min-width: 900px) {
  .hero-title {
    font-size: 9rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

.hero-intro { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-intro p { max-width: 380px; font-size: 18px; line-height: 1.6; }
.tags {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}

/* ABOUT */
.about { background: var(--muted-bg); }
.huge-type {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 176px);
  line-height: .85; letter-spacing: -.05em;
}
.only-mobile { display: inline; }
@media (min-width: 768px) { .only-mobile { display: none; } }
.about-cols {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) {
  .about-cols { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.about-cols p { font-size: 16px; line-height: 1.7; }

/* WORK */
.work-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 48px;
}
.h-display {
  font-family: var(--font-display);
  font-size: 48px; line-height: .95; letter-spacing: -.03em;
}
@media (min-width: 768px) { .h-display { font-size: 72px; } }
.h-display.big { font-size: 48px; }
@media (min-width: 768px) { .h-display.big { font-size: 96px; line-height: .9; } }
.work-head p { display: none; max-width: 260px; }
@media (min-width: 768px) { .work-head p { display: block; } }

.work-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  grid-auto-rows: 240px;
}
@media (min-width: 768px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
}
.tile {
  position: relative; overflow: hidden; background: var(--muted-bg);
  border-radius: 20px;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
  border-radius: inherit;
}
.tile:hover img { transform: scale(1.05); }
.tile-info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px;
  color: var(--bg);
  background: linear-gradient(to top, rgba(20,17,15,.75), transparent);
  opacity: 0; transform: translateY(8px); transition: all .3s;
}
.tile:hover .tile-info { opacity: 1; transform: translateY(0); }
.tile-info span {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; opacity: .85;
}
.tile-info strong {
  display: block; margin-top: 4px;
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
}
@media (min-width: 768px) {
  .tile-lg { grid-column: span 2; grid-row: span 2; }
  .tile-wide { grid-column: span 2; }
}

/* SKILLS */
.skills { background: var(--accent); }
.skills-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28vw; line-height: .8;
  letter-spacing: -.05em;
  color: var(--bg);
}
@media (min-width: 768px) { .skills-title { font-size: 22rem; } }
.skills-list {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 8px 24px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -.03em;
}
@media (min-width: 768px) { .skills-list { font-size: 48px; } }

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.email {
  display: inline-block; margin-top: 40px;
  font-size: 20px; font-weight: 500;
  border-bottom: 2px solid var(--fg); padding-bottom: 4px;
}
.email:hover { color: var(--muted); }
@media (min-width: 768px) { .email { font-size: 28px; } }
.contact-info {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-self: end;
  font-size: 14px;
}
@media (min-width: 500px) { .contact-info { grid-template-columns: 1fr 1fr; } }
.plain li { margin-bottom: 4px; }
.plain a:hover { opacity: .6; }

/* FOOTER */
.footer { padding: 32px 0; }
.footer-inner {
  display: flex; flex-direction: column; gap: 16px;
  font-size: 12px; color: var(--muted);
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  
}
.video-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
gap:40px;

}

.video-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.video-card:hover{

transform:translateY(-8px);

}

.video-card iframe{
    width:100%;
    aspect-ratio:9/16;
    border:0;
    display:block;
}

.video-card h3{

padding:20px 20px 5px;
font-family:var(--font-display);
font-size:28px;

}

.video-card p{

padding:0 20px 25px;
color:var(--muted);

}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.video-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.video-card:hover{
    transform:translateY(-10px);
}

.video-card iframe{
    width:100%;
    height:620px;
    border:0;
}

.video-card h3{
    padding:18px 20px 5px;
    font-family:var(--font-display);
    font-size:24px;
}

.video-card p{
    padding:0 20px 22px;
    color:var(--muted);
}
/* ===== VIDEO GRID ===== */

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

/* Tablette */
@media (max-width:1100px){
    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:768px){
    .video-grid{
        grid-template-columns:1fr;
    }
}