:root {
  --navy:      #1a2740;
  --navy-2:    #0f1a30;
  --charcoal:  #2c3340;
  --ink:       #1a1a1a;
  --gray-700:  #4a4f5a;
  --gray-500:  #8a8e96;
  --gray-300:  #d6d8db;
  --gray-200:  #e8e9ec;
  --gray-100:  #f3f3f1;
  --ivory:     #faf8f4;
  --white:     #ffffff;
  --gold:      #a88a55;
  --gold-soft: #c8b48a;

  --serif: "Noto Serif KR", serif;
  --sans:  "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --maxw: 480px;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 15px;
  letter-spacing: -.005em;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- App shell ---------- */
.app {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0,0,0,.04);
  padding-bottom: 88px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
}
.logo {
  display: flex; align-items: center;
  cursor: pointer;
}
.logo-img {
  height: 24px; width: auto; max-width: 190px; display: block;
  filter: drop-shadow(0 2px 6px rgba(26, 39, 64, 0.12));
  transition: filter 0.2s;
}
.logo-img:hover {
  filter: drop-shadow(0 3px 10px rgba(26, 39, 64, 0.2));
}
.header-actions { display: flex; align-items: center; gap: 4px; }
.btn-text-inquiry {
  font-size: 13px; color: var(--navy); font-weight: 500;
  padding: 8px 12px; background: none; border: none;
}
.btn-hamburger {
  width: 40px; height: 40px; border: none; background: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.btn-hamburger span {
  width: 18px; height: 1.5px; background: var(--navy); display: block;
  transition: transform .3s, opacity .2s;
}
.menu-open .btn-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .btn-hamburger span:nth-child(2) { opacity: 0; }
.menu-open .btn-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Side nav ---------- */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(15,26,48,.4);
  z-index: 60; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
  background: var(--white);
  z-index: 70;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(15,26,48,.1);
}
.menu-open .nav-overlay { opacity: 1; pointer-events: auto; }
.menu-open .nav-drawer { transform: translateX(0); }

