:root {
  --bg: #070c14;
  --bg-2: #0d1522;
  --panel: #121b2b;
  --navy: #081018;
  --gold: #e0c48a;
  --gold-deep: #c4a45c;
  --ivory: #f7f1e4;
  --text: #e8e2d4;
  --muted: #c4bdaa;
  --line: rgba(224, 196, 138, 0.22);
  --header: 3.15rem;
  --max: 68rem;
  --serif: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  --sans: "Outfit", "Noto Sans KR", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(224, 196, 138, 0.16), transparent 52%),
    radial-gradient(900px 480px at 92% 8%, rgba(224, 196, 138, 0.08), transparent 46%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: clamp(1.7rem, 5.4vw, 2.4rem);
  font-weight: 500;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 30;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0.8rem;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(100% - 1.7rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: rgba(7, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ivory);
}

.brand img {
  width: 1.55rem;
  height: 1.55rem;
}

.brand-name {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 420px) {
  .brand-name {
    display: none;
  }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
}

.lang-switch a {
  text-decoration: none;
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.45rem;
  color: var(--muted);
}

.lang-switch a[aria-current="page"] {
  color: var(--gold);
  font-weight: 500;
}

.hero-band {
  padding: 0.85rem 0 1.15rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 0.85rem;
}

.hero-portrait {
  width: min(48%, 11.2rem);
  margin: 0 auto;
  position: relative;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(224, 196, 138, 0.45);
  pointer-events: none;
  box-shadow: 0 0 40px rgba(224, 196, 138, 0.12);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid var(--gold);
}

.hero-copy {
  text-align: center;
}

.kicker {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.hero-copy h1,
.section h2,
.panel h2,
.tech-panel h2,
.contact h2,
.recognition h2 {
  font-family: var(--serif);
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.12;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 7vw, 3.15rem);
  line-height: 0.96;
  font-weight: 500;
}

.roles {
  margin-top: 0.65rem;
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 400;
}

.roles li + li {
  margin-top: 0.2rem;
}

.tech-signal {
  margin-top: 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.lede,
.prose,
.facts li,
.metric span,
.location,
.contact p,
.lang-list span {
  color: var(--muted);
}

.lede {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  max-width: 38rem;
  font-weight: 400;
}

.hero-copy .lede {
  margin-inline: auto;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: #1a1408;
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--ivory);
  background: transparent;
}

.location {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.metrics-wrap {
  padding: 0.2rem 0 0.3rem;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.metric,
.panel,
.tech-panel,
.recognition,
.timeline-item {
  background: linear-gradient(180deg, rgba(224, 196, 138, 0.07), rgba(18, 27, 43, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.metric {
  padding: 0.7rem 0.75rem 0.75rem;
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text);
  font-weight: 400;
}

.section {
  padding: 1.25rem 0;
}

.section-head {
  margin-bottom: 0.7rem;
}

.section h2,
.recognition h2,
.tech-panel h2,
.panel h2,
.contact h2 {
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
}

.prose {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
}

.recognition {
  padding: 0.95rem 0.95rem 1rem;
  position: relative;
  overflow: hidden;
}

.recognition::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -80px;
  background: radial-gradient(circle, rgba(224, 196, 138, 0.2), transparent 68%);
  pointer-events: none;
}

.recognition .lede {
  color: var(--text);
}

.score-row {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0;
}

.score-box {
  border: 1px solid var(--gold);
  padding: 0.7rem 0.8rem;
  background: rgba(224, 196, 138, 0.08);
}

.score-box strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 500;
}

.score-box span {
  display: block;
  margin-top: 0.3rem;
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 400;
}

.recognition .note {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
}

.timeline {
  display: grid;
  gap: 0.55rem;
}

.timeline-item {
  padding: 0.75rem 0.8rem 0.8rem;
  border-left: 2px solid var(--gold-deep);
}

.when {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.timeline-item h3 {
  margin-top: 0.2rem;
  color: var(--ivory);
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 500;
}

.org {
  margin-top: 0.15rem;
  font-size: 0.86rem;
  color: var(--gold-soft, var(--gold));
  font-weight: 400;
}

.facts {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.26rem;
}

.facts li {
  position: relative;
  padding-left: 0.8rem;
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 400;
}

.facts li::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.62rem;
}

.tech-panel,
.panel {
  padding: 0.9rem 0.95rem 1rem;
}

.tech-panel h3,
.panel h3 {
  color: var(--ivory);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  margin: 0.25rem 0 0.15rem;
  font-weight: 500;
}

.caps,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.15rem;
}

.caps li,
.tags li {
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 0.74rem;
  padding: 0.28rem 0.55rem;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 400;
}

.tags {
  margin: 0;
}

.progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.2rem;
  margin-top: 1.1rem;
  align-items: center;
}

.progress span {
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.62rem;
}

.progress i {
  color: var(--gold);
  font-style: normal;
}

.split {
  display: grid;
  gap: 0.75rem;
}

.lang-list {
  display: grid;
  gap: 0.6rem;
}

.lang-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  font-size: 1rem;
}

.lang-list strong {
  color: var(--ivory);
  font-weight: 400;
}

.contact {
  padding-top: 0.4rem;
}

.contact p {
  max-width: 38rem;
  margin: 0.55rem 0 0.85rem;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
}

.site-footer {
  padding: 0.9rem 0 1.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 720px) {
  .wrap {
    width: min(100% - 2.6rem, var(--max));
  }

  .hero-band {
    padding: 1.15rem 0 1.35rem;
  }

  .hero-grid {
    grid-template-columns: 15.5rem 1fr;
    align-items: center;
    gap: 1.8rem;
  }

  .hero-portrait {
    margin: 0;
    width: 15.5rem;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy .lede,
  .hero-actions {
    margin-inline: 0;
    justify-content: flex-start;
  }

  .metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .score-row {
    grid-template-columns: 14rem 1fr;
    align-items: stretch;
  }

  .split,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero-band {
    padding: 1.25rem 0 1.5rem;
  }

  .section {
    padding: 1.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
