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

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

a {
  color: #fff;
  text-decoration: none;
}

header {
  text-align: right;
  padding: 20px;
  font-size: 14px;
  opacity: 0.7;
}

section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Showreel ===== */
.showreel {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 40px;
  padding-top: 56.25%; /* 16:9 */
}

.showreel iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Name ===== */
.name {
  text-align: center;
  margin-bottom: 20px;
}

.name-ja {
  display: block;
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 600;
}

.name-en {
  display: block;
  margin-top: 6px;
  font-size: clamp(14px, 3.5vw, 18px);
  letter-spacing: 0.18em;
  opacity: 0.7;
}

/* ===== Catch copy ===== */
.catch {
  text-align: center;
  font-size: clamp(16px, 4.5vw, 22px);
}

.sp-break {
  display: none;
}

@media (max-width: 768px) {
  .sp-break {
    display: inline;
  }
}

/* ===== Works ===== */
.works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.work {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
}

.work h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.work p {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== Contact ===== */
.contact {
  text-align: center;
}

.contact a {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 36px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.contact a:hover {
  background: #fff;
  color: #000;
}

footer {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  opacity: 0.6;
}