.cast-main {
  min-height: 100svh;
  padding-bottom: clamp(76px, 10vw, 132px);
}

.cast-header,
.cast-grid,
.cast-start {
  width: min(100% - 44px, 1180px);
  margin-inline: auto;
}

.cast-header {
  padding: clamp(86px, 12vw, 146px) 0 clamp(58px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
}

.cast-header h1 {
  max-width: 930px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.cast-header > p {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(241, 238, 232, .76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.8vw, 29px);
  line-height: 1.5;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(58px, 8vw, 96px);
  background: rgba(216, 181, 118, .18);
  border: 1px solid rgba(216, 181, 118, .18);
}

.cast-card {
  --cast-accent: var(--brass);
  min-width: 0;
  background: rgba(7, 7, 6, .96);
}

.cast-sojin { --cast-accent: #dca4ba; }
.cast-yura { --cast-accent: #8ed2c4; }
.cast-han { --cast-accent: #d66b2a; }
.cast-min { --cast-accent: #b197d6; }
.cast-jiho { --cast-accent: #bc9269; }

.cast-card figure {
  position: relative;
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.cast-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(7, 7, 6, .72));
  pointer-events: none;
}

.cast-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--cast-focus-y, 24%);
  filter: saturate(.8) sepia(.06) brightness(.9);
  transform: scale(1.03);
  transition: transform .6s cubic-bezier(.22, .72, .22, 1), filter .6s ease;
}

.cast-jun { --cast-focus-y: 21%; }
.cast-sojin { --cast-focus-y: 24%; }
.cast-yura { --cast-focus-y: 30%; }
.cast-han { --cast-focus-y: 27%; }
.cast-min { --cast-focus-y: 11%; }
.cast-jiho { --cast-focus-y: 18%; }

.cast-card:hover img {
  filter: saturate(.9) sepia(.03) brightness(.96);
  transform: scale(1.055);
}

.cast-copy {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
}

.cast-role {
  margin: 0 0 15px;
  color: var(--cast-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cast-copy h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 4vw, 53px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
}

.cast-copy > p:last-child {
  margin: 0;
  color: rgba(241, 238, 232, .7);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
}

.cast-start {
  margin-top: clamp(68px, 9vw, 112px);
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid rgba(216, 181, 118, .28);
  background: linear-gradient(145deg, rgba(216, 181, 118, .09), rgba(9, 9, 7, .76));
}

.cast-start > p {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cast-start h2 {
  max-width: 720px;
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}

@media (max-width: 760px) {
  .cast-header,
  .cast-grid,
  .cast-start { width: min(100% - 36px, 1180px); }
  .cast-header { padding-top: 70px; }
  .cast-grid { grid-template-columns: 1fr; }
  .cast-copy { min-height: 0; padding: 30px 26px 38px; }
  .cast-card figure { aspect-ratio: 4 / 3; }
  .cast-start { padding: 32px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .cast-card img { transition: none; }
}
