
:root{
  --bg:#000;
  --fg:#f3f3f3;
  --muted:#858585;
  --line:#1b1b1b;
  --yellow:#fff000;
  --side:clamp(22px,4vw,72px);
  --content:1480px;
}
*{box-sizing:border-box}
html{background:#000;scroll-behavior:smooth}
body{
  margin:0;
  background:#000;
  color:var(--fg);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
.wrap{width:min(var(--content),calc(100% - (var(--side) * 2)));margin:0 auto}

.site-head{
  position:sticky;top:0;z-index:50;
  background:rgba(0,0,0,.96);
  border-bottom:1px solid var(--line);
}
.head-inner{
  height:72px;
  display:flex;align-items:center;justify-content:space-between;
  gap:36px;
}
.brand{
  font-size:15px;
  font-weight:700;
  letter-spacing:.22em;
}
.nav{
  display:flex;align-items:center;gap:34px;
  font-size:11px;
  letter-spacing:.18em;
}
.nav a{transition:color .15s ease}
.nav a:hover{color:var(--yellow)}

/* HOME */
.home-hero{
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--line);
  padding:56px 0 46px;
}
.home-lockup{
  width:64%;
  max-width:1010px;
  margin:0 auto;
}
.home-lockup img{
  width:100%;
  margin:0 auto;
}
.home-projects{padding:48px 0 92px}
.project-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(36px,5vw,78px);
}
.project-card{
  border-top:1px solid var(--line);
  padding-top:28px;
  min-height:320px;
}
.project-title{
  position:relative;
  width:100%;
  min-height:190px;
}
.project-title img{
  width:100%;
  max-height:190px;
  object-fit:contain;
  object-position:left top;
}
.project-title .yellow{
  position:absolute;inset:0;
  opacity:0;
  transition:opacity .12s ease;
}
.project-card:hover .project-title .yellow,
.project-card:focus-visible .project-title .yellow{opacity:1}
.project-card:hover .project-title .white,
.project-card:focus-visible .project-title .white{opacity:0}
.project-rule{
  margin-top:26px;
  font-size:10px;
  letter-spacing:.22em;
  color:var(--muted);
}
.project-card:hover .project-rule{color:var(--yellow)}

/* SUBPAGES */
.sub-hero{
  min-height:510px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--line);
  padding:64px 0;
}
.sub-hero .wrap{
  display:flex;
  justify-content:center;
}
.sub-title-art{
  width:clamp(320px, 42vw, 488px);
  max-width:488px;
  margin:0 auto;
}
.sub-title-art img{
  width:100%;
  margin:auto;
  object-fit:contain;
  object-position:center center;
}

.category-intro{
  padding:76px 0 72px;
  border-bottom:1px solid var(--line);
}
.category-intro .wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
}
.category-label{
  margin-bottom:22px;
  font-size:10px;
  letter-spacing:.28em;
  color:var(--muted);
  text-align:left;
}
.category-title-art{
  width:clamp(220px, 26vw, 312px);
  max-width:312px;
  margin:0 0 42px 0;
}
.category-title-art img{
  width:100%;
  object-fit:contain;
  object-position:left top;
}
.category-copy{
  max-width:780px;
  margin:0;
  font-size:16px;
  line-height:1.9;
  letter-spacing:.035em;
  color:#cfcfcf;
  text-align:left;
}
.store-row{
  display:flex;flex-wrap:wrap;gap:14px;
  margin-top:38px;
  justify-content:flex-start;
}
.store-btn{
  border:1px solid #777;
  padding:13px 18px;
  font-size:10px;
  letter-spacing:.2em;
  transition:.15s ease;
}
.store-btn:hover{border-color:var(--yellow);color:var(--yellow)}

