@font-face{
  font-family:'Sansation';
  src:url('/fonts/Sansation-Regular.ttf') format('truetype');
  font-style:normal;
  font-weight:400;
  font-display:swap;
}
@font-face{
  font-family:'Sansation';
  src:url('/fonts/Sansation-Light.ttf') format('truetype');
  font-style:normal;
  font-weight:300;
  font-display:swap;
}
@font-face{
  font-family:'Sansation';
  src:url('/fonts/Sansation-Bold.ttf') format('truetype');
  font-style:normal;
  font-weight:700;
  font-display:swap;
}

:root{
  --bg:#000;
  --text:#f2f2f2;
  --muted:#7f7f7f;
  --line:#252525;
  --heading:'Sansation',sans-serif;
  --body:Calibri,Arial,sans-serif;
}

*{box-sizing:border-box}
html{background:var(--bg);scroll-behavior:smooth}
body{
  margin:0;
  min-width:320px;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:10;
  height:92px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 42px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{justify-self:start;width:156px}
.brand img{width:100%;height:auto}
.section-name{
  font-family:var(--heading);
  font-size:11px;
  letter-spacing:.28em;
}
.back-link{
  justify-self:end;
  font-size:10px;
  letter-spacing:.18em;
  color:#8e8e8e;
  transition:color .2s ease;
}
.back-link:hover{color:#fff}

.intro{
  min-height:100svh;
  padding:150px 42px 58px;
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(240px,.45fr);
  grid-template-rows:auto 1fr auto;
  column-gap:50px;
  border-bottom:1px solid var(--line);
}
.intro__eyebrow{
  grid-column:1 / -1;
  font-size:10px;
  letter-spacing:.2em;
  color:#777;
}
.intro h1{
  align-self:center;
  margin:0;
  font-family:var(--heading);
  font-weight:300;
  font-size:clamp(78px,13vw,210px);
  line-height:.75;
  letter-spacing:-.055em;
}
.intro__lead{
  align-self:center;
  margin:0;
  font-size:clamp(16px,1.35vw,22px);
  line-height:1.55;
  color:#aaa;
}
.intro__scroll{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  padding-top:30px;
  border-top:1px solid var(--line);
  font-size:9px;
  letter-spacing:.17em;
  color:#707070;
}
.intro__scroll span{font-size:16px;color:#ccc}

.collection{
  padding:120px 42px 60px;
}
.collection__head{
  display:grid;
  grid-template-columns:.45fr 1fr 1fr;
  gap:40px;
  align-items:start;
  padding-bottom:90px;
}
.collection__index{
  margin:0;
  font-size:9px;
  letter-spacing:.17em;
  color:#6d6d6d;
}
.collection__head h2{
  margin:0;
  font-family:var(--heading);
  font-weight:300;
  font-size:clamp(42px,5vw,80px);
  line-height:.95;
  letter-spacing:-.035em;
}
.collection__head > p:last-child{
  margin:3px 0 0;
  max-width:420px;
  color:#858585;
  line-height:1.55;
  font-size:14px;
}

.project-slots{
  border-top:1px solid var(--line);
}
.project-slot{
  min-height:210px;
  display:grid;
  grid-template-columns:90px 1fr auto;
  align-items:center;
  gap:34px;
  border-bottom:1px solid var(--line);
  opacity:.72;
  transition:opacity .25s ease,padding .25s ease;
}
.project-slot:hover{
  opacity:1;
  padding-left:8px;
}
.project-slot__number{
  font-size:10px;
  color:#616161;
  font-variant-numeric:tabular-nums;
}
.project-slot h3{
  margin:0 0 9px;
  font-family:var(--heading);
  font-weight:300;
  font-size:clamp(34px,4vw,62px);
  letter-spacing:-.025em;
}
.project-slot p{
  margin:0;
  color:#707070;
  font-size:11px;
  letter-spacing:.04em;
}
.project-slot__status{
  font-size:9px;
  letter-spacing:.16em;
  color:#555;
}

.archive-preview{
  min-height:70svh;
  padding:100px 42px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:60px;
  border-bottom:1px solid var(--line);
}
.archive-preview__eyebrow{
  margin:0 0 26px;
  font-size:9px;
  letter-spacing:.18em;
  color:#666;
}
.archive-preview h2{
  margin:0;
  font-family:var(--heading);
  font-weight:300;
  font-size:clamp(72px,10vw,155px);
  line-height:.76;
  letter-spacing:-.05em;
}
.archive-preview__note{
  max-width:330px;
  margin:0 0 5px;
  color:#747474;
  font-size:13px;
  line-height:1.5;
}

footer{
  min-height:150px;
  padding:40px 42px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  color:#575757;
  font-size:9px;
  letter-spacing:.16em;
}

/* subtle entrance only — no decorative motion */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
}

@media (max-width:760px){
  .site-header{
    height:74px;
    padding:0 18px;
    grid-template-columns:1fr auto;
  }
  .brand{width:126px}
  .section-name{display:none}
  .back-link{font-size:8px;letter-spacing:.12em}

  .intro{
    min-height:100svh;
    padding:120px 18px 32px;
    display:flex;
    flex-direction:column;
    gap:34px;
  }
  .intro__eyebrow{margin-bottom:auto}
  .intro h1{
    font-size:clamp(68px,24vw,112px);
    line-height:.8;
  }
  .intro__lead{
    font-size:15px;
  }
  .intro__scroll{
    width:100%;
    margin-top:auto;
  }

  .collection{padding:78px 18px 30px}
  .collection__head{
    display:block;
    padding-bottom:55px;
  }
  .collection__index{margin-bottom:26px}
  .collection__head h2{margin-bottom:30px}
  .collection__head > p:last-child{font-size:13px}

  .project-slot{
    min-height:170px;
    grid-template-columns:34px 1fr;
    gap:14px;
  }
  .project-slot__status{display:none}
  .project-slot h3{font-size:34px}
  .project-slot p{font-size:10px;line-height:1.45}

  .archive-preview{
    min-height:62svh;
    padding:78px 18px 34px;
    display:block;
  }
  .archive-preview h2{font-size:clamp(70px,24vw,108px)}
  .archive-preview__note{
    margin-top:50px;
    font-size:12px;
  }

  footer{
    padding:30px 18px;
    min-height:110px;
  }
}
