*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --text:#e5e5e5;
  --muted:rgba(229,229,229,0.70);
  --stroke:rgba(255,255,255,0.10);
}

body{
  min-height:100vh;
  font-family:"Georgia",serif;
  color:var(--text);
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");
  background-size:cover;
  background-position:center 20%;
  background-attachment:fixed;
}

/* ===== HEADER ===== */
.site-header{
  padding:50px 20px 20px;
  text-align:center;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.logo{
  font-size:44px;
  letter-spacing:2px;
}

.tag{
  font-size:14px;
  opacity:0.7;
  letter-spacing:4px;
  text-transform:uppercase;
}

/* ===== WRAP ===== */
.wrap{
  max-width:820px;
  margin:0 auto;
  padding:20px;
}

/* ===== PROFILE ===== */
.profile-main{
  text-align:center;
  margin-top:50px;
}

.profile-main img{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
  transition:0.3s;
}

.profile-main img:hover{
  transform:scale(1.04);
}

.profile-description{
  margin-top:24px;
  font-size:16px;
  line-height:2;
  color:var(--muted);
}

.profile-status{
  margin-top:18px;
  font-size:14px;
  color:rgba(255,255,255,0.55);
  font-style:italic;
}

/* ===== NAV ===== */
.profile-nav{
  max-width:820px;
  margin:40px auto 0;
  padding:0 20px 14px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.profile-nav-inner{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.nav-item{
  font-size:14px;
  letter-spacing:1px;
  opacity:0.55;
  text-decoration:none;
  color:inherit;
  transition:0.2s;
}

.nav-item:hover{
  opacity:0.85;
}

.nav-item.active{
  opacity:1;
  border-bottom:1px solid var(--text);
  padding-bottom:6px;
}

.nav-item.disabled{
  opacity:0.25;
  pointer-events:none;
}

/* ===== NOTE ===== */
.note{
  margin:45px auto 0;
  max-width:680px;
  padding:0 20px;
}

.note-card{
  padding:26px 28px;
  text-align:center;
  line-height:1.8;
  color:var(--muted);
  background:rgba(255,255,255,0.04);
  border:1px solid var(--stroke);
  border-radius:16px;
  box-shadow:0 12px 35px rgba(0,0,0,0.35);
}

/* ===== FOOTER ===== */
.site-footer{
  padding:40px;
  text-align:center;
  opacity:0.7;
  font-size:14px;
}

/* ===== RWD ===== */
@media (max-width: 900px) {
  .wrap{
    max-width:720px;
  }
}

@media (max-width: 520px) {
  .site-header{
    padding:38px 16px 14px;
  }

  .logo{
    font-size:34px;
  }

  .tag{
    font-size:12px;
    letter-spacing:3px;
  }

  .wrap{
    padding:16px;
  }

  .profile-main{
    margin-top:35px;
  }

  .profile-main img{
    width:150px;
    height:150px;
  }

  .profile-nav-inner{
    gap:18px;
  }

  .nav-item{
    font-size:13px;
  }

  .note{
    margin-top:35px;
    padding:0;
  }

  .note-card{
    padding:22px 20px;
    font-size:14px;
  }
}