* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
}

h1, h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 40px;
}

.logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
}

.banner {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  padding: 0 20px;
}

.banner-overlay h1 {
  max-width: 900px;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.3;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 32px;
}

.photo-strip {
  display: flex;
  width: 100%;
  height: 320px;
}

.photo {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.intro h2 {
  font-size: 32px;
  margin-bottom: 28px;
}

.intro-lead {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.intro-def {
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.7;
}

.works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.works-title {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #e0e0e0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.work-item {
  cursor: pointer;
}

.work-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.work-item:hover .work-thumb img {
  transform: scale(1.06);
}

.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.play-icon svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.work-title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #e6e6e6;
  text-align: center;
}

.site-footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  width: min(90vw, 1100px);
  max-height: 88vh;
  z-index: 1;
}

#modal-video {
  width: 100%;
  max-height: 88vh;
  display: block;
  background: #000;
}

.modal-close {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 700px) {
  .photo-strip {
    flex-direction: column;
    height: auto;
  }
  .photo {
    flex: none;
    height: 220px;
  }
  .site-header {
    padding: 18px 20px;
  }
}