.nav-head {
  height: 60px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);
}
.nav-head-title {
  font-family: var(--serif); font-size: 14px; color: var(--navy); font-weight: 600;
}
.nav-close {
  width: 36px; height: 36px; border: none; background: none;
  font-size: 22px; color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
}
.nav-list {
  list-style: none; padding: 16px 0; margin: 0;
  flex: 1;
}
.nav-list li button {
  width: 100%;
  text-align: left;
  padding: 18px 28px;
  background: none; border: none;
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.nav-list li button:hover, .nav-list li button.active { background: var(--gray-100); color: var(--navy); }
.nav-list li button .arrow { font-family: var(--sans); font-size: 14px; color: var(--gray-500); }
.nav-foot {
  padding: 24px 28px; border-top: 1px solid var(--gray-200);
  font-size: 12px; color: var(--gray-500); line-height: 1.7;
}
.nav-foot strong { color: var(--navy); font-family: var(--serif); display: block; margin-bottom: 6px; }

/* ---------- Page ---------- */
.page { padding: 0; }
section { padding: 56px 24px; }
section + section { border-top: 1px solid var(--gray-200); }

.section-head { margin-bottom: 28px; }
.kicker {
  font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .04em;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before { content: ""; width: 18px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  color: var(--navy); margin: 0 0 12px; letter-spacing: -.015em;
  line-height: 1.35;
}
.section-desc {
  font-size: 14.5px; color: var(--gray-700); line-height: 1.85;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--navy);
  background: var(--white); color: var(--navy);
  transition: background .2s, color .2s;
  min-height: 48px;
}
.btn:hover { background: var(--navy); color: #fff; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; font-size: 14px; }
.btn-text {
  background: none; border: none; padding: 0;
  color: var(--navy); font-size: 13.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-text::after { content: "→"; }
.btn-row { display: flex; gap: 10px; margin-top: 24px; }
.btn-row .btn { flex: 1; }

/* ---------- Hero ---------- */
.hero {
  padding: 0 24px 48px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
}
.hero-image {
  margin: 0 -24px 32px;
  height: 380px;
  background-image:
    linear-gradient(
      180deg,
      rgba(10,20,42,.08)  0%,
      rgba(10,20,42,.55) 60%,
      rgba(10,20,42,.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10,20,42,.32) 0%,
      transparent 55%
    ),
    url('../images/hero_building.jpg');
  background-size: cover;
  background-position: center 20%;
  position: relative;
  display: flex; align-items: flex-end; padding: 20px 24px;
  color: rgba(255,255,255,.85);
  font-family: var(--serif);
  font-size: 12px; letter-spacing: .04em;
}
.hero-image::before {
  content: ""; position: absolute; top: 24px; left: 24px;
  width: 28px; height: 1.5px; background: var(--gold-soft);
  z-index: 1;
}
.hero-image-label { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: 28px; line-height: 1.45; letter-spacing: -.02em;
  color: var(--navy); margin: 40px 0 20px;
}
.hero p {
  font-size: 14.5px; color: var(--gray-700); line-height: 1.85;
  margin: 0 0 28px;
}

/* ---------- Quick Links ---------- */
.quick-links {
  background: var(--gray-100);
  padding: 28px 24px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.quick-links h3 {
  font-family: var(--serif); font-size: 13px; color: var(--navy);
  font-weight: 600; margin: 0 0 16px; letter-spacing: 0;
}
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.quick-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 14px 16px;
  text-align: left;
  font-size: 14px; color: var(--ink); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  transition: all .2s;
}
.quick-item:hover { border-color: var(--navy); color: var(--navy); }
.quick-item .arr { color: var(--gray-500); font-size: 13px; }
.quick-item:nth-child(5) { grid-column: 1 / -1; background: var(--navy); color: #fff; border-color: var(--navy); }
.quick-item:nth-child(5) .arr { color: rgba(255,255,255,.7); }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--gray-300); margin-top: 8px; }
.acc-item { border-bottom: 1px solid var(--gray-300); }
.acc-trigger {
  width: 100%; background: none; border: none; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
}
.acc-num { font-family: var(--serif); font-size: 12px; color: var(--gold); font-weight: 600; width: 32px; }
.acc-title { flex: 1; font-family: var(--serif); font-size: 17px; color: var(--navy); font-weight: 600; letter-spacing: -.01em; }
.acc-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--navy); transition: transform .3s; }
.acc-icon::before { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.acc-icon::after  { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.acc-item.open .acc-icon::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 4px 0 36px; }
.acc-item.open .acc-body { max-height: 300px; padding-bottom: 22px; }
.acc-body p { margin: 0; font-size: 14px; color: var(--gray-700); line-height: 1.85; }

/* ---------- Member cards ---------- */
.member-list { display: flex; flex-direction: column; gap: 18px; }
.member-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color .2s;
}
.member-card:hover { border-color: var(--gray-500); }
.member-photo {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, rgba(26,39,64,.04) 0 1px, transparent 1px 14px),
    var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 11px; letter-spacing: .08em;
  font-family: ui-monospace, Menlo, monospace; text-transform: uppercase;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.member-body { padding: 22px 22px 24px; }
