
:root{
  --bg:#050608;
  --bg2:#090b11;
  --text:#f2f1ed;
  --muted:#9c9aa3;
  --line:rgba(255,255,255,.12);
  --glow:rgba(194,211,255,.82);
  --warm:rgba(255,195,127,.72);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  min-height:100vh;
  color:var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(44,62,106,.16), transparent 32rem),
    radial-gradient(circle at 80% 30%, rgba(112,43,22,.08), transparent 30rem),
    linear-gradient(180deg,#050608 0%,#070910 45%,#040506 100%);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:.01em;
}
body::before{
  content:"";
  position:fixed;inset:0;pointer-events:none;z-index:-1;
  opacity:.17;
  background-image:
    radial-gradient(circle at 10% 20%,#fff 0 1px,transparent 1.4px),
    radial-gradient(circle at 72% 18%,#fff 0 1px,transparent 1.2px),
    radial-gradient(circle at 42% 78%,#fff 0 .8px,transparent 1.2px),
    radial-gradient(circle at 91% 64%,#fff 0 1px,transparent 1.4px);
  background-size:170px 170px,230px 230px,300px 300px,260px 260px;
}
.stars{
  position:fixed;inset:0;pointer-events:none;z-index:-1;overflow:hidden;
}
.stars::before,.stars::after{
  content:"";position:absolute;inset:-20%;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(190,214,255,.8) 0 .7px, transparent 1.3px);
  background-size:190px 190px,310px 310px;
  opacity:.12;
  animation:drift 42s linear infinite;
}
.stars::after{transform:scale(.7);opacity:.08;animation-duration:65s}
@keyframes drift{to{transform:translate3d(4%,-5%,0)}}

a{color:inherit;text-decoration:none}
.site-header{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  padding:20px clamp(18px,4vw,52px);
  background:linear-gradient(180deg,rgba(5,6,8,.94),rgba(5,6,8,.55),transparent);
  backdrop-filter:blur(10px);
}
.brand{font-size:.85rem;font-weight:800;letter-spacing:.26em}
nav{display:flex;gap:24px;color:#c7c6cb;font-size:.9rem}
nav a:hover,.back-link:hover{color:#fff}
.menu-button{display:none;border:0;background:none;color:white;font-size:1.5rem}

main{width:min(1400px,100%);margin:0 auto;padding:0 clamp(18px,4vw,52px)}
.hero{
  min-height:72vh;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
  max-width:900px;padding:80px 0 70px;
}
.eyebrow{margin:0 0 10px;color:#a9a8b2;font-size:.68rem;font-weight:800;letter-spacing:.26em;text-transform:uppercase}
.hero h1,.collection-intro h1{
  margin:0;font-family:Georgia,"Times New Roman",serif;font-weight:400;
  font-size:clamp(3rem,9vw,7.7rem);line-height:.88;letter-spacing:-.055em;
  text-wrap:balance;
}
.hero-copy{max-width:560px;margin:28px 0;color:#aaa8af;font-size:clamp(1rem,2vw,1.18rem);line-height:1.7}
.ghost-button{
  display:inline-flex;align-items:center;min-height:50px;padding:0 18px;
  border:1px solid var(--line);border-radius:999px;color:#e9e8ea;font-size:.88rem;
  background:rgba(255,255,255,.025);transition:.25s ease;
}
.ghost-button:hover{border-color:rgba(255,255,255,.35);background:rgba(255,255,255,.06)}

.archive{padding:80px 0}
.section-heading{margin-bottom:28px}
.section-heading h2{margin:0;font-family:Georgia,serif;font-size:clamp(2rem,5vw,4rem);font-weight:400}

.collection-grid{
  display:grid;grid-template-columns:repeat(12,1fr);gap:18px;
}
.collection-card{
  position:relative;grid-column:span 6;min-height:clamp(360px,54vw,700px);
  overflow:hidden;border:1px solid var(--line);border-radius:22px;background:#0a0b0f;
  isolation:isolate;box-shadow:0 30px 70px rgba(0,0,0,.28);
}
.collection-card:nth-child(3n){grid-column:span 12;min-height:clamp(380px,58vw,720px)}
.collection-card img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.2,.7,.2,1),filter .4s ease;
}
.collection-card::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(circle at 50% 48%,rgba(0,0,0,.05),rgba(0,0,0,.58) 72%),
    linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.55));
}
.collection-card-content{
  position:absolute;inset:0;z-index:2;display:grid;place-content:center;text-align:center;padding:26px;
}
.collection-card h3{
  margin:0;font-family:Georgia,serif;font-size:clamp(2.2rem,6vw,6rem);font-weight:400;letter-spacing:-.045em;
  text-shadow:0 4px 30px rgba(0,0,0,.8);
}
.collection-card p{margin:8px 0 0;color:#d2d0d4;font-size:.7rem;font-weight:800;letter-spacing:.26em;text-transform:uppercase}
.collection-card:hover img{transform:scale(1.025);filter:brightness(.86)}

.ad-slot{
  border:1px dashed rgba(255,255,255,.12);
  background:rgba(255,255,255,.018);
  color:#706f76;display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;border-radius:14px;
}
.ad-slot span{font-size:.58rem;letter-spacing:.22em}
.ad-slot small{font-size:.7rem;margin-top:5px;opacity:.62}
.ad-wide{min-height:112px;margin:26px 0 16px}

.collection-page{padding-bottom:80px}
.collection-intro{padding:72px 0 42px;max-width:950px}
.collection-intro h1{font-size:clamp(3.2rem,10vw,8rem)}
.collection-intro>p:last-child{max-width:600px;color:#aaa8af;line-height:1.65}

.gallery{
  display:grid;grid-template-columns:repeat(12,1fr);gap:14px;margin:36px 0 24px;
}
.gallery-item{
  grid-column:span 4;position:relative;overflow:hidden;border:0;padding:0;background:#111;
  border-radius:14px;cursor:zoom-in;aspect-ratio:9/16;
}
.gallery-item img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .35s ease,filter .35s ease}
.gallery-item::after{
  content:"VIEW";position:absolute;left:50%;top:50%;transform:translate(-50%,-40%);
  opacity:0;color:white;font-size:.65rem;letter-spacing:.25em;transition:.3s ease;z-index:2;
}
.gallery-item:hover img{transform:scale(1.015);filter:brightness(.68)}
.gallery-item:hover::after{opacity:1;transform:translate(-50%,-50%)}

.viewer{
  width:100vw;height:100dvh;max-width:none;max-height:none;margin:0;padding:0;border:0;
  background:rgba(3,4,6,.975);color:white;overflow:auto;
}
.viewer::backdrop{background:#000}
.viewer-content{
  min-height:100%;display:flex;flex-direction:column;align-items:center;
  justify-content:flex-start;padding:52px clamp(18px,5vw,70px) 44px;
}
.viewer-content img{
  display:block;max-width:min(680px,88vw);max-height:72dvh;width:auto;height:auto;
  object-fit:contain;box-shadow:0 24px 80px rgba(0,0,0,.58);
}
.viewer-meta{
  width:min(680px,88vw);display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:18px 0 0;
}
.viewer-meta p{margin:0;color:#8f8e96;font-size:.78rem}
.download-button{
  display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:190px;min-height:58px;
  padding:10px 18px;border-radius:999px;background:#f0efeb;color:#08090b;font-weight:900;
  font-size:.77rem;letter-spacing:.13em;transition:.2s ease;
}
.download-button small{font-size:.6rem;letter-spacing:.02em;font-weight:600;opacity:.6;margin-top:3px}
.download-button:hover{transform:translateY(-1px);background:white}
.viewer-close,.viewer-arrow{
  position:fixed;z-index:5;border:0;background:rgba(255,255,255,.06);color:#fff;cursor:pointer;
  backdrop-filter:blur(12px);
}
.viewer-close{right:18px;top:18px;width:42px;height:42px;border-radius:50%;font-size:1.8rem;line-height:1}
.viewer-arrow{top:50%;transform:translateY(-50%);width:48px;height:70px;border-radius:999px;font-size:2.3rem}
.viewer-prev{left:14px}.viewer-next{right:14px}
.ad-viewer{width:min(680px,88vw);min-height:92px;margin-top:24px}

footer{
  width:min(1400px,100%);margin:0 auto;padding:36px clamp(18px,4vw,52px) 48px;
  border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;
  gap:20px;color:#77767d;font-size:.74rem;
}
footer div{display:flex;gap:18px}
footer a:hover{color:#fff}

.page-copy{max-width:760px;margin:60px auto 100px;line-height:1.8;color:#b7b5ba}
.page-copy h1{font-family:Georgia,serif;font-weight:400;font-size:clamp(2.6rem,7vw,5rem);color:white;margin-bottom:24px}
.page-copy h2{color:white;font-size:1rem;margin-top:30px}
.page-copy a{text-decoration:underline;text-underline-offset:3px}

@media(max-width:760px){
  .site-header{padding:16px 18px}
  .menu-button{display:block}
  nav{
    display:none;position:absolute;right:18px;top:60px;flex-direction:column;padding:16px 18px;
    border:1px solid var(--line);border-radius:14px;background:rgba(8,9,12,.96)
  }
  nav.open{display:flex}
  .hero{min-height:65vh;padding:62px 0 54px}
  .hero h1{font-size:clamp(3rem,16vw,5.2rem)}
  .collection-card,.collection-card:nth-child(3n){grid-column:span 12;min-height:66vh;max-height:760px}
  .collection-card h3{font-size:clamp(2.5rem,12vw,4.8rem)}
  .gallery{gap:9px}
  .gallery-item{grid-column:span 6;border-radius:9px}
  .viewer-content{padding-top:70px}
  .viewer-content img{max-width:94vw;max-height:68dvh}
  .viewer-meta{width:94vw;align-items:stretch;flex-direction:column}
  .download-button{width:100%}
  .viewer-arrow{width:38px;height:54px;font-size:1.8rem;background:rgba(0,0,0,.42)}
  .viewer-prev{left:6px}.viewer-next{right:6px}
  .ad-viewer{width:94vw}
  footer{flex-direction:column}
}


.real-ad{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin:30px 0;
  overflow:hidden;
}
.ad-label{
  display:block;
  margin-bottom:9px;
  color:#66656b;
  font-size:.55rem;
  letter-spacing:.22em;
}
.ad-host{
  width:100%;
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.ad-unit-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
  overflow:hidden;
}
.native-ad-wrap{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.native-host{
  width:100%;
  max-width:1100px;
  min-height:120px;
  overflow:hidden;
}
@media(max-width:760px){
  .ad-host{min-height:50px}
  .real-ad{margin:24px 0}
  .native-host{min-height:100px}
}


.gallery-ad-card{
  grid-column:span 4;
  aspect-ratio:9/16;
  min-height:0;
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  background:
    radial-gradient(circle at 50% 38%,rgba(88,108,154,.10),transparent 38%),
    rgba(255,255,255,.018);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  overflow:hidden;
  padding:16px;
}
.gallery-ad-label{
  color:#68676e;
  font-size:.54rem;
  letter-spacing:.22em;
}
.gallery-ad-host{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.gallery-ad-inner{
  width:300px;
  height:250px;
  max-width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
@media(max-width:760px){
  .gallery-ad-card{
    grid-column:span 6;
    border-radius:9px;
    aspect-ratio:9/16;
    padding:8px;
  }
  .gallery-ad-inner{
    transform:scale(.72);
    transform-origin:center;
    width:300px;
    height:250px;
    flex:0 0 300px;
  }
}
