*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
}

/* ===== HEADER ===== */
.site-header{
  width: 100%;
  background-color: #D9D9D9;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #999;
}

.header-left{
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-box{
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-name{
  font-size: 22px;
  font-weight: bold;
}

.header-nav{
  display: flex;
  gap: 40px;
  font-family: Arial, Helvetica, sans-serif;
}

.header-nav a{
  text-decoration: none;
  color: #255bd9;
  font-size: 18px;
}

.header-nav a:hover{
  text-decoration: underline;
	color: #1a3b99;
}

/* ===== HERO ===== */
.hero{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 40px;
  flex-wrap: wrap;
}

.hero-left h1{
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-left h2{
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 15px;
}

.specialities{
  list-style: none;
  font-size: 1.2rem;
  line-height: 1.9;
}

.hero-right{
  text-align: center;
}

.hero-right h3{
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 20px;
}

.project-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 420px;
}

.project-grid img{
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: #ccc;
  display: block;
}

/* ===== FOOTER ===== */
.site-footer{
	background-color: #eaeaea;
  border-top: 1px solid #999;
  padding: 25px 40px;
  text-align: center;
  font-size: 1.3rem;
}
.site-footer .footer-sub{
	margin-top: 8px;
	font-size: 0.9rem;
	color: #555;
	font-family: Arial, helvetica, san-serif;
}
/* Responsive: stack hero on smaller screens */
@media (max-width: 700px){
  .hero{ flex-direction: column; align-items: flex-start; }
  .hero-right{ align-self: center; }
}
.hero-middle{
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-middle p{
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 1.4rem;
	letter-spacing: 4px;
	color: #999;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
/* ===== WORKS PAGE ===== */
.works-page{
  padding: 50px 40px;
}

.works-page h1{
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.works-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ccc;
  display: block;
  margin-bottom: 12px;
}

.work-item h3{
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.work-item p{
  font-size: 1rem;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}
/* ===== ABOUT PAGE ===== */
.about-page{
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.about-photo{
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border: 1px solid #999;
  overflow: hidden;
}

.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text{
  max-width: 500px;
}

.about-text h1{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p{
  font-size: 1.1rem;
  line-height: 1.7;
}
/* ===== VIDEO PAGE ===== */
.video-page{
  padding: 60px 40px;
  text-align: center;
}

.video-page h1{
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.video-frame{
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
}

.video-frame iframe{
  width: 100%;
  height: 100%;
  display: block;
}
/* ===== CONTACT PAGE ===== */
.contact-page{
  padding: 80px 40px;
  text-align: center;
}

.contact-page h1{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-page p{
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-email{
  font-size: 1.3rem;
  color: #2B5BD9;
  text-decoration: none;
  font-weight: bold;
}

.contact-email:hover{
  color: #1A3B99;
  text-decoration: underline;
}