.page {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

.hero {
  position: relative;
  min-height: min(62svh, 30rem);
  display: grid;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.heroMedia {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.heroImage {
  /* Next.js Image fill 과 동일하게 히어로 영역을 꽉 채웁니다. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
  animation: pan-slow 18s ease-in-out alternate infinite;
}

.heroShade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(7, 17, 31, 0.92) 10%,
      rgba(7, 17, 31, 0.6) 55%,
      rgba(7, 17, 31, 0.38) 100%
    ),
    linear-gradient(to top, rgba(7, 17, 31, 0.85), transparent 50%);
}

.heroContent {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
  animation: rise-in 0.65s ease both;
}

.heroCopy {
  max-width: 42rem;
}

.eyebrow,
.chapterLabel,
.chapterLabelLight {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.eyebrow,
.chapterLabelLight {
  color: var(--gold-400);
}

.chapterLabel {
  color: var(--gold-600);
}

.hero h1 {
  /* DevTools에서 Syne/Times 해제 시와 동일: 본문 폰트(Source Sans 3) */
  font-family: var(--font-body);
  font-weight: 700;
  font-size: max(2rem, min(4.5vw, 3.5rem));
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: none;
}

.body {
  padding-top: 0.5rem;
}

.chapter {
  padding: 4rem 0;
}

.chapterAlt {
  background: linear-gradient(180deg, rgba(239, 235, 227, 0.6), transparent);
}

.chapterGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.figure,
.wideFigure,
.visionFigure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-800);
}

.figure {
  aspect-ratio: 4 / 3;
  min-height: 16rem;
}

.wideFigure {
  aspect-ratio: 21 / 9;
  min-height: 14rem;
  margin-bottom: 2rem;
}

.visionFigure {
  aspect-ratio: 5 / 4;
  min-height: 14rem;
}

.figureImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.chapter:hover .figureImage,
.growth:hover .figureImage,
.vision:hover .figureImage {
  transform: scale(1.03);
}

.copy {
  max-width: 36rem;
}

.chapter h2,
.question h2,
.growthCopy h2,
.vision h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  margin-bottom: 1rem;
}

.copy p,
.growthCopy p,
.vision p,
.question p {
  color: var(--ink-700);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.copy p:last-child,
.growthCopy p:last-child {
  margin-bottom: 0;
}

.pull {
  margin-top: 1.25rem !important;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy-900) !important;
  font-weight: 600;
  font-size: 1.05rem;
}

.question {
  padding: 4.5rem 0;
  background: var(--navy-900);
  color: var(--white);
}

.questionInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.question h2 {
  color: var(--white);
  text-align: center;
}

.question .chapterLabelLight {
  text-align: center;
}

.question blockquote {
  margin: 1.25rem 0 1.5rem;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--gold-400);
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 700px) {
  .question blockquote {
    white-space: normal;
    width: auto;
    max-width: 20rem;
  }
}

.question p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.questionNote {
  margin: 0;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.questionNote span {
  display: block;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 900px) {
  .questionNote {
    width: 100%;
  }

  .questionNote span {
    white-space: normal;
    max-width: 36rem;
  }
}

.growth {
  padding: 4rem 0;
  background: var(--navy-950);
  color: var(--white);
}

.growthCopy {
  max-width: 46rem;
}

.growthCopy p {
  color: rgba(255, 255, 255, 0.82);
}

.growthCopy h2 {
  color: var(--white);
}

.growthList {
  list-style: none;
  margin: 1.75rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.growthList li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.growthList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-500);
}

.vision {
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(circle at top right, rgba(214, 179, 92, 0.16), transparent 42%),
    linear-gradient(165deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}

.visionTop {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.vision p {
  color: rgba(255, 255, 255, 0.8);
  max-width: none;
}

.peopleListTitle {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.peopleList {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.peopleList li {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.closing {
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: none !important;
  width: 100%;
  margin-bottom: 1rem !important;
}

.closing + .closing {
  margin-bottom: 2rem !important;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 헤더 .cta / .ctaMobile 과 충돌하지 않도록 본문 CTA만 스코프합니다. */
.ctaRow .cta,
.ctaRow .ctaGhost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ctaRow .cta {
  background: var(--gold-500);
  color: var(--navy-950);
}

.ctaRow .cta:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  color: var(--navy-950);
}

.ctaRow .ctaGhost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.ctaRow .ctaGhost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .chapterGrid,
  .visionTop,
  .peopleList {
    grid-template-columns: 1fr;
  }

  .chapterAlt .chapterGrid .copy {
    order: 1;
  }

  .chapterAlt .chapterGrid .figure {
    order: 0;
  }

  .wideFigure {
    aspect-ratio: 16 / 9;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pan-slow {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}
