:root{
  --bg:#0c0b0a;
  --bg-soft:#15120f;
  --text:#f1ede6;
  --muted:#a69f95;
  --line:rgba(255,255,255,.12);
  --gold:#c8a96a;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"DM Sans",sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}

.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 34px;
  mix-blend-mode:difference;
  color:white;
  pointer-events:none;
}
.site-header a{pointer-events:auto}
.brand{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:600;
}
nav{display:flex;gap:28px}
nav a{
  font-size:12px;
  letter-spacing:.08em;
  opacity:.78;
}
nav a:hover{opacity:1}

.scrub-section{
  position:relative;
  height:500vh;
  background:#000;
}
.scrub-stage{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;
  background:#000;
}
#heroVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
}
.video-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.46),rgba(0,0,0,.08) 46%,rgba(0,0,0,.12)),
    linear-gradient(0deg,rgba(0,0,0,.28),transparent 45%);
  pointer-events:none;
}
.hero-copy{
  position:absolute;
  left:5.5vw;
  bottom:10vh;
  width:min(720px,74vw);
  z-index:2;
  text-shadow:0 2px 20px rgba(0,0,0,.28);
}
.eyebrow,.kicker{
  margin:0 0 18px;
  font-size:11px;
  letter-spacing:.22em;
  color:var(--gold);
}
.hero-copy h1{
  margin:0;
  font-family:"Playfair Display",serif;
  font-weight:500;
  font-size:clamp(34px,4.2vw,68px);
  line-height:.95;
  letter-spacing:-.03em;
  max-width:760px;
}
.hero-subtitle{
  max-width:560px;
  margin:26px 0 0;
  font-size:clamp(16px,1.5vw,22px);
  line-height:1.45;
  color:rgba(255,255,255,.86);
}
.scroll-hint{
  position:absolute;
  right:34px;
  bottom:34px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:10px;
  letter-spacing:.16em;
}
.scroll-hint i{
  width:48px;
  height:1px;
  background:rgba(255,255,255,.6);
  position:relative;
  overflow:hidden;
}
.scroll-hint i::after{
  content:"";
  position:absolute;
  inset:0;
  background:white;
  transform:translateX(-100%);
  animation:scan 1.8s infinite;
}
@keyframes scan{to{transform:translateX(100%)}}
.progress-track{
  position:absolute;
  left:0;right:0;bottom:0;
  height:2px;
  background:rgba(255,255,255,.18);
}
.progress-fill{
  width:0%;
  height:100%;
  background:var(--gold);
}

.section-pad{
  max-width:var(--max);
  margin:auto;
  padding:120px 6vw;
}
.intro{
  min-height:72vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-bottom:1px solid var(--line);
}
.intro h2,
.manifesto h2,
.achievements h2,
.contact h2{
  max-width:1050px;
  margin:0;
  font-family:"Playfair Display",serif;
  font-size:clamp(42px,6vw,88px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:-.035em;
}
.lead{
  width:min(720px,100%);
  margin:34px 0 0 auto;
  color:var(--muted);
  font-size:20px;
  line-height:1.65;
}

.feature-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:1px;
  background:var(--line);
  padding-top:0;
  padding-bottom:0;
}
.feature-card{
  min-height:520px;
  background:var(--bg);
  padding:56px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.feature-card.large{
  grid-row:span 2;
  min-height:1041px;
}
.card-index{
  font-family:"Playfair Display",serif;
  font-size:34px;
  color:var(--gold);
}
.feature-card h3{
  margin:0 0 18px;
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,4vw,62px);
  font-weight:500;
  line-height:1;
}
.feature-card p{
  color:var(--muted);
  max-width:560px;
  font-size:17px;
  line-height:1.6;
}
.text-link{
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.manifesto{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  border-bottom:1px solid var(--line);
}
.manifesto-copy>p{
  color:var(--muted);
  font-size:21px;
  line-height:1.65;
  margin-top:52px;
}
.role-line{
  margin-top:50px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.role-line span{
  border:1px solid var(--line);
  padding:10px 14px;
  border-radius:100px;
  font-size:12px;
  letter-spacing:.06em;
}

.achievements{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  border-bottom:1px solid var(--line);
}
.achievement-list{
  border-top:1px solid var(--line);
}
.achievement-list div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:24px;
  align-items:center;
  border-bottom:1px solid var(--line);
  min-height:94px;
}
.achievement-list span{
  color:var(--gold);
  font-size:12px;
}
.achievement-list p{
  margin:0;
  font-size:18px;
}

.contact{
  min-height:80vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.cta{
  margin-top:46px;
  display:inline-flex;
  width:max-content;
  padding:16px 22px;
  border:1px solid var(--gold);
  border-radius:100px;
  color:var(--text);
  transition:.25s ease;
}
.cta:hover{
  background:var(--gold);
  color:#17120d;
}
.contact-note{
  margin-top:18px;
  color:var(--muted);
  font-size:12px;
}
footer{
  border-top:1px solid var(--line);
  padding:28px 6vw 42px;
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

@media (max-width:860px){
  .site-header{padding:18px}
  nav{display:none}
  .hero-copy{left:20px;bottom:15vh;width:85vw}
  .scroll-hint{right:20px;bottom:20px}
  .scrub-section{height:420vh}
  .section-pad{padding:86px 22px}
  .feature-grid{display:block;background:none}
  .feature-card,.feature-card.large{
    min-height:520px;
    border-bottom:1px solid var(--line);
    padding:42px 22px;
  }
  .manifesto,.achievements{
    grid-template-columns:1fr;
    gap:28px;
  }
  .manifesto-copy>p{margin-top:0}
  footer{padding:24px 22px 36px}
}


.section-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.3fr);
  gap:5vw;
  align-items:end;
  margin-bottom:56px;
}
.section-heading h2{
  grid-column:1 / -1;
  margin:0;
  font-family:"Playfair Display",serif;
  font-size:clamp(46px,6vw,86px);
  line-height:1;
  font-weight:500;
  letter-spacing:-.035em;
}
.section-heading>p:last-child{
  grid-column:2;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  margin:0;
}

.film-feature{
  border-bottom:1px solid var(--line);
}
.film-frame{
  position:relative;
  aspect-ratio:16 / 9;
  background:#050505;
  overflow:hidden;
  border:1px solid var(--line);
}
.film-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.film-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-top:28px;
}