.section{
  padding:86px 0;
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:32px;margin-bottom:40px;
}
.section-kicker{
  font-size:10px;
  letter-spacing:.28em;
  color:var(--muted);
}
.section-title{
  margin:0;
  font-family:"S&S GreyHood Two","Arial Narrow",Arial,sans-serif;
  font-size:clamp(34px,4vw,58px);
  line-height:1.05;
  letter-spacing:.035em;
  font-weight:400;
}
.grid3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
}
.placeholder{
  aspect-ratio:4/5;
  border:1px solid var(--line);
  background:#050505;
  position:relative;
}
.placeholder.landscape{aspect-ratio:4/3}
.placeholder span{
  position:absolute;left:16px;bottom:14px;
  color:#666;
  font-size:9px;
  letter-spacing:.2em;
}
.meta{
  display:flex;justify-content:space-between;gap:20px;
  padding-top:13px;
  font-size:10px;
  letter-spacing:.16em;
  color:#999;
}

/* UKIYO */
.ukiyo-banner{
  width:100%;
  border-bottom:1px solid var(--line);
}
.ukiyo-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  width:min(var(--content),calc(100% - (var(--side) * 2)));
  margin:auto;
  border-bottom:1px solid var(--line);
}
.ukiyo-col{
  padding:72px 50px 72px 0;
}
.ukiyo-col + .ukiyo-col{
  border-left:1px solid var(--line);
  padding-left:50px;
  padding-right:0;
}
.ukiyo-col h2{
  margin:18px 0 24px;
  font-family:"S&S GreyHood Two","Arial Narrow",Arial,sans-serif;
  font-size:clamp(36px,4.5vw,64px);
  font-weight:400;
  letter-spacing:.04em;
  line-height:1;
}
.ukiyo-col p,
.legal-copy p{
  font-size:13px;
  line-height:1.9;
  letter-spacing:.03em;
  color:#c9c9c9;
}
.rights{
  margin-top:34px;padding-top:24px;
  border-top:1px solid var(--line);
}
.rights h3{
  margin:0 0 16px;
  font-size:10px;
  letter-spacing:.22em;
}
.rights p{font-size:12px;margin:0 0 10px}
.legal-grid{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:80px;
}
.legal-title{
  margin:0;
  font-family:"S&S GreyHood Two","Arial Narrow",Arial,sans-serif;
  font-size:clamp(34px,4vw,58px);
  line-height:1.05;
  letter-spacing:.04em;
  font-weight:400;
}

footer{
  min-height:74px;
  display:flex;align-items:center;justify-content:space-between;
  gap:30px;
  color:#686868;
  font-size:9px;
  letter-spacing:.17em;
}

@media(max-width:900px){
  .home-lockup{width:78%}
  .project-grid,.grid3{grid-template-columns:1fr}
  .project-card{min-height:0}
  .project-title{min-height:0}
  .project-title img{max-width:720px;max-height:none}
  .sub-title-art,.category-title-art{width:72%}
  .ukiyo-intro{grid-template-columns:1fr}
  .ukiyo-col{padding:56px 0}
  .ukiyo-col + .ukiyo-col{
    border-left:0;border-top:1px solid var(--line);
    padding:56px 0;
  }
  .legal-grid{grid-template-columns:1fr;gap:34px}
}
@media(max-width:620px){
  :root{--side:16px}
  .head-inner{height:58px}
  .brand{font-size:11px}
  .nav{gap:14px;font-size:8px;letter-spacing:.13em}
  .home-hero{min-height:430px;padding:34px 0}
  .home-lockup{width:96%} /* mobile stays large for readability */
  .home-projects{padding:34px 0 56px}
  .project-grid{gap:24px}
  .project-card{padding-top:20px}
  .sub-hero{min-height:360px;padding:44px 0}
  .sub-title-art,.category-title-art{width:88%}
  .category-intro{padding:54px 0 50px}
  .category-copy{font-size:14px;line-height:1.8}
  .section{padding:60px 0}
  .section-head{display:block}
  .section-title{margin-top:14px}
  .grid3{gap:20px}
  footer{flex-direction:column;align-items:flex-start;justify-content:center;padding:20px 0}
}

