@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

/* =========================================================
   (주)포텐셜 POTENTIAL Co., Ltd. — Design System
   Brand: coral waveform mark  ·  ARTMENT (Art + Management)
   ========================================================= */

:root {
  /* Neutrals */
  --ink:        #14151a;
  --ink-2:      #2c2f38;
  --ink-3:      #5b606d;
  --muted:      #8b8f9a;
  --line:       #e5e0da;
  --line-soft:  #f0ece7;
  --paper:      #fbfaf8;
  --paper-2:    #f4f1ec;
  --night:      #101218;
  --night-2:    #1b1e26;

  /* Brand — from the POTENTIAL logo */
  --brand:       #fa9a93;   /* logo coral */
  --accent:      #b84a41;   /* text-safe deep coral (AA on paper) */
  --accent-soft: #fa9a93;   /* on dark surfaces */
  --accent-wash: #fdeeec;

  /* Type */
  --sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
          'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic',
          'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans', 'Yu Gothic UI',
          'Leelawadee UI', 'Noto Sans Thai', system-ui, sans-serif;
  --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Times New Roman', Garamond, serif;

  /* Layout */
  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Non-Korean scripts: allow normal breaking */
html:not([lang="ko"]) body { word-break: normal; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 900px; }
.section { padding-block: clamp(60px, 8.5vw, 128px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--night { background: var(--night); color: #b8bcc6; }
.section--night h1, .section--night h2, .section--night h3, .section--night h4 { color: #fff; }
.section--paper2 { background: var(--paper-2); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.section--night .eyebrow, .hero .eyebrow { color: var(--accent-soft); }

.display { font-size: clamp(2.2rem, 5.8vw, 4.3rem); line-height: 1.08; letter-spacing: -.035em; }
.h1      { font-size: clamp(1.9rem, 4.3vw, 3.1rem); line-height: 1.14; letter-spacing: -.03em; }
.h2      { font-size: clamp(1.5rem, 3vw, 2.2rem);   line-height: 1.24; letter-spacing: -.025em; }
.h3      { font-size: clamp(1.08rem, 1.7vw, 1.32rem); line-height: 1.36; }
.lead    { font-size: clamp(1.02rem, 1.45vw, 1.18rem); line-height: 1.72; color: var(--ink-3); }
.section--night .lead, .hero .lead { color: #9ba0ab; }
.serif   { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -.01em; }
.small   { font-size: .875rem; line-height: 1.7; }
.muted   { color: var(--muted); }
.stack > * + * { margin-top: 18px; }

.mt-sm { margin-top: 20px; }
.mt-md { margin-top: 36px; }
.mt-lg { margin-top: clamp(34px, 4vw, 56px); }
.align-end { align-items: end; }
.maxw-60 { max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 2px;
  font-size: .875rem; font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 14px; height: 14px; flex: none; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--accent); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #9a3c34; }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--onnight { border: 1px solid rgba(255,255,255,.3); color: #fff; }
.btn--onnight:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px; border-bottom: 1px solid var(--line);
  transition: color .22s var(--ease), border-color .22s var(--ease);
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow svg { width: 13px; height: 13px; transition: transform .22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--night .link-arrow { color: #fff; border-color: rgba(255,255,255,.25); }
.section--night .link-arrow:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* ---------- Status badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--line); color: var(--ink-3); background: #fff;
}
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex: none; }
.badge--done { color: var(--ink-3); }
.badge--live { color: var(--accent); border-color: #eccbc6; background: var(--accent-wash); }
.badge--dev  { color: var(--muted); border-style: dashed; background: transparent; }
.section--night .badge { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); color: #c7cbd4; }
.section--night .badge--live { color: var(--accent-soft); border-color: rgba(250,154,147,.4); background: rgba(250,154,147,.12); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,248,.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }
.header__inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__wave { width: 40px; height: auto; color: var(--brand); flex: none; }
.brand__mark { font-size: 1.02rem; font-weight: 800; letter-spacing: .2em; color: var(--ink); text-transform: uppercase; }
.brand__sub  { font-size: 9.5px; font-weight: 700; letter-spacing: .22em; color: var(--brand); text-transform: uppercase; align-self: flex-end; padding-bottom: 3px; }

.nav { display: flex; align-items: center; gap: clamp(10px, 1.2vw, 20px); }
.nav a {
  position: relative; font-size: .8125rem; font-weight: 500; color: var(--ink-2);
  white-space: nowrap; padding-block: 6px; transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

.header__utils { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header .btn { padding: 10px 18px; font-size: .8125rem; }

/* Language picker */
.langpick { position: relative; }
.langpick__btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line); border-radius: 2px; padding: 7px 11px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; color: var(--ink-2);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.langpick__btn:hover { border-color: var(--ink); color: var(--ink); }
.langpick__btn svg { width: 12px; height: 12px; opacity: .6; }
.langpick__menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 120;
  min-width: 186px; max-height: 62vh; overflow-y: auto;
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  box-shadow: 0 22px 50px -26px rgba(20,21,26,.4);
  padding: 6px; display: none;
}
.langpick.is-open .langpick__menu { display: block; }
.langpick__menu button {
  display: flex; align-items: baseline; gap: 8px; width: 100%;
  padding: 8px 10px; border-radius: 2px; text-align: left;
  font-size: .8125rem; color: var(--ink-2);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.langpick__menu button:hover { background: var(--paper-2); color: var(--ink); }
.langpick__menu button[aria-selected="true"] { background: var(--ink); color: #fff; font-weight: 600; }
.langpick__menu button i { font-style: normal; font-size: 10px; letter-spacing: .1em; opacity: .55; text-transform: uppercase; margin-left: auto; }
.langpick__group {
  padding: 12px 10px 6px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.langpick__group:first-child { padding-top: 6px; }

/* Burger + mobile nav */
.burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), top .2s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after  { top: 0; transform: rotate(-45deg); }

.mobilenav {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 99;
  background: var(--paper); padding: 24px var(--gutter) 48px;
  overflow-y: auto; display: none; flex-direction: column;
}
body.menu-open .mobilenav { display: flex; }
.mobilenav a {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 1.2rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em;
}
.mobilenav a span { font-size: .72rem; font-weight: 600; color: var(--brand); letter-spacing: .06em; }
.mobilenav a em { font-style: normal; }
.mobilenav .btn { margin-top: 26px; justify-content: center; }

@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header .btn { display: none; }
}
@media (max-width: 400px) { .brand__sub { display: none; } }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--night); color: #fff;
  min-height: min(86vh, 760px);
  display: flex; align-items: flex-end;
  padding-block: clamp(84px, 13vw, 144px) clamp(44px, 6vw, 72px);
}
.hero--page { min-height: 0; padding-block: clamp(66px, 9vw, 118px) clamp(48px, 6.5vw, 84px); align-items: center; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(78% 55% at 10% 6%,   rgba(250,154,147,.36) 0%, transparent 62%),
    radial-gradient(58% 48% at 90% 2%,   rgba(184,74,65,.42)   0%, transparent 60%),
    radial-gradient(92% 72% at 52% 110%, rgba(250,154,147,.16) 0%, transparent 66%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 14.28%);
  mask-image: linear-gradient(to bottom, transparent, #000 38%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 38%, #000 86%, transparent);
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero__inner { position: relative; z-index: 2; }
.hero__title { max-width: 17ch; }
.hero--page .hero__title { max-width: 22ch; }
.hero__kicker { margin-top: 22px; max-width: 60ch; }
.hero__meta { margin-top: clamp(28px, 4.5vw, 52px); display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.hero__scroll { margin-top: 38px; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.hero__scroll i { display: block; width: 34px; height: 1px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ''; position: absolute; inset: 0; background: var(--brand); animation: sweep 2.4s var(--ease) infinite; }
@keyframes sweep { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(100%);} }

/* =========================================================
   Grids & cards
   ========================================================= */
.grid { display: grid; gap: clamp(18px, 2.4vw, 34px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--sidebar { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(26px, 5vw, 78px); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--sidebar { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 3px;
  padding: clamp(22px, 2.5vw, 34px);
  transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: 0 18px 40px -28px rgba(20,21,26,.35); }
.card__num { font-size: 11px; font-weight: 800; letter-spacing: .14em; color: var(--brand); display: block; margin-bottom: 14px; }
.card h3 { margin-bottom: 11px; }
.card p { font-size: .9375rem; color: var(--ink-3); }
.card ul { margin-top: 15px; }
.card ul li { position: relative; padding-left: 15px; font-size: .875rem; color: var(--ink-3); line-height: 1.65; }
.card ul li + li { margin-top: 6px; }
.card ul li::before { content: ''; position: absolute; left: 0; top: .68em; width: 6px; height: 1px; background: var(--brand); }
.section--night .card { background: var(--night-2); border-color: rgba(255,255,255,.08); }
.section--night .card p, .section--night .card ul li { color: #9ba0ab; }
.section--night .card:hover { border-color: rgba(255,255,255,.2); box-shadow: none; }

/* Editorial rows */
.rows { border-top: 1px solid var(--line); }
.rows__item {
  display: grid; grid-template-columns: 130px minmax(0,1fr) auto;
  gap: 18px 30px; align-items: start;
  padding: clamp(22px, 2.8vw, 36px) 0; border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.rows__item:hover { background: rgba(250,154,147,.06); }
.rows__meta { font-size: .8125rem; color: var(--muted); letter-spacing: .04em; padding-top: 4px; }
.rows__body h3 { margin-bottom: 10px; }
.rows__body p { font-size: .9375rem; color: var(--ink-3); max-width: 70ch; }
.rows__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag { font-size: 11px; color: var(--ink-3); border: 1px solid var(--line); border-radius: 2px; padding: 3px 9px; background: #fff; }
.section--night .tag { background: transparent; border-color: rgba(255,255,255,.18); color: #a8adb8; }
@media (max-width: 760px) { .rows__item { grid-template-columns: 1fr; gap: 12px; } .rows__side { justify-self: start; } }

/* Facts list */
.facts { border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 210px 1fr; gap: 14px 26px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.facts dt { font-size: .8125rem; font-weight: 700; color: var(--ink); }
.facts dd { margin: 0; font-size: .9375rem; color: var(--ink-3); }
@media (max-width: 620px) { .facts div { grid-template-columns: 1fr; gap: 4px; } }

/* Media placeholder */
.media { position: relative; border-radius: 3px; overflow: hidden; background: var(--night); aspect-ratio: 4/3; display: flex; align-items: flex-end; padding: 20px; }
.media::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 20% 12%, rgba(250,154,147,.46), transparent 66%),
    radial-gradient(60% 60% at 86% 88%, rgba(184,74,65,.44), transparent 62%),
    linear-gradient(160deg, #1d2028, #101218);
}
.media::after { content: ''; position: absolute; inset: 0; opacity: .28; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 1px, transparent 1px 9px); }
.media--wide { aspect-ratio: 16/9; }
.media--tall { aspect-ratio: 3/4; }
.media--sq   { aspect-ratio: 1/1; }
.media__label { position: relative; z-index: 2; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stats > div { background: var(--paper); padding: clamp(20px, 2.4vw, 32px); }
.section--night .stats { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.1); }
.section--night .stats > div { background: var(--night); }
.stats strong { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.section--night .stats strong { color: #fff; }
.stats span { display: block; margin-top: 8px; font-size: .8125rem; color: var(--muted); }
.stats--text strong { font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.35; letter-spacing: -.02em; }
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Timeline (연혁) */
.timeline { position: relative; margin-top: clamp(30px, 4vw, 50px); }
.tl__year {
  display: grid; grid-template-columns: 140px minmax(0,1fr);
  gap: 16px 34px; padding: clamp(22px, 2.6vw, 34px) 0;
  border-top: 1px solid var(--line);
}
.tl__year:last-child { border-bottom: 1px solid var(--line); }
.tl__label { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; align-content: start; }
.tl__label b { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.tl__list li { position: relative; padding-left: 18px; font-size: .9375rem; color: var(--ink-3); line-height: 1.68; }
.tl__list li + li { margin-top: 9px; }
.tl__list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--brand); }
.tl__list li b { color: var(--ink); font-weight: 600; }
.tl__list li em { font-style: normal; color: var(--muted); font-size: .8125rem; }
@media (max-width: 720px) { .tl__year { grid-template-columns: 1fr; gap: 12px; } }

/* Artist grid */
.artists { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 1000px) { .artists { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .artists { grid-template-columns: repeat(2, 1fr); } }
.artist { display: block; }
.artist .media { margin-bottom: 14px; }
.artist__role { font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.artist__name { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-top: 6px; letter-spacing: -.02em; line-height: 1.3; }
.artist__meta { font-size: .8125rem; color: var(--muted); margin-top: 5px; line-height: 1.55; }

/* Artist card as a button (opens profile) */
.artist--btn {
  display: block; width: 100%; text-align: left; padding: 0;
  background: none; border: 0; cursor: pointer;
}
.artist--btn .media { transition: transform .4s var(--ease); }
.artist--btn .media img { transition: transform .5s var(--ease), filter .4s var(--ease); }
.artist--btn:hover .media img { transform: scale(1.05); }
.artist--btn:hover .artist__name { color: var(--accent); }
.section--night .artist--btn:hover .artist__name { color: var(--accent-soft); }
.artist__name { transition: color .22s var(--ease); }
.artist__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.artist__more svg { width: 11px; height: 11px; transition: transform .22s var(--ease); }
.artist--btn:hover .artist__more { color: var(--accent); }
.artist--btn:hover .artist__more svg { transform: translateX(3px); }
.section--night .artist--btn:hover .artist__more { color: var(--accent-soft); }
.artist__credit {
  display: block; margin-top: 6px; font-size: 10px; color: var(--muted); opacity: .8; letter-spacing: .01em;
}

/* Profile dialog */
.bio {
  width: min(920px, calc(100vw - 2rem));
  max-height: min(88vh, 900px);
  padding: 0; border: 0; border-radius: 4px;
  background: var(--paper); color: var(--ink-2);
  box-shadow: 0 40px 90px -30px rgba(10,11,14,.6);
  overflow: hidden;
}
.bio::backdrop { background: rgba(10,11,14,.72); backdrop-filter: blur(3px); }
.bio__scroll { max-height: min(88vh, 900px); overflow-y: auto; }
.bio__grid { display: grid; grid-template-columns: 300px minmax(0,1fr); }
@media (max-width: 760px) { .bio__grid { grid-template-columns: 1fr; } }
.bio__media { position: relative; background: var(--night); }
.bio__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
@media (max-width: 760px) { .bio__media img { aspect-ratio: 16/10; } }
.bio__body { padding: clamp(26px, 3.4vw, 44px); }
.bio__role { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.bio__name { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--ink); letter-spacing: -.025em; margin-top: 8px; line-height: 1.2; }
.bio__sub { font-size: .875rem; color: var(--muted); margin-top: 6px; }
.bio__text { margin-top: 22px; }
.bio__text p { font-size: .9375rem; line-height: 1.8; color: var(--ink-3); }
.bio__text p + p { margin-top: 14px; }
.bio__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.bio__credit { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .75rem; color: var(--muted); line-height: 1.6; }
.bio__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(251,250,248,.92); color: var(--ink);
  box-shadow: 0 4px 16px -6px rgba(10,11,14,.5);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.bio__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.bio__close svg { width: 15px; height: 15px; }
body.dialog-open { overflow: hidden; }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 30px); }
@media (max-width: 860px) { .team { grid-template-columns: repeat(2, 1fr); } }
.team__role { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.team__name { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-top: 8px; letter-spacing: -.02em; }
.team__en { font-size: .8125rem; color: var(--muted); margin-top: 3px; }
.team__note { font-size: .875rem; color: var(--ink-3); margin-top: 12px; }
.section--night .team__role { color: var(--accent-soft); }
.section--night .team__name { color: #fff; }
.section--night .team__note { color: #9ba0ab; }

/* Organisation grid */
.orgs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.orgs > div { background: #fff; padding: 15px 18px; font-size: .875rem; color: var(--ink-2); line-height: 1.5; }
.orgs > div small { display: block; font-size: .72rem; color: var(--muted); margin-top: 3px; }

/* 관리자에서 등록한 소식 본문 */
.news__body { margin-top: 12px; }
.news__body p { font-size: .9375rem; line-height: 1.8; color: var(--ink-3); }
.news__body p + p { margin-top: 12px; }
.rows__body .media { max-width: 620px; }

/* Empty state */
.empty {
  border: 1px dashed var(--line); border-radius: 3px;
  padding: clamp(36px, 6vw, 72px) var(--gutter); text-align: center;
}
.empty h3 { margin-bottom: 10px; }
.empty p { font-size: .9375rem; color: var(--ink-3); max-width: 46ch; margin-inline: auto; }

/* Region list */
.regions { border-top: 1px solid var(--line); }
.region { display: grid; grid-template-columns: 210px minmax(0,1fr); gap: 16px 38px; padding: clamp(20px, 2.6vw, 32px) 0; border-bottom: 1px solid var(--line); }
.region h3 { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.region h3 em { font-style: normal; font-size: .72rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.region p { font-size: .9375rem; color: var(--ink-3); }
.section--night .regions, .section--night .region { border-color: rgba(255,255,255,.12); }
.section--night .region p { color: #9ba0ab; }
@media (max-width: 720px) { .region { grid-template-columns: 1fr; gap: 10px; } }

/* Notice */
.notice { border-left: 2px solid var(--accent); background: var(--accent-wash); padding: 18px 22px; border-radius: 0 3px 3px 0; }
.notice p { font-size: .875rem; color: #83382f; line-height: 1.7; }
.notice strong { color: #6d2b23; }
.section--night .notice { background: rgba(250,154,147,.12); border-left-color: var(--brand); }
.section--night .notice p, .section--night .notice strong { color: #edc4bd; }

/* CTA */
.cta { background: var(--night); color: #fff; position: relative; overflow: hidden; padding-block: clamp(52px, 6.5vw, 92px); }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 120% at 88% 8%, rgba(250,154,147,.3), transparent 62%); }
.cta__inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; }
.cta h2 { color: #fff; max-width: 24ch; }
.cta p { color: rgba(255,255,255,.6); margin-top: 14px; max-width: 48ch; font-size: .9375rem; }

/* =========================================================
   Forms
   ========================================================= */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .8125rem; font-weight: 700; color: var(--ink); }
.field label span { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .9375rem; color: var(--ink);
  padding: 13px 15px; background: #fff; border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(250,154,147,.22); }
.field__hint { font-size: .75rem; color: var(--muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.form__foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--night); color: #8d929d; padding-block: clamp(48px, 5.5vw, 76px) 30px; }
.footer h4 { color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer__top { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr)); gap: 38px; }
.footer a { color: #b0b5bf; font-size: .875rem; transition: color .2s var(--ease); }
.footer a:hover { color: #fff; }
.footer li + li { margin-top: 9px; }
.footer .brand__mark { color: #fff; }
.footer .brand__sub { color: var(--brand); }
.footer__tag { margin-top: 16px; font-size: .875rem; line-height: 1.75; color: #8d929d; max-width: 36ch; }
.footer__legal { margin-top: 16px; font-size: .78rem; line-height: 1.8; color: #6f747f; }
.footer__bottom {
  margin-top: clamp(36px, 4.5vw, 56px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; font-size: .75rem; color: #6f747f;
}
.footer__bt { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer a.footer__admin {
  font-size: .72rem; color: #6f747f; line-height: 1;
  padding: 5px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.footer a.footer__admin:hover { color: var(--brand); border-color: rgba(250,154,147,.5); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* =========================================================
   Motion
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll i::after { animation: none; }
}

/* Language-loading state */
html.i18n-busy body { cursor: progress; }
