:root {
  --bg:     #121210;
  --card:   #1C1C18;
  --card2:  #242420;
  --text:   #F0EAD8;
  --muted:  rgba(240,234,216,.52);
  --hair:   rgba(240,234,216,.10);
  --accent: #D4920E;
  --teal:   #3D8B7A;
  --terra:  #B84C2A;
  --navy:   #2D5A8E;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans KR", ui-sans-serif, system-ui, -apple-system,
    "Apple SD Gothic Neo", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  transition: background .25s, color .25s;
}

/* Light mode */
body.light {
  --bg:     #F5F0E8;
  --card:   #FFFFFF;
  --card2:  #EDE8DF;
  --text:   #1C1A14;
  --muted:  rgba(28,26,20,.52);
  --hair:   rgba(28,26,20,.12);
  --shadow: 0 4px 24px rgba(0,0,0,.10);
}

body.light .statNum  { color: var(--accent); }
body.light .meta     { color: rgba(28,26,20,.45); }
body.light .readTime { color: rgba(28,26,20,.45); }
body.light .awardYear{ color: rgba(28,26,20,.40); }
body.light footer    { color: rgba(28,26,20,.40); }

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

/* Layout */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 20px 100px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 32px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.mark {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--accent);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.mark:after {
  content: "";
  position: absolute;
  bottom: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.20);
}

.brand .name  { font-weight: 900; font-size: 16px; letter-spacing: -.02em; }
.brand .role  { color: var(--muted); font-size: 13px; margin-top: 3px; }

nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: .15s ease;
}

.chip:hover {
  background: var(--card2);
  color: var(--text);
  border-color: rgba(240,234,216,.22);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  margin-bottom: 14px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.pad { padding: 24px; }
.heroMain { min-height: 260px; }

/* Accent bar on heroMain */
.heroMain:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}

/* Profile row */
.profileRow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.profileImg {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex: 0 0 auto;
}

.profileName { font-weight: 900; font-size: 16px; letter-spacing: -.02em; }
.profileRole { color: var(--muted); font-size: 13px; margin-top: 3px; }

.headline {
  font-weight: 800;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}

.sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.80;
}

.accentLine {
  height: 2px;
  background: var(--accent);
  width: 40px;
  border-radius: 999px;
  margin: 16px 0;
  opacity: .7;
}

.kvs { display: flex; gap: 10px; flex-wrap: wrap; }

.kv {
  flex: 1 1 200px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card2);
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--accent);
  flex: 0 0 auto;
}

.kv .k { font-size: 11px; color: var(--muted); margin-bottom: 4px; letter-spacing: .04em; text-transform: uppercase; }
.kv .v { font-size: 13px; font-weight: 700; }

.ctaRow { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card2);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: .15s ease;
}

.btn:hover { background: var(--card2); border-color: rgba(240,234,216,.25); transform: translateY(-1px); }

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.btn.primary:hover { opacity: .90; }

/* Side */
.side { display: flex; flex-direction: column; gap: 10px; }

.note {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card);
  box-shadow: var(--shadow);
}

.note h3 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.note p { margin: 0; color: var(--text); line-height: 1.75; font-size: 13px; }

/* Stats */
.statsRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.stat {
  padding: 18px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card);
  text-align: center;
  box-shadow: var(--shadow);
}

.statNum {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.statLabel {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}

/* Section head */
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
}

.sectionHead h2 { margin: 0; font-size: 16px; font-weight: 900; letter-spacing: -.02em; }
.sectionHead .hint { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* Card grid */
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}

.post {
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: .15s ease;
}

.post:hover { transform: translateY(-3px); border-color: rgba(240,234,216,.22); }

/* Career thumbs — solid flat colors */
.thumb {
  height: 110px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
}

.thumb1 { background: var(--navy); }
.thumb2 { background: var(--teal); }
.thumb3 { background: var(--terra); }

/* Geometric circle decoration */
.thumb:after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.thumbMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgba(0,0,0,.25);
  border-radius: 3px;
  padding: 5px 9px;
}

.thumbCompany { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.95); }
.thumbPeriod  { font-size: 10px; color: rgba(255,255,255,.75); }

/* Blog thumbs */
.thumbBlog { height: 150px; background: var(--card2); padding: 0; }
.thumbBlog img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: .90;
}

.thumbBlog:after { display: none; }

/* Post body */
.postBody {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.metaRow { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.meta { font-size: 11px; color: var(--muted); }

.tags { display: flex; gap: 5px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--hair);
  background: var(--card2);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.postTitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -.02em;
  font-weight: 900;
}

.postTitle a { color: inherit; }
.postTitle a:hover { color: var(--accent); }

.excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.80;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.80em * 3);
}

.postFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px 14px;
  margin-top: auto;
}

.readTime { font-size: 11px; color: var(--muted); }

.readBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card2);
  font-weight: 700;
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  transition: .15s ease;
}

.readBtn:hover { border-color: var(--accent); color: var(--accent); }

/* Awards */
.awardsList {
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 36px;
}

.awardItem {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hair);
  transition: .12s ease;
}

.awardItem:last-child { border-bottom: none; }
.awardItem:hover { background: var(--card2); }

.awardYear { font-size: 11px; color: var(--muted); white-space: nowrap; padding-top: 2px; min-width: 60px; }
.awardTitle { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.awardSub   { font-size: 12px; color: var(--muted); }

/* Contact */
.contact { margin-bottom: 36px; }
.contact h2 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.02em; }

/* Footer */
footer {
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  color: var(--muted);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero        { grid-template-columns: 1fr; }
  .posts       { grid-template-columns: 1fr; }
  .statsRow    { grid-template-columns: repeat(2, 1fr); }
  nav          { justify-content: flex-start; }
  .post        { min-height: unset; }
  .thumbBlog   { height: 170px; }
}

@media (max-width: 480px) {
  .awardItem   { flex-direction: column; gap: 2px; }
  .awardYear   { min-width: unset; }
}

/* Entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .fadeIn      { animation: fadeUp .55s ease both; }
  .fadeIn.d2   { animation-delay: .06s; }
  .fadeIn.d3   { animation-delay: .12s; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