.member-role { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .06em; margin-bottom: 8px; text-transform: uppercase; }
.member-name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin: 0 0 4px; letter-spacing: -.01em; }
.member-spec { font-size: 12.5px; color: var(--gray-500); margin: 0 0 14px; }
.member-bio { font-size: 13.5px; color: var(--gray-700); line-height: 1.8; margin: 0 0 12px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.member-career { list-style: none; padding: 0; margin: 0 0 16px; }
.member-career li {
  font-size: 12.5px; color: var(--gray-700); line-height: 1.75;
  padding: 4px 0;
  display: flex; gap: 8px; align-items: baseline;
}
.member-career li::before { content: "—"; color: var(--gold); flex-shrink: 0; font-size: 11px; }
.member-card .btn-text { font-size: 13px; }

/* ---------- About preview ---------- */
.about-preview { background: var(--navy); color: #fff; padding: 56px 24px; margin: 0; }
.about-preview .kicker { color: var(--gold-soft); }
.about-preview .kicker::before { background: var(--gold-soft); }
.about-preview .section-title { color: #fff; font-size: 24px; }
.about-preview .lead { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: #fff; margin: 0 0 16px; font-weight: 500; letter-spacing: -.01em; }
.about-preview p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.85; }
.about-preview .btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.about-preview .btn:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- News ---------- */
.news-list { list-style: none; padding: 0; margin: 16px 0 0; border-top: 1px solid var(--gray-300); }
.news-list li { padding: 18px 4px; border-bottom: 1px solid var(--gray-200); }
.news-list a { display: block; }
.news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-size: 11.5px; }
.news-date { color: var(--gray-500); font-family: var(--sans); letter-spacing: .02em; }
.news-cat { color: var(--navy); font-weight: 600; padding: 2px 8px; border: 1px solid var(--gray-300); font-size: 11px; }
.news-cat.press { color: var(--gold); border-color: var(--gold-soft); }
.news-cat.case  { color: var(--charcoal); border-color: var(--gray-300); }
.news-title-row { font-family: var(--serif); font-size: 15.5px; color: var(--ink); font-weight: 500; line-height: 1.55; letter-spacing: -.01em; margin: 0; }
.news-summary { font-size: 13px; color: var(--gray-500); margin: 6px 0 0; line-height: 1.7; }
.news-loading { text-align: center; padding: 48px 0; color: var(--gray-500); font-size: 14px; }
.news-empty { text-align: center; padding: 48px 0; color: var(--gray-500); font-size: 14px; border-top: 1px solid var(--gray-300); }

/* ---------- Contact ---------- */
.contact-info { margin-top: 20px; }
.info-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.info-row:first-child { border-top: 1px solid var(--gray-300); }
.info-label { font-size: 12px; color: var(--gray-500); font-weight: 500; padding-top: 2px; }
.info-value { font-size: 14px; color: var(--ink); line-height: 1.7; word-break: keep-all; }

/* ---------- Kakao Map ---------- */
.map-wrap { margin-top: 20px; }
#kakao-map {
  width: 100%; height: 220px;
  border: 1px solid var(--gray-200);
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(15,26,48,.08) 100%),
    repeating-linear-gradient(0deg, var(--gray-200) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, var(--gray-200) 0 1px, transparent 1px 24px),
    var(--gray-100);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder-pin {
  width: 14px; height: 14px; background: var(--navy); border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 6px rgba(26,39,64,.15);
}
.map-placeholder-pin::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px; background: #fff; border-radius: 50%;
}
.map-notice {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: var(--gray-500); letter-spacing: .02em; white-space: nowrap;
}

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--gray-300); margin-bottom: 28px; }
.tab {
  flex: 1; padding: 14px 8px;
  background: none; border: none;
  font-family: var(--serif); font-size: 14px; color: var(--gray-500); font-weight: 500;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.tab.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }

/* ---------- Page header ---------- */
.page-head { padding: 36px 24px 32px; background: var(--ivory); border-bottom: 1px solid var(--gray-200); }
.breadcrumb { font-size: 11.5px; color: var(--gray-500); margin-bottom: 14px; letter-spacing: .02em; }
.breadcrumb span { color: var(--navy); font-weight: 500; }
.page-title { font-family: var(--serif); font-size: 28px; color: var(--navy); font-weight: 600; margin: 0 0 12px; letter-spacing: -.015em; }
.page-headline { font-family: var(--serif); font-size: 19px; color: var(--charcoal); font-weight: 500; line-height: 1.55; margin: 0 0 14px; letter-spacing: -.01em; }
.page-intro { font-size: 14px; color: var(--gray-700); line-height: 1.85; margin: 0; }