/* v8 unified category top layout */
.category-page .sub-hero{min-height:520px;display:flex;align-items:center;justify-content:center;text-align:center;padding:56px 0;border-bottom:1px solid #1b1b1b}
.category-page .sub-title-art{width:80% !important;max-width:820px !important;margin:0 auto !important;display:flex;align-items:center;justify-content:center}
.category-page .sub-title-art img{display:block;width:100% !important;height:auto !important;margin:0 auto !important;object-fit:contain;object-position:center center}
.category-page .category-intro{padding:76px 0 72px;border-bottom:1px solid #1b1b1b}
.category-page .category-title-art{width:60% !important;max-width:520px !important;margin:0 0 42px 0 !important}
@media(max-width:900px){.category-page .sub-title-art{width:86% !important}}
@media(max-width:620px){.category-page .sub-title-art{width:94% !important}}

@media (max-width: 900px){
  .sub-hero{min-height:420px;padding:52px 0;}
  .sub-title-art{width:min(72vw, 440px);}
  .category-title-art{width:min(62vw, 300px);}
  .category-copy{font-size:15px;line-height:1.85;}
}
@media (max-width: 640px){
  .sub-hero{min-height:340px;padding:44px 0;}
  .sub-title-art{width:min(78vw, 360px);}
  .category-title-art{width:min(68vw, 260px);margin-bottom:32px;}
  .store-row{gap:10px;}
}

/* v11 TRUE CENTER FIX: title PNGs are tightly cropped, no hidden transparent padding */
.sub-hero .wrap{
  width:100%;
  max-width:none;
  margin:0;
  padding:0 var(--side);
  display:flex;
  justify-content:center;
  align-items:center;
}
.sub-title-art{
  margin-left:auto !important;
  margin-right:auto !important;
  flex:0 0 auto;
}
.sub-title-art img{
  display:block;
  margin-left:auto !important;
  margin-right:auto !important;
}
/* lower section remains left aligned */
.category-intro .wrap{
  align-items:flex-start !important;
  text-align:left !important;
}
.category-label,.category-copy{ text-align:left !important; }
.category-title-art{ margin-left:0 !important; margin-right:auto !important; }
.store-row{ justify-content:flex-start !important; }


/* v12 final fix: top title truly centered, slightly smaller, body title left */
.category-page .sub-hero{min-height:520px;padding:56px 0;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:center;text-align:center;}
.category-page .sub-hero .wrap{width:100%;max-width:none;margin:0;padding:0 var(--side);display:flex;align-items:center;justify-content:center;}
.category-page .sub-title-art{width:min(48vw,656px) !important;max-width:656px !important;min-width:320px;margin:0 auto !important;display:flex;align-items:center;justify-content:center;text-align:center;}
.category-page .sub-title-art img{display:block;width:100% !important;height:auto !important;margin:0 auto !important;object-fit:contain;object-position:center center;}
.category-page .category-intro .wrap{display:flex;flex-direction:column;align-items:flex-start !important;text-align:left !important;}
.category-page .category-title-art{width:min(26vw,312px) !important;max-width:312px !important;margin:0 0 42px 0 !important;display:block;}
.category-page .category-title-art img{display:block;width:100%;height:auto;object-fit:contain;object-position:left top;}
.category-page .category-copy,.category-page .category-label{text-align:left !important;}
.category-page .store-row{justify-content:flex-start !important;}
@media(max-width:900px){.category-page .sub-title-art{width:min(68vw,520px) !important;max-width:520px !important;} .category-page .category-title-art{width:min(46vw,300px) !important;max-width:300px !important;}}
@media(max-width:620px){.category-page .sub-title-art{width:min(78vw,420px) !important;max-width:420px !important;} .category-page .category-title-art{width:min(62vw,260px) !important;max-width:260px !important;}}


/* v13 sharp title assets */
.sub-title-art img, .category-title-art img{
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  transform: translateZ(0);
}