.design-archive{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.gallery figure{
  margin:0;
  grid-column:span 4;
  background:var(--bg-soft);
  overflow:hidden;
  border:1px solid var(--line);
}
.gallery figure.wide{grid-column:span 8}
.gallery figure.tall{grid-column:span 4}
.gallery img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  filter:saturate(.94) contrast(1.02);
  transition:transform .55s ease, filter .55s ease;
}
.gallery figure.tall img{height:620px}
.gallery figure:hover img{
  transform:scale(1.025);
  filter:saturate(1) contrast(1.04);
}
.gallery figcaption{
  padding:14px 16px 16px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.contact-lead{
  margin-left:0;
  max-width:760px;
}

@media (max-width:860px){
  .section-heading{
    grid-template-columns:1fr;
    gap:18px;
  }
  .section-heading h2,
  .section-heading>p:last-child{
    grid-column:1;
  }
  .film-actions{
    align-items:flex-start;
    flex-direction:column;
  }
  .gallery{
    display:block;
  }
  .gallery figure{
    margin-bottom:14px;
  }
  .gallery img,
  .gallery figure.tall img{
    height:auto;
    max-height:none;
    object-fit:contain;
    background:#0d0d0d;
  }
}


/* V3 — compact boutique layout */
.design-archive{
  padding-top:88px;
  padding-bottom:88px;
}
.design-archive .section-heading{
  max-width:850px;
  margin-bottom:38px;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  align-items:start;
}
.gallery figure,
.gallery figure.wide,
.gallery figure.tall{
  grid-column:span 1;
  margin:0;
  background:var(--bg-soft);
  border:1px solid var(--line);
}
.gallery figure.wide{
  grid-column:span 2;
}
.gallery img,
.gallery figure.tall img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}
.gallery figure.wide img{
  height:280px;
}
.gallery figcaption{
  padding:10px 12px 12px;
  font-size:10px;
}
.section-pad{
  padding-top:92px;
  padding-bottom:92px;
}
.intro{
  min-height:54vh;
}
.feature-card{
  min-height:390px;
  padding:42px;
}
.feature-card.large{
  min-height:781px;
}
.manifesto,
.achievements{
  gap:6vw;
}
.contact{
  min-height:58vh;
}

@media (max-width:980px){
  .gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .gallery figure.wide{
    grid-column:span 2;
  }
}
@media (max-width:620px){
  .gallery{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .gallery figure.wide{
    grid-column:span 2;
  }
  .gallery img,
  .gallery figure.tall img,
  .gallery figure.wide img{
    height:190px;
    object-fit:cover;
  }
  .gallery figcaption{
    font-size:9px;
    padding:8px 9px 9px;
  }
}

/* V4 — denser mini-gallery */
.gallery{
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.gallery figure.wide{grid-column:span 2}
.gallery img,
.gallery figure.tall img,
.gallery figure.wide img{
  height:220px;
  object-fit:cover;
}
.gallery figcaption{
  font-size:9px;
  padding:8px 10px 10px;
}
@media (max-width:1100px){
  .gallery{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media (max-width:760px){
  .gallery{grid-template-columns:repeat(2,minmax(0,1fr));}
  .gallery img,
  .gallery figure.tall img,
  .gallery figure.wide img{height:180px;}
}


/* V6 — Creative Experience */
.creative-experience{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.experience-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.experience-card{
  border:1px solid var(--line);
  background:var(--bg-soft);
}
.experience-video{
  position:relative;
  aspect-ratio:16 / 9;
  background:#050505;
}
.experience-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.experience-meta{
  padding:22px;
}
.experience-meta h3{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:28px;
  font-weight:500;
}
.experience-meta p{
  color:var(--muted);
  line-height:1.55;
}
.source-note{
  margin:18px 0 0;
  color:var(--muted);
  font-size:11px;
  line-height:1.5;
}
@media (max-width:760px){
  .experience-grid{
    grid-template-columns:1fr;
  }
}

/* iOS/Safari hero-video fallback */
#heroVideo{background:#000 center center / cover no-repeat;}
#heroVideo.video-error{opacity:0;}


/* Touch-device hero scrub fallback */
.mobile-scrub-frame{
  display:none;
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
}
.touch-scrub #heroVideo{
  visibility:hidden;
}
.touch-scrub .mobile-scrub-frame{
  display:block;
}
@media (pointer: coarse){
  .scrub-section{
    height:360vh;
  }
}