/* ---------- Values ---------- */
.value-list { list-style: none; padding: 0; margin: 0; }
.value-item { padding: 28px 0; border-bottom: 1px solid var(--gray-200); display: grid; grid-template-columns: 50px 1fr; gap: 14px; }
.value-item:first-child { border-top: 1px solid var(--gray-300); }
.value-num { font-family: var(--serif); font-size: 14px; color: var(--gold); font-weight: 600; padding-top: 4px; letter-spacing: .04em; }
.value-title { font-family: var(--serif); font-size: 18px; color: var(--navy); font-weight: 600; margin: 0 0 8px; letter-spacing: -.01em; }
.value-desc { font-size: 14px; color: var(--gray-700); line-height: 1.8; margin: 0; }

/* ---------- Fixed bottom CTA ---------- */
.cta-bar {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(15,26,48,.06);
  display: grid; grid-template-columns: 1fr 1fr;
  z-index: 40;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.cta-bar a {
  padding: 16px 12px; text-align: center;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px;
}
.cta-bar a:first-of-type { background: var(--navy); color: #fff; }
.cta-bar a:last-of-type { color: var(--navy); border-left: 1px solid var(--gray-200); }
.cta-bar svg { width: 16px; height: 16px; }
.cta-toast {
  position: absolute; top: -44px; left: 50%; transform: translateX(-50%);
  background: var(--charcoal); color: #fff;
  font-size: 12px; font-weight: 500; padding: 8px 16px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  animation: toastIn .2s ease;
  pointer-events: none;
}
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(4px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ---------- Footer ---------- */
footer { background: var(--navy-2); color: rgba(255,255,255,.65); padding: 40px 24px 32px; font-size: 12px; line-height: 2; }
.ft-name { font-family: var(--serif); color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 14px; letter-spacing: -.005em; }
.ft-info { display: flex; flex-direction: column; gap: 0; margin-bottom: 4px; }
.ft-info-row { font-size: 12px; }
.ft-label { color: rgba(255,255,255,.4); margin-right: 6px; }
.ft-attorneys { border-top: 1px solid rgba(255,255,255,.12); margin-top: 14px;
  padding-top: 12px; font-size: 11.5px; color: rgba(255,255,255,.5); line-height: 1.9; }
.ft-copy { margin-top: 18px; font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .03em; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  :root { --maxw: 720px; }
  .app { padding-bottom: 0; }
  .cta-bar { display: none; }
  section { padding: 80px 56px; }
  .hero { padding: 0 56px 64px; }
  .hero h1 { font-size: 36px; margin-top: 48px; }
  .hero-image { margin: 0 -56px 40px; height: 480px; background-position: center 20%; }
  .quick-links { padding: 36px 56px; }
  .quick-grid { grid-template-columns: repeat(5, 1fr); }
  .quick-item:nth-child(5) { grid-column: auto; background: #fff; color: var(--ink); border-color: var(--gray-200); }
  .quick-item:nth-child(5) .arr { color: var(--gray-500); }
  .page-head { padding: 64px 56px 48px; }
  .page-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .about-preview { padding: 80px 56px; }
  footer { padding: 56px 56px 40px; }
  .member-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 1024px) {
  :root { --maxw: 1080px; }
  .header { height: 72px; padding: 0 40px; }
  .hero-image { height: 580px; }
  .logo-img { height: 30px; max-width: 240px; }
  .nav-list-desktop { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
  .nav-list-desktop button {
    background: none; border: none; padding: 10px 18px;
    font-family: var(--serif); font-size: 15px; color: var(--ink); font-weight: 500;
  }
  .nav-list-desktop button.active { color: var(--navy); font-weight: 600; }
  .btn-hamburger { display: none; }
  .member-list { grid-template-columns: 1fr 1fr 1fr; }
  /* 드롭다운 */
  .nav-has-sub { position: relative; }
  .nav-dropdown {
    display: none;
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(26,39,64,.10);
    min-width: 140px;
    padding: 8px 0;
    list-style: none;
    z-index: 100;
  }
  .nav-has-sub:hover .nav-dropdown { display: block; }
  .nav-dropdown li button {
    width: 100%; text-align: left;
    padding: 10px 20px;
    font-size: 13px; color: var(--ink);
    background: none; border: none;
    font-family: var(--sans);
    white-space: nowrap; cursor: pointer;
  }
  .nav-dropdown li button:hover { color: var(--navy); background: var(--gray-100); }
}
@media (max-width: 1023px) { .nav-list-desktop { display: none; } }

/* ---------- 모바일 서브메뉴 ---------- */
.nav-sub-list { list-style: none; padding: 0 0 8px 20px; margin: 0; }
.nav-sub-list li button {
  font-size: 13px; color: var(--gray-500);
  padding: 6px 0; background: none; border: none;
  width: 100%; text-align: left; cursor: pointer;
  font-family: var(--sans);
}
.nav-sub-list li button:hover { color: var(--navy); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,26,48,.45);
  z-index: 100;
  display: flex; align-items: flex-end; justify-content: center;
  animation: fadeIn .2s ease;
}
.modal-sheet {
  width: 100%; max-width: var(--maxw);
  background: var(--white);
  max-height: 90vh; overflow-y: auto;
  animation: slideUp .3s ease;
  border-radius: 0;
}
.modal-handle {
  width: 36px; height: 4px; background: var(--gray-300);
  border-radius: 2px; margin: 14px auto 0;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--gray-200);
}
.modal-head-title {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--navy); letter-spacing: -.01em;
}
.modal-close {
  background: none; border: none; font-size: 24px;
  color: var(--gray-500); cursor: pointer; padding: 0; line-height: 1;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.modal-body { padding: 28px 24px 56px; }
.modal-section-label {
  font-size: 11px; color: var(--gold); font-weight: 600;
  letter-spacing: .06em; margin: 24px 0 10px;
  display: block;
}

/* 프로필 모달 */
.modal-member-photo {
  aspect-ratio: 4/5; max-width: 160px; width: 100%;
  background: repeating-linear-gradient(135deg, rgba(26,39,64,.04) 0 1px, transparent 1px 14px), var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid var(--gray-200);
  font-size: 10px; color: var(--gray-500); font-family: ui-monospace, monospace;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-member-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-member-name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin: 0 0 2px; letter-spacing: -.01em; }
.modal-member-name-en { font-size: 12px; color: var(--gray-500); letter-spacing: .04em; margin: 0 0 6px; }
.modal-member-role { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 10px; }
.modal-member-spec { font-size: 13px; color: var(--gray-700); margin: 0 0 16px; }
.modal-career-list { list-style: none; padding: 0; margin: 0; }
.modal-career-list li {
  font-size: 13.5px; color: var(--gray-700); line-height: 1.75;
  padding: 5px 0; display: flex; gap: 8px; align-items: baseline;
  border-bottom: 1px solid var(--gray-200);
}
.modal-career-list li:last-child { border-bottom: none; }
.modal-career-list li::before { content: "—"; color: var(--gold); flex-shrink: 0; font-size: 11px; }

/* 뉴스 썸네일 */
.news-row-btn { width: 100%; background: none; border: none; padding: 0; text-align: left; cursor: pointer; display: block; }
.news-row-inner { display: flex; gap: 14px; align-items: flex-start; }
.news-row-text { flex: 1; min-width: 0; }
.news-row-thumb { width: 64px; height: 64px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--gray-200); }

/* 뉴스 모달 */
.modal-news-image { width: 100%; max-height: 260px; object-fit: cover; display: block; }
.modal-news-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; font-size: 11.5px; }
.modal-news-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--navy); line-height: 1.4; margin: 0 0 20px; letter-spacing: -.015em;
}
.modal-news-body p { font-size: 14.5px; color: var(--gray-700); line-height: 1.9; margin: 0 0 12px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
