:root{
  --bg:#f9fafa;
  --accent:#f3f2ef;
  --fg:#2f2f2c;
  --card:#ffffff;
  --line:rgba(0,0,0,.10);
}

html, body{ height:100%; }

body{
  margin:0;
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--fg);
  position:relative;
  overflow-x:hidden;
}

/* subtle side framing */
.side-fade{
  position:fixed;
  top:0;
  bottom:0;
  width:22vw;
  max-width:340px;
  pointer-events:none;
  z-index:0;
  opacity:1;
}

.side-fade.left{
  left:0;
  background: linear-gradient(to right,
    rgba(243,242,239,.90),
    rgba(243,242,239,.45),
    rgba(243,242,239,0)
  );
}

.side-fade.right{
  right:0;
  background: linear-gradient(to left,
    rgba(243,242,239,.90),
    rgba(243,242,239,.45),
    rgba(243,242,239,0)
  );
}

/* frame */
.page-frame{
  position:fixed;
  inset:18px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  pointer-events:none;
  z-index:1;
}

/* layering */
.accent-bar,
.wrap,
.bio,
.lightbox,
.wa-modal{
  position:relative;
  z-index:2;
}

/* accent bar */
.accent-bar{
  height:44px;
  background:var(--accent);
  width:100%;
}

/* header */
.wrap{
  width:100%;
  margin:0 auto;
  padding:28px 0 40px;
  text-align:center;
}

/* signature */
.sig-inline{
  display:flex;
  justify-content:center;
  padding:0 20px;
}
.sig-img{
  height:150px;
  width:auto;
  opacity:.95;
}

/* fan */
.fan-stage{
  width:100%;
  margin:18px auto 0;
  overflow:visible;
}

.fan{
  position:relative;
  width:min(2200px, calc(100vw - 44px));
  height:500px;
  margin:0 auto;
  transform:translateX(40px);
}

.card{
  position:absolute;
  top:180px;
  width:240px;
  height:340px;
  transform-origin:50% 92%;
  z-index:1;
  will-change:transform,left;
}

.card-inner{
  width:100%;
  height:100%;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 28px 60px rgba(0,0,0,.14);
  background:var(--card);
  border:1px solid var(--line);
  cursor:pointer;
  transition:transform .20s ease, box-shadow .20s ease, filter .20s ease;
}

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

.card:hover{ z-index:999 !important; }
.card:hover .card-inner{
  transform:translateY(-18px) scale(1.06);
  box-shadow:0 36px 90px rgba(0,0,0,.22);
  filter:saturate(1.04);
}

/* nav */
.nav{
  margin:18px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding:0 20px;
}

.nav a{
  color:var(--fg);
  text-decoration:none;
  font-size:14px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.9;
  transition:opacity .15s ease;
}
.nav a:hover{ opacity:.55; }
.nav .dash{ opacity:.35; }

/* content box */
.bio{
  margin:40px auto 0;
  max-width:1400px;
  background:#f3f2ef;
  border:1px solid var(--line);
  border-radius:16px;
  padding:90px 70px;
}

.bio-inner{
  max-width:980px;
  margin:0 auto;
  text-align:left;
}

/* text */
.bio h2{
  margin:0 0 18px;
  font-size:22px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:650;
}

.bio h3{
  margin:0 0 12px;
  font-size:18px;
  letter-spacing:.02em;
  font-weight:650;
}

.bio p{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.75;
  opacity:.95;
}

.bio-divider{
  height:1px;
  background:rgba(0,0,0,.18);
  margin:26px 0;
}

/* lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(30,30,28,.45);
  backdrop-filter:blur(4px);
  padding:22px;
  z-index:999;
}

.lightbox.open{ display:grid; }

.lightbox img{
  max-width:95vw;
  max-height:88vh;
  border-radius:16px;
  background:white;
  border:1px solid var(--line);
}

.close-btn{
  position:fixed;
  top:24px;
  right:24px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:white;
  cursor:pointer;
}

/* WhatsApp button + modal (FULL ORIGINAL — FIXED) */
.wa-fab{
  position:fixed;
  right:90px;
  bottom:34px;
  z-index:60;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 26px rgba(0,0,0,.20);
  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  border:none;
  cursor:pointer;
}

.wa-fab:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(0,0,0,.26);
  opacity:.95;
}

.wa-fab svg{
  width:30px;
  height:30px;
  fill:#ffffff;
}

.wa-modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background:rgba(30,30,28,.45);
  backdrop-filter:blur(4px);
  padding:22px;
  z-index:1000;
}

.wa-modal.open{ display:grid; }

.wa-card{
  width:min(420px, 92vw);
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 18px 55px rgba(0,0,0,.18);
  overflow:hidden;
}

.wa-card-top{
  background:var(--accent);
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.wa-title{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.85;
}

.wa-x{
  appearance:none;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}

.wa-card-body{
  padding:18px 18px 20px;
  text-align:center;
}

.wa-qr{
  width:260px;
  height:260px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  display:block;
  margin:0 auto 14px;
}

.wa-hint{
  margin:0 0 10px;
  font-size:14px;
  opacity:.85;
}

.wa-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.wa-link{
  display:inline-block;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.12);
  background:#ffffff;
  color:var(--fg);
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
}

footer{ height:40px; }

/* construction popup */
.construction-overlay{
  position:fixed;
  inset:0;
  background:rgba(47,47,44,.18);
  backdrop-filter:blur(3px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.construction-box{
  position:relative;
  background:#f3f2ef;
  border:1px solid rgba(0,0,0,.08);
  border-radius:6px;
  padding:46px 54px 38px;
  max-width:620px;
  width:calc(100% - 40px);
  text-align:center;
  box-shadow:0 18px 50px rgba(0,0,0,.10);
}

.construction-box::before{
  content:"";
  display:block;
  width:56px;
  height:1px;
  background:rgba(0,0,0,.25);
  margin:0 auto 18px;
}

.construction-box h2{
  margin:0 0 14px;
  font-size:18px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.construction-box p{
  max-width:460px;
  margin:0 auto;
  line-height:1.8;
}

.construction-close{
  position:absolute;
  top:12px;
  right:14px;
  font-size:22px;
  cursor:pointer;
}

/* ART */
.art-wrapper{
  display:flex;
  justify-content:center;
  margin-bottom:40px;
}

.art-image{
  width:60%;
  max-width:700px;
  border-radius:16px;
  border:1px solid var(--line);
  cursor:pointer;
}

/* VIDEO */
.video-frame{
  width:60%;
  max-width:700px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
}

.video-frame iframe{
  width:100%;
  aspect-ratio:16 / 9;
  display:block;
  border:0;
}

/* responsive */
@media (max-width:900px){
  .art-image,
  .video-frame{
    width:90%;
  }
}