html, body{
height:100%;
}

body{
margin:0;
font-family:system-ui,sans-serif;
background:#111;
color:#eee;
}

.container{
max-width:960px;
margin:0 auto;
padding:1.5rem;
min-height:100vh;
display:flex;
flex-direction:column;
box-sizing:border-box;
}

main{
flex:1;
}
header{
padding:1rem 0 2rem;
border-bottom:1px solid #333;
}
.nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:1rem;
}
.nav a{
color:#eee;
text-decoration:none;
font-size:0.95rem;
}
.nav a:hover{
text-decoration:underline;
}
.hero{
text-align:center;
margin:4rem 0 2rem;
}

.hero h1{
font-size:2rem;
margin:0 0 1.2rem;
}
.hero p{
color:#aaa;
max-width:720px;
margin:0 auto;
line-height:1.6;
}

.hero-image{
margin:2.5rem 0 3rem;
}

.hero-image img{
width:100%;
border-radius:12px;
box-shadow:0 8px 40px rgba(0,0,0,0.6);
}

.featured-project{
margin:4rem 0;
}

.featured-project-inner{
background:#181818;
border:1px solid #2a2a2a;
border-radius:14px;
padding:1.6rem;
box-shadow:0 6px 30px rgba(0,0,0,0.45);
}


.featured-project h2{
font-size:1.6rem;
margin-bottom:.4rem;
}


.project-label{
margin:0 0 .75rem;
font-size:.8rem;
letter-spacing:.08em;
text-transform:uppercase;
color:#8f8f8f;
}

.featured-project h2{
margin:0 0 .75rem;
font-size:1.6rem;
}

.featured-project p{
color:#c7c7c7;
line-height:1.7;
margin:0 0 1.2rem;
}

.contact-block{
margin:4rem 0 3rem;
padding-top:2rem;
border-top:1px solid #2a2a2a;
text-align:center;
}


.contact-block h2{
margin:0 0 .8rem;
font-size:1.5rem;
}

.contact-block p{
max-width:620px;
margin:0 auto 1.2rem;
color:#bdbdbd;
line-height:1.7;
}

.contact-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:1rem;
}

.contact-links a{
color:#eee;
text-decoration:none;
border:1px solid #444;
border-radius:999px;
padding:.7rem 1rem;
}

.contact-links a:hover{
border-color:#888;
text-decoration:underline;
}

.contact-person{
font-weight:600;
margin:1rem 0 .4rem;
}


.contact-person span{
color:#aaa;
font-size:.95rem;
}



.video{
width:100%;
aspect-ratio:16/9;
border:0;
border-radius:8px 8px 0 0;
background:#000;
}



.section{
margin-bottom:2rem;
}
.section-title{
font-size:1.35rem;
margin:0 0 1rem;
}
.featured-image{
border-radius:8px;
overflow:hidden;
border:1px solid #2d2d2d;
background:#222;
}

.featured-image img{
display:block;
width:100%;
height:auto;
}
.columns{
display:flex;
flex-wrap:wrap;
gap:1.5rem;
}

.intro-grid{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:1.75rem;
}
.box{
background:#181818;
border:1px solid #2a2a2a;
border-radius:14px;
padding:1.5rem;
box-shadow:0 6px 30px rgba(0,0,0,0.25);
}

.box p,
.box li,
.text-block{
line-height:1.7;
color:#d6d6d6;
}




.tk-lead {
  color: #888;
  font-size: .9rem;
  margin: -.5rem 0 1.2rem;
}
.tk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.tk-item {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background: #151515;
  position: relative;
}
.tk-item:hover {
  border-color: #444;
}
.tk-thumb {
  aspect-ratio: 9 / 16;
  width: 100%;
  object-fit: cover;
  display: block;
}
.tk-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tk-tiktok-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.tk-label {
  font-size: 11px;
  color: #eee;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 500px) {
  .tk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}














