
/* =========================================================
   ANISH / KARMA X — V4 FIXES
   ========================================================= */

/* HERO: keep the oversized look, but never allow KARMA X to
   escape the right edge of its half of the screen. */
.hero-copy{
  width:calc(100% - 52px);
  max-width:calc(100% - 52px);
  overflow:visible;
}
.hero-copy h1{
  font-size:clamp(52px,7.1vw,118px);
  line-height:.8;
  letter-spacing:-.075em;
  white-space:nowrap;
  max-width:100%;
  margin-right:0;
}

/* At wide desktop widths the title remains dramatic without
   becoming wider than the 50% hero panel. */
.karma-half .hero-copy h1{
  font-size:clamp(50px,6.55vw,112px);
  letter-spacing:-.08em;
}

/* Make the central divider/edge details stay out of the title. */
.hero-center{pointer-events:none;z-index:5}
.hero-edge{z-index:4}

/* =========================================================
   V4 MEDIA-FIRST PRESS KIT
   ========================================================= */
.press{
  padding-top:120px;
}
.press-head h2{
  letter-spacing:-.085em;
}
.media-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  border-bottom:1px solid #aaa9a2;
  padding:0 0 14px;
  margin-bottom:18px;
}
.media-heading span{
  font-size:9px;
  letter-spacing:.2em;
  color:#666;
}
.media-heading h3{
  font:400 clamp(38px,5vw,72px)/.85 "Archivo Black",sans-serif;
  letter-spacing:-.065em;
  margin:0;
}
.asset-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.asset-card{
  position:relative;
  min-height:390px;
  overflow:hidden;
  display:block;
  background:#111;
  color:#fff;
  text-decoration:none;
}
.asset-card img{
  width:100%;
  height:100%;
  min-height:390px;
  display:block;
  object-fit:cover;
  transition:transform .8s cubic-bezier(.16,1,.3,1),filter .5s ease;
}
.asset-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.86),rgba(0,0,0,0) 65%);
}
.asset-card:hover img{
  transform:scale(1.055);
  filter:brightness(1.08);
}
.asset-card>div{
  position:absolute;
  z-index:2;
  left:15px;
  right:15px;
  bottom:15px;
  display:flex;
  justify-content:space-between;
  align-items:end;
}
.asset-card small{
  font-size:8px;
  letter-spacing:.17em;
}
.asset-card strong{
  font-size:8px;
  letter-spacing:.16em;
  border:1px solid rgba(255,255,255,.45);
  padding:8px 9px;
}
.logo-assets{
  display:grid;
  grid-template-columns:1.5fr .5fr;
  gap:10px;
  margin-top:10px;
}
.logo-box{
  min-height:250px;
  background:#f3f2ed;
  border:1px solid #aaa9a2;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.logo-box>span{
  font-size:8px;
  letter-spacing:.18em;
  color:#666;
}
.logo-box>small{
  font-size:9px;
  color:#777;
  max-width:380px;
}
.anish-wordmark{
  font:400 clamp(58px,10vw,140px)/.8 "Archivo Black",sans-serif;
  letter-spacing:-.075em;
}
.karma-logo-box{
  background:#f2e935;
}
.karma-logo-box img{
  width:min(420px,90%);
  max-height:120px;
  object-fit:contain;
  object-position:left center;
  filter:none;
}
.asset-downloads{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:8px;
}
.asset-downloads a{
  background:#0a0a0a;
  color:#fff;
  text-decoration:none;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  font-size:9px;
  letter-spacing:.16em;
  transition:.3s;
}
.asset-downloads a:hover{
  background:#292929;
  transform:translateY(-2px);
}
.download-row{
  margin-top:10px;
}

/* Mobile */
@media(max-width:900px){
  .hero-copy{
    width:calc(100% - 32px);
    max-width:calc(100% - 32px);
  }
  .hero-copy h1,
  .karma-half .hero-copy h1{
    font-size:clamp(52px,12vw,88px);
  }
  .asset-grid{
    grid-template-columns:1fr 1fr;
  }
  .asset-card,
  .asset-card img{
    min-height:360px;
  }
  .logo-assets{
    grid-template-columns:1fr;
  }
  .asset-downloads{
    min-height:150px;
  }
}
@media(max-width:560px){
  .hero-copy h1,
  .karma-half .hero-copy h1{
    font-size:clamp(48px,15vw,72px);
  }
  .asset-grid{
    grid-template-columns:1fr;
  }
  .asset-card,
  .asset-card img{
    min-height:460px;
  }
  .media-heading{
    display:block;
  }
  .media-heading h3{
    margin-top:18px;
  }
}
