:root{
  --bg-warm: #d4cbc2;
  --ink: #121212;
  --muted: rgba(18,18,18,.68);
  --dark: #121212;
  --dark-2: #0f0f0f;
  --light: #f3f1ee;
  --radius: 28px;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

/* ---------- HERO ---------- */
.hero{
  background: var(--bg-warm);
  padding: 56px 0 64px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.tiny-top{
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(18,18,18,.85);
  margin-bottom: 28px;
}

.tiny-name sup{
  font-size: 9px;
  vertical-align: super;
}

.hero-title{
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  margin: 0 0 18px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.hero-title sup{
  font-size: 14px;
  vertical-align: super;
  margin-left: 6px;
}

.hero-copy{
  padding-top: 8px;
}

.lead{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(18,18,18,.7);
  max-width: 32ch;
}

.sublead{
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(18,18,18,.65);
  max-width: 44ch;
  margin-top: 210px;
}

.tiny-bottom{
  margin-top: 180px;
  font-size: 12px;
  color: rgba(18,18,18,.8);
}

.dot{
  font-size: 10px;
  margin-left: 8px;
  opacity: .75;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18,18,18,.92);
  color: #fff;
  text-decoration:none;
  font-size: 12px;
  letter-spacing: .01em;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  transition: transform .15s ease, filter .15s ease;
}

.pill:hover{ transform: translateY(-1px); }
.arrow{ opacity: .9; }

.hero-right{
  display:flex;
  justify-content: flex-end;
}

.portrait-card{
  width: min(320px, 100%);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.15);
}

/* ---------- COLLECTIONS (horizontal row of 3) ---------- */
.collections{
  background: var(--dark);
  color: var(--light);

  display: flex;
  justify-content: center;     /* center the row */
  align-items: flex-start;
  flex-wrap: wrap;             /* prevents overflow */

  gap: 80px;                   /* even spacing */
  padding: 120px 6vw;
}

/* each collection becomes an equal-width card */
.collection{
  flex: 0 1 360px;             /* preferred width */
  max-width: 360px;
  width: 100%;
}

/* inside the horizontal row, .wrap should not be 1100px */
.collections .wrap{
  width: 100%;
  margin: 0;
}

/* you currently only have .work-left (no right column) */
.collections .work-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.collections .work-left{
  max-width: 44ch;
}

/* ---------- WORK TEXT STYLES (inside each collection) ---------- */
.work-title{
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  opacity: .9;
}

.meta{
  font-size: 10px;
  letter-spacing: .08em;
  opacity: .65;
  margin-bottom: 16px;
}

.work-subtitle{
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 600;
}

.work-text{
  margin: 0 0 18px;
  font-size: 11px;
  line-height: 1.7;
  opacity: .72;
  max-width: 44ch;
}

.pill-light{
  background: rgba(255,255,255,.12);
  color: var(--light);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.12);
}

.mini-shot{
  margin-top: 26px;
  width: 210px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  opacity: .95;
}

/* Optional: if you later re-add right-side images, keep these */
.work-right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.shot{
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  background: var(--dark-2);
}

.shot-a,
.shot-b{
  aspect-ratio: 4 / 3;
}

.shot-b{
  transform: translateY(-10px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-right{ justify-content: flex-start; }
  .sublead{ margin-top: 18px; }
  .tiny-bottom{ margin-top: 22px; }

  .collections{
    gap: 56px;
    padding: 80px 6vw;
  }

  .collection{
    flex-basis: 520px;
    max-width: 520px;
  }

  .shot-b{ transform: none; }
}
/* ---------- CASE STUDY PAGES ---------- */
.case{
  background: var(--dark);
  color: var(--light);
}

.case a{ color: inherit; }

.case-top{
  padding: 26px 0 18px;
  position: sticky;
  top: 0;
  background: rgba(18,18,18,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  z-index: 20;
}

.case-topbar{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 18px;
  align-items: center;
}

.case-back{
  text-decoration: none;
  font-size: 12px;
  opacity: .82;
}
.case-back:hover{ opacity: 1; }

.case-kicker{
  font-size: 10px;
  letter-spacing: .14em;
  opacity: .6;
  margin-bottom: 6px;
}

.case-title{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.case-meta{
  text-align: right;
  font-size: 11px;
  opacity: .72;
  line-height: 1.5;
}

.case-intro{
  padding: 44px 0 18px;
}

.case-introgrid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.case-lead{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 54ch;
  opacity: .9;
}

.case-sub{
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  max-width: 62ch;
  opacity: .68;
}

.case-hero{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  background: var(--dark-2);
  aspect-ratio: 16 / 10;
}

.case-gallery{
  padding: 28px 0 90px;
}

.gallery-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}

.gallery-title{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  opacity: .9;
}

.gallery-note{
  margin: 0;
  font-size: 15px;
  opacity: .55;
}

/* Macro gallery grid */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tile{
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark-2);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  aspect-ratio: 4 / 3; /* change to 1/1 if you prefer square */
  outline: 1px solid rgba(255,255,255,.06);
  transition: transform .18s ease, outline-color .18s ease, filter .18s ease;
}

.tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.tile:hover{
  transform: translateY(-2px);
  outline-color: rgba(255,255,255,.14);
  filter: brightness(1.03);
}

.case-footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}

.case-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  opacity: .78;
}

/* Responsive */
@media (max-width: 980px){
  .case-topbar{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .case-meta{ text-align: left; }

  .case-introgrid{
    grid-template-columns: 1fr;
  }

  .grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tile{
    aspect-ratio: 16 / 10;
  }
}