.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: .75rem 1rem;
  color: #d7d7d7;
  line-height: 1.4;
  font-size: .9rem;
}

.service-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #888;
}

@media (max-width: 500px) {
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-item {
    font-size: .95rem;
  }
}


.contact-info a{
color:#eee;
text-decoration:none;
}

.contact-info a:visited{
color:#eee;
}

.contact-info a:hover{
text-decoration:underline;
color:#fff;
}
.cta-link{
display:inline-block;
color:#eee;
text-decoration:none;
border:1px solid #555;
border-radius:999px;
padding:.7rem 1.1rem;
}
.cta-link:hover{
text-decoration:underline;
border-color:#888;
}
footer{
padding-top:2rem;
}
.footer-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:1rem;
font-size:.9rem;
color:#aaa;
text-align:center;
}
.footer-links a{
color:#ccc;
text-decoration:none;
}
.footer-links a:hover{
text-decoration:underline;
}
@media(max-width:600px){
.hero h1{
font-size:1.7rem;
}
.columns{
flex-direction:column;
}
.footer-links{
flex-direction:column;
align-items:center;
}
}



.cta-row{display:flex;justify-content:center;flex-wrap:wrap;gap:.75rem;}
.video{width:100%;aspect-ratio:16/9;border:0;border-radius:8px;background:#000;}
.project-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;}
.project{background:#222;border-radius:8px;overflow:hidden;border:1px solid #2d2d2d;}
.project a{display:block;text-decoration:none;color:inherit;}
.thumb{aspect-ratio:16/9;background:linear-gradient(135deg,#2b2b2b,#181818);display:flex;align-items:center;justify-content:center;color:#999;font-size:.9rem;text-align:center;padding:1rem;box-sizing:border-box;}
.project-content{padding:1rem;}
.project-title{font-size:1.1rem;margin:0 0 .5rem;}
.project-desc{color:#ccc;font-size:.95rem;line-height:1.6;margin:0;}
.text-block{max-width:760px;margin:0 auto;color:#d6d6d6;line-height:1.7;}
@media(max-width:600px){.project-grid{grid-template-columns:1fr;}}

@media (max-width: 600px){
  .intro-grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}




















/* ── Contact block ── */
.cb {
  margin: 4rem 0 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2a2a2a;
  text-align: center;
}
.cb-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .6rem;
  letter-spacing: -0.02em;
}
.cb-lead {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 560px;
}
.cb-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  background: #181818;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}
.cb-photo {
  display: block;
  width: 260px;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}
.cb-body {
  padding: 2rem;
}
.cb-name {
  font-size: 1.7rem;
  font-weight: 700;
  color: #f0ece4;
  margin: 0 0 .3rem;
  letter-spacing: -0.02em;
}
.cb-role {
  color: #ffffff;
  margin: 0 0 1.1rem;
}
.cb-bio {
  font-size: .95rem;
  color: #ccc;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.cb-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.cb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  color: #111;
  font-size: .9rem;
  font-weight: 600;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.cb-btn-primary:hover {
  background: #e8e8e8;
  color: #000;
  text-decoration: none;
}
.cb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: #ddd;
  font-size: .9rem;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #444;
  text-decoration: none;
  white-space: nowrap;
}
.cb-btn-secondary:hover {
  border-color: #888;
  color: #fff;
  text-decoration: none;
}
.cb-social {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.2rem;
}
.cb-social-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: #666;
  margin-bottom: .8rem;
}
.cb-social-icons {
  display: flex;
  gap: .6rem;
}
.cb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #333;
  display: grid;
  place-items: center;
  color: #ccc;
  text-decoration: none;
  flex-shrink: 0;
}
.cb-icon:hover {
  border-color: #666;
  color: #fff;
}
@media (max-width: 680px) {
  .cb-card {
    grid-template-columns: 1fr;
  }
  .cb-photo {
    width: 100%;
    height: 240px;
    min-height: unset;
  }
  .cb-btn-primary,
  .cb-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}