:root {
  color-scheme: light;
  --black: #03070d;
  --navy: #061426;
  --deep-navy: #091d35;
  --ink: #10151c;
  --paper: #f4f6f8;
  --paper-soft: #e8edf2;
  --muted: #63707d;
  --muted-dark: #a7b4c1;
  --line: rgba(16, 21, 28, 0.14);
  --line-dark: rgba(244, 246, 248, 0.16);
  --accent: #7399c6;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Pretendard", "Noto Sans KR", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 24px clamp(20px, 5vw, 64px);
  color: rgba(244, 242, 236, 0.88);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 236, 0.86);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span {
  font-weight: 500;
  opacity: 0.62;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: inherit;
  font-size: 0.84rem;
}

.nav a {
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(46, 96, 150, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(135deg, var(--black), var(--navy) 72%, #07101b);
  color: var(--paper);
  padding: clamp(110px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 242, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 236, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.1rem, 16vw, 13.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.78;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  gap: 32px;
  align-items: end;
  margin-top: clamp(24px, 5vw, 56px);
}

.hero-name {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
}

.hero-intro {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(244, 242, 236, 0.7);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.contact-links a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 17px;
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--paper);
  color: var(--black);
}

.button.secondary {
  color: rgba(244, 242, 236, 0.82);
}

.hero-visual {
  position: absolute;
  right: clamp(-160px, -7vw, -40px);
  bottom: clamp(96px, 13vw, 168px);
  z-index: 1;
  width: min(58vw, 780px);
  aspect-ratio: 1.55;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 248, 0.13);
  opacity: 0.78;
  transform: rotate(-2.4deg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.hero-visual::after,
.image-frame::after,
.journey-visual::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-visual::after {
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.88), rgba(3, 7, 13, 0.26) 48%, transparent),
    linear-gradient(180deg, transparent 55%, rgba(3, 7, 13, 0.64));
}

.hero-visual img,
.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  object-position: 54% 58%;
}

.hero-objects {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max-width));
  min-height: 250px;
  margin: clamp(30px, 5vw, 52px) auto 0;
}

.object {
  position: absolute;
  display: grid;
  align-content: space-between;
  width: clamp(170px, 22vw, 260px);
  min-height: clamp(116px, 15vw, 158px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(115, 153, 198, 0.2), rgba(255, 255, 255, 0.025)),
    rgba(5, 14, 26, 0.78);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.object span {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.object strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.object-career {
  left: 7%;
  top: 12px;
  transform: rotate(-4deg);
}

.object-journey {
  left: 35%;
  top: 38px;
  transform: rotate(5deg);
}

.object-now {
  right: 8%;
  top: 2px;
  transform: rotate(-2deg);
}

.hero-transition {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(140px, 18vw, 230px);
  background:
    radial-gradient(100% 70% at 8% 100%, rgba(82, 129, 180, 0.62), transparent 52%),
    radial-gradient(70% 58% at 90% 100%, rgba(27, 54, 88, 0.75), transparent 56%),
    linear-gradient(180deg, transparent 0%, rgba(244, 242, 236, 0.5) 58%, var(--paper) 100%);
  filter: blur(0.2px);
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
  padding: clamp(78px, 10vw, 136px) 0;
}

.intro-section {
  padding-top: clamp(76px, 9vw, 120px);
}

.editorial-grid,
.section-title-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.editorial-grid h2,
.section-title-row h2,
.now h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.section-copy {
  display: grid;
  gap: 22px;
}

.about-stack {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--deep-navy);
}

.image-frame::after {
  border: 1px solid rgba(244, 246, 248, 0.16);
  box-shadow: inset 0 0 0 1px rgba(3, 7, 13, 0.12);
}

.about-visual {
  aspect-ratio: 1.34;
  transform: translateX(-8%);
}

.about-visual img {
  object-position: 48% 48%;
}

.section-copy p,
.section-title-row p,
.journey-item p,
.work-list p,
.credential-list p,
.now p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-block: clamp(46px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 150px;
  padding: 0 clamp(18px, 3vw, 32px);
  border-left: 1px solid var(--line);
}

.metric:first-of-type {
  border-left: 0;
  padding-left: 0;
}

.metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.86;
}

.metric span {
  display: block;
  max-width: 220px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.journey {
  padding-bottom: clamp(56px, 8vw, 100px);
}

.journey-list {
  margin-top: clamp(42px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.journey-visual {
  aspect-ratio: 3.25;
  margin-top: clamp(36px, 6vw, 74px);
}

.journey-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.42), transparent 42%),
    linear-gradient(180deg, rgba(3, 7, 13, 0.36), transparent 45%, rgba(3, 7, 13, 0.18));
}

.journey-visual img {
  object-position: 62% 82%;
}

.journey-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 78px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.journey-item time {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.journey-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.journey-item.is-current h3::after {
  content: " Current";
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.now {
  display: grid;
  grid-template-columns: 0.25fr minmax(320px, 0.76fr) minmax(320px, 0.64fr);
  gap: clamp(30px, 6vw, 84px);
  width: 100%;
  margin: 0;
  background: var(--paper-soft);
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, calc((100vw - var(--max-width)) / 2));
}

.now-label {
  color: var(--accent);
  font-size: clamp(3.6rem, 11vw, 10rem);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.82;
}

.now p {
  max-width: 680px;
  margin-top: 28px;
}

.now-visual {
  align-self: end;
  aspect-ratio: 0.92;
  min-height: 420px;
}

.now-visual img {
  object-position: 50% 54%;
}

.work-list,
.credential-list {
  display: grid;
  margin-top: clamp(42px, 7vw, 86px);
  border-top: 1px solid var(--line);
}

.work-list article,
.credential-list article {
  display: grid;
  grid-template-columns: 80px minmax(210px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.work-list span,
.credential-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-list h3,
.credential-list h3 {
  margin: 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.28;
}

.contact {
  background: var(--black);
  color: var(--paper);
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 64px);
}

.contact-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.contact h2 {
  max-width: 880px;
}

.contact p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 26px;
  color: rgba(244, 242, 236, 0.72);
}

.contact-links {
  margin-top: 34px;
}

.contact-links a {
  color: var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: rgba(244, 242, 236, 0.58);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-bottom,
  .editorial-grid,
  .section-title-row,
  .now {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 760px);
    margin: 40px auto 0;
    aspect-ratio: 1.65;
    transform: rotate(-1.2deg);
  }

  .hero-objects {
    min-height: 250px;
    margin-top: -26px;
  }

  .object-career {
    left: 0;
  }

  .object-journey {
    left: 25%;
    top: 96px;
  }

  .object-now {
    right: 0;
    top: 42px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .metric:nth-of-type(3) {
    border-left: 0;
    padding-left: 0;
  }

  .work-list article,
  .credential-list article {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .work-list p,
  .credential-list p {
    grid-column: 2;
  }

  .about-visual {
    transform: none;
  }

  .journey-visual {
    aspect-ratio: 2.15;
  }

  .now-visual {
    min-height: 0;
    aspect-ratio: 1.42;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 20px 16px;
  }

  .nav {
    gap: 16px;
    font-size: 0.8rem;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 25vw, 7.1rem);
  }

  .hero-bottom {
    gap: 24px;
  }

  .button,
  .contact-links a {
    min-height: 41px;
    padding-inline: 15px;
  }

  .hero-objects {
    min-height: 232px;
    margin-top: -18px;
  }

  .object {
    width: min(68vw, 232px);
    min-height: 92px;
    padding: 14px;
  }

  .object-career {
    left: 2px;
    top: 18px;
  }

  .object-journey {
    left: 38px;
    top: 76px;
  }

  .object-now {
    right: 4px;
    top: 144px;
  }

  .hero-visual {
    margin-top: 34px;
    aspect-ratio: 1.08;
    transform: none;
  }

  .hero-visual img {
    object-position: 50% 54%;
  }

  .section {
    width: min(100% - 32px, var(--max-width));
    padding-block: 72px;
  }

  .editorial-grid h2,
  .section-title-row h2,
  .now h2,
  .contact h2 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  .metrics {
    grid-template-columns: 1fr;
    width: min(100% - 32px, var(--max-width));
  }

  .metric,
  .metric:nth-of-type(3) {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }

  .metric:first-of-type {
    border-top: 0;
    padding-top: 0;
  }

  .journey-item,
  .work-list article,
  .credential-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-list p,
  .credential-list p {
    grid-column: auto;
  }

  .now,
  .contact {
    padding-inline: 16px;
  }

  .now-label {
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .about-visual {
    aspect-ratio: 1.06;
  }

  .journey-visual {
    aspect-ratio: 1.28;
  }

  .journey-visual img {
    object-position: 70% 86%;
  }

  .now-visual {
    aspect-ratio: 1.05;
  }

  .contact-links {
    width: 100%;
  }

  .contact-links a {
    flex: 1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
