@font-face {
  font-family: "Pretendard Variable";
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
  src: url("/assets/app/media/fonts/PretendardVariable-302ec55f5b4320354ec6b35a53dead87.woff2") format("woff2-variations");
}

:root {
  --color-primary: #173b63;
  --color-primary-dark: #102a46;
  --color-primary-deep: #0a1d31;
  --color-accent: #4b8bc4;
  --color-text: #111827;
  --color-text-secondary: #667085;
  --color-bg: #fff;
  --color-bg-secondary: #f4f7fa;
  --color-border: #dfe5eb;
  --color-line-light: rgba(255,255,255,.18);
  --font-sans: "Pretendard Variable", Pretendard, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  --container-width: 1240px;
  --header-height: 88px;
  --section-space: clamp(108px, 11vw, 176px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --btn-color-primary: #0078cb;
  --btn-color-primary-dark: #005ea3;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid #75b9f5;
  outline-offset: 4px;
}
.skip-link {
  position: fixed; z-index: 9999; left: 16px; top: -100px;
  padding: 12px 18px; color: #fff; background: var(--color-primary);
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 48px), var(--container-width)); margin: 0 auto; }
.section { padding: var(--section-space) 0; }
.desktop-only { display: block; }
.eyebrow {
  margin: 0 0 24px;
  color: var(--color-accent);
  font-size: 12px; line-height: 1;
  font-weight: 700; letter-spacing: .2em;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 32px; height: 1px;
  margin: 0 12px 3px 0; background: currentColor;
}
.eyebrow--light { color: #9fc8eb; }

/* Header */
.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto;
  height: var(--header-height);
  color: #fff;
  transition: height .35s var(--ease-out), color .35s, background .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  height: 72px; color: var(--color-text); background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(17,24,39,.09);
  backdrop-filter: blur(14px);
}
.header-inner { height: 100%; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; line-height: 1; white-space: nowrap; }
.brand-name { font-size: 23px; font-weight: 700; letter-spacing: -.055em; }
.brand-role { font-size: 13px; font-weight: 500; letter-spacing: .04em; opacity: .78; }
.brand--dark { color: var(--color-primary-dark); }
.site-header .brand,
.mobile-menu-top .brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
}
.site-header .brand { height: 100%; }
.mobile-menu-top .brand { min-height: 59px; }
.site-header .brand::before,
.mobile-menu-top .brand::before {
  content: "";
  flex: 0 0 auto;
  width: 58px;
  height: 59px;
  margin-right: 14px;
  background: transparent url("/assets/app/media/logo-04099b384afd3d0570ef9237035b255d.png") center / contain no-repeat;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.site-header .brand-name,
.mobile-menu-top .brand-name,
.site-header .brand-role,
.mobile-menu-top .brand-role {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
}
.site-header .brand-name,
.mobile-menu-top .brand-name { font-size: 23px; font-weight: 720; line-height: 1; letter-spacing: -.045em; }
.site-header .brand-role,
.mobile-menu-top .brand-role { margin-left: 6px; font-size: 13px; font-weight: 520; line-height: 1; letter-spacing: 0; opacity: .78; transform: translateY(5px); }
.site-header.is-scrolled .brand::before { width: 48px; height: 49px; margin-right: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 500; }
.desktop-nav a::after {
  content: ""; position: absolute; inset: auto 0 -8px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-out);
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  display: flex; align-items: center; gap: 22px; min-height: 42px;
  margin-left: 38px; padding: 0 18px;
  border: 1px solid rgba(255,255,255,.56);
  font-size: 13px; font-weight: 600; transition: .3s;
}
.site-header.is-scrolled .header-cta { color: #fff; background: var(--btn-color-primary); border-color: var(--btn-color-primary); }
.header-cta:hover { color: var(--color-primary-dark); background: #fff; }
.site-header.is-scrolled .header-cta:hover { background: var(--btn-color-primary-dark); }
.menu-toggle { display: none; }

/* Mobile navigation */
.mobile-menu {
  visibility: hidden; position: fixed; z-index: 1100; inset: 0;
  display: flex; flex-direction: column;
  padding: 28px 24px 32px;
  background: #f7f9fb; opacity: 0; transform: translateY(-16px); overflow-y: auto; overscroll-behavior: contain;
  transition: opacity .35s, transform .5s var(--ease-out), visibility .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.menu-close {
  position: relative; width: 44px; height: 44px; padding: 0;
  border: 0; background: transparent; cursor: pointer;
}
.menu-close span { position: absolute; left: 11px; top: 21px; width: 24px; height: 1px; background: var(--color-primary-dark); }
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.mobile-nav { display: flex; flex-direction: column; margin: auto 0; }
.mobile-nav a {
  display: flex; align-items: center; min-height: 68px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary-dark); font-size: clamp(24px, 7vw, 34px); font-weight: 600;
  letter-spacing: -.04em;
}
.mobile-nav a span { width: 48px; color: var(--color-accent); font-size: 10px; letter-spacing: .15em; }
.mobile-menu-contact { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.mobile-menu-contact p { margin: 0; color: var(--color-text-secondary); font-size: 13px; }
.mobile-menu-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--color-primary-dark); font-size: 13px; font-weight: 650; text-align: right; white-space: nowrap; }

/* Hero */
.hero { position: relative; min-height: 780px; height: 100svh; color: #fff; overflow: hidden; background: var(--color-primary-deep); }
.hero-media {
  position: absolute; inset: 0;
  background: url("/assets/app/media/hero-office-bba1b81be531b4bafef8eacea3c0fe2c.jpg") center 48% / cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,23,40,.92) 0%, rgba(9,32,54,.76) 45%, rgba(8,27,46,.28) 78%),
    linear-gradient(0deg, rgba(8,26,44,.55), transparent 46%);
}
.hero-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 72px;
}
.hero-eyebrow { margin-bottom: 30px; color: #a9c7df; }
.hero h1 {
  max-width: 860px; margin: 0;
  font-size: clamp(48px, 5.2vw, 74px); line-height: 1.2;
  font-weight: 600; letter-spacing: -.055em;
}
.hero h1 em, .career h2 em { color: #f3cd41; font-style: normal; font-weight: 400; }
.hero-description {
  max-width: 680px; margin: 35px 0 0;
  color: rgba(255,255,255,.76); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 42px; margin-top: 46px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 32px;
  min-height: 58px; padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px; font-weight: 650;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button--light { min-width: 180px; color: var(--color-primary-dark); background: #fff; }
.button--light:hover { color: #fff; background: var(--color-accent); }
.button--primary { color: #fff; background: var(--btn-color-primary); }
.button--primary:hover { background: var(--btn-color-primary-dark); }
.button--outline-light { min-width: 178px; color: #fff; border-color: rgba(255,255,255,.55); }
.button--outline-light:hover { color: var(--color-primary-dark); background: #fff; }
.text-link { display: inline-flex; gap: 20px; align-items: center; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 600; }
.text-link span, .arrow-link span { transition: transform .25s var(--ease-out); }
.text-link:hover span, .arrow-link:hover span { transform: translateX(5px); }
.text-link--light { color: #fff; }
.scroll-indicator {
  position: absolute; z-index: 2; left: max(24px, calc((100vw - var(--container-width)) / 2)); bottom: 36px;
  display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,.68); font-size: 9px; font-weight: 600; letter-spacing: .22em;
  writing-mode: vertical-rl;
}
.scroll-indicator i { display: block; position: relative; width: 1px; height: 56px; overflow: hidden; background: rgba(255,255,255,.28); }
.scroll-indicator i::after {
  content: ""; position: absolute; inset: -100% 0 auto; width: 1px; height: 100%; background: #fff;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateY(0); } 60%, 100% { transform: translateY(200%); } }
.hero-index { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--container-width)) / 2)); bottom: 40px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.66); font-size: 10px; }
.hero-index b { width: 56px; height: 1px; background: rgba(255,255,255,.3); }

/* Attorney */
.attorney { overflow: hidden; }
.attorney-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(64px, 9vw, 138px); align-items: center; }
.attorney-portrait { position: relative; padding-left: clamp(0px, 3vw, 42px); }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: #e6ebef; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(16,42,70,.06); }
.portrait-frame img { height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.02); }
.portrait-caption { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 18px; color: var(--color-text-secondary); font-size: 9px; line-height: 1.6; letter-spacing: .12em; text-transform: uppercase; }
.portrait-mark { color: var(--color-primary); font-family: var(--font-sans); font-size: 42px; font-style: italic; letter-spacing: 0; }
.attorney-copy { max-width: 610px; }
.attorney-copy h2, .section-heading h2, .form-download-heading h2 {
  margin: 0; color: var(--color-primary-dark);
  font-size: clamp(42px, 4.6vw, 62px); line-height: 1.15; letter-spacing: -.055em;
}
.attorney-copy h2 span { color: var(--color-text-secondary); font-size: .54em; font-weight: 450; letter-spacing: -.02em; }
.lead-quote { margin: 46px 0; color: #27384a; font-size: clamp(22px, 2.1vw, 29px); line-height: 1.65; font-weight: 450; letter-spacing: -.025em; }
.attorney-facts { border-top: 1px solid var(--color-border); }
.attorney-facts > div { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 19px 0; border-bottom: 1px solid var(--color-border); align-items: center; }
.attorney-facts span { color: var(--color-text-secondary); font-size: 13px; }
.attorney-facts strong { color: var(--color-primary-dark); font-size: 15px; font-weight: 600; }
.arrow-link { display: inline-flex; align-items: center; gap: 38px; margin-top: 34px; padding-bottom: 6px; border-bottom: 1px solid var(--color-primary); color: var(--color-primary); font-size: 14px; font-weight: 650; }

/* Practice */
.practice { background: var(--color-bg-secondary); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.section-heading .eyebrow { margin-bottom: 22px; }
.section-heading > p { margin: 0 0 8px; color: var(--color-text-secondary); font-size: 16px; line-height: 1.75; }
.practice-list {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px;
}
.practice-card {
  position: relative;
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  min-width: 0;
  min-height: 304px;
  padding: 24px 22px 26px;
  overflow: hidden;
  border: 1px solid #d8e0e8;
  background: rgba(255,255,255,.78);
  transition: border-color .3s, background .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.practice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease-out);
}
.practice-number {
  align-self: start;
  padding-top: 4px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .16em;
}
.practice-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 12px;
  border: 1px solid #dbe4ec;
  color: var(--color-primary);
  background: #f7fafc;
  transition: color .3s, border-color .3s, background .3s;
}
.practice-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.practice-content {
  grid-column: 1 / -1;
  align-self: end;
  min-width: 0;
  padding-top: 38px;
}
.practice-content h3 {
  min-height: 2.55em;
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.28;
  letter-spacing: -.045em;
}
.practice-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid #dfe6ed;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}
.practice-keywords li { display: inline-flex; align-items: center; white-space: nowrap; }
.practice-keywords li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 2px;
  margin: 0 7px;
  border-radius: 50%;
  background: #9aa9b7;
}
@media (hover: hover) and (pointer: fine) {
  .practice-card:hover {
    z-index: 1;
    border-color: #9cb9d3;
    background: #fff;
    box-shadow: 0 20px 42px rgba(16,42,70,.09);
    transform: translateY(-5px);
  }
  .practice-card:hover::before { transform: scaleY(1); }
  .practice-card:hover .practice-icon {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary);
  }
}

/* Career */
.career { color: #fff; background: var(--color-primary-dark); overflow: hidden; }
.career-grid { display: grid; grid-template-columns: .95fr 1.05fr; grid-template-areas: "intro stats" "highlight highlight"; gap: 90px 10vw; }
.career-intro { grid-area: intro; }
.career-intro h2 { margin: 0; font-size: clamp(40px, 4.6vw, 61px); line-height: 1.28; letter-spacing: -.055em; }
.career-intro > p:last-child { margin: 36px 0 0; color: rgba(255,255,255,.61); font-size: 15px; }
.career-stats { grid-area: stats; display: grid; grid-template-columns: repeat(3,1fr); align-items: end; border-bottom: 1px solid var(--color-line-light); }
.stat { min-height: 190px; padding: 18px 22px 30px; border-left: 1px solid var(--color-line-light); display: flex; flex-direction: column; justify-content: flex-end; }
.stat strong { font-size: clamp(32px, 3vw, 48px); font-weight: 500; letter-spacing: -.04em; }
.stat strong sup { margin-left: 3px; font-size: .43em; font-weight: 500; }
.stat span { margin-top: 10px; color: rgba(255,255,255,.56); font-size: 12px; }
.career-highlight { grid-area: highlight; position: relative; padding: 48px 0 0 24%; border-top: 1px solid var(--color-line-light); }
.career-highlight::before { content: "“"; position: absolute; left: 2%; top: 26px; color: rgba(159,200,235,.24); font-family: var(--font-sans); font-size: 180px; line-height: 1; }
.career-label { display: block; margin-bottom: 28px; color: #9fc8eb; font-size: 10px; letter-spacing: .2em; }
.career-highlight p { margin: 0; font-size: clamp(33px, 4vw, 52px); line-height: 1.38; font-weight: 350; letter-spacing: -.04em; }
.career-highlight p strong { color: #f3cd41; font-weight: 600; }
.career-year { display: block; margin-top: 28px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .14em; }

/* Insights */
.section-heading--center { align-items: center; }
.insights { overflow: hidden; }
.insight-swiper { width: 100%; max-width: 100%; overflow: hidden; }
.article-card { height: auto; }
.article-card > a { display: block; height: 100%; }
.article-image { position: relative; aspect-ratio: 1.45 / 1; overflow: hidden; background: #dbe2e8; }
.article-image img { height: 100%; object-fit: cover; filter: saturate(.65); transition: transform .65s var(--ease-out), filter .4s; }
.article-card:hover .article-image img { transform: scale(1.035); filter: saturate(.85); }
.article-image > span { position: absolute; left: 18px; top: 18px; padding: 6px 10px; color: #fff; background: rgba(16,42,70,.88); font-size: 10px; font-weight: 600; letter-spacing: .04em; }
.article-body { position: relative; padding: 24px 36px 12px 0; }
.article-body time { color: #84909d; font-size: 11px; letter-spacing: .04em; }
.article-body h3 { min-height: 62px; margin: 12px 0 12px; color: var(--color-primary-dark); font-size: 21px; line-height: 1.48; letter-spacing: -.025em; transition: color .25s; }
.article-card:hover h3 { color: var(--color-accent); }
.article-body p { margin: 0; color: var(--color-text-secondary); font-size: 14px; line-height: 1.75; }
.article-arrow { position: absolute; top: 24px; right: 2px; color: var(--color-primary); transition: transform .25s; }
.article-card:hover .article-arrow { transform: translateX(5px); }
.swiper-pagination { display: none; }
.insights-more { display: flex; justify-content: flex-end; }

/* Form downloads */
.form-download { background: var(--color-bg-secondary); }
.form-download-grid { display: grid; grid-template-columns: .36fr .64fr; gap: clamp(60px, 9vw, 130px); }
.form-download-heading { position: relative; }
.form-download-heading > p:not(.eyebrow) { margin: 26px 0 0; color: var(--color-text-secondary); }
.form-download-list { border-top: 2px solid var(--color-primary-dark); }
.form-download-item { position: relative; display: grid; width: 100%; grid-template-columns: 112px minmax(0, 1fr) 86px 40px; gap: 18px; align-items: center; min-height: 94px; padding: 15px 4px; border-bottom: 1px solid var(--color-border); touch-action: manipulation; transition: padding .25s, background .25s; }
.form-download-category { display: inline-flex; justify-self: start; align-items: center; min-height: 26px; padding: 0 9px; border: 1px solid #c9d8e5; color: var(--color-primary); background: #edf3f8; font-size: 10px; font-weight: 650; white-space: nowrap; }
.form-download-item h3 { margin: 0 0 5px; color: #253445; font-size: 16px; font-weight: 570; letter-spacing: -.015em; }
.form-download-item div span { color: #7e8994; font-size: 11px; }
.form-download-item time { color: #8b959f; font-size: 11px; text-align: right; white-space: nowrap; }
.form-download-arrow { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #cad3dc; border-radius: 50%; color: var(--color-primary); transition: color .25s, background .25s, border-color .25s, transform .25s; }
.form-download-item:focus-visible { background: #fff; }
.form-download-item:focus-visible .form-download-arrow { color: #fff; background: var(--color-primary); border-color: var(--color-primary); }
@media (hover: hover) and (pointer: fine) {
  .form-download-item:hover { padding-left: 12px; background: #fff; }
  .form-download-item:hover .form-download-arrow { color: #fff; background: var(--color-primary); border-color: var(--color-primary); transform: translateY(2px); }
}
.status { justify-self: start; padding: 5px 8px; border: 1px solid; font-size: 10px; font-weight: 600; }
.status--done { color: #236c5d; border-color: #9bc7be; background: #edf7f5; }
.status--waiting { color: #7a838c; border-color: #cdd3d9; background: #f4f5f6; }
.item-arrow { color: var(--color-primary); transition: transform .25s; }
.list-footer { text-align: right; }

/* Notice ticker */
.notice-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
.notice-ticker-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  min-height: 94px;
}
.notice-ticker-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.notice-ticker-heading > span {
  color: var(--color-accent);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
}
.notice-ticker-heading h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 19px;
  letter-spacing: -.03em;
}
.notice-ticker-window {
  position: relative;
  height: 72px;
  overflow: hidden;
}
.notice-ticker-list {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.notice-ticker-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .46s ease, transform .46s var(--ease-out);
}
.notice-ticker-item.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.notice-ticker-item.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}
.notice-ticker-item.is-reset {
  transition: none;
}
.notice-ticker-item a {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 82px;
  gap: 18px;
  align-items: center;
  height: 100%;
}
.notice-ticker-item a > span {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 650;
}
.notice-ticker-item strong {
  overflow: hidden;
  color: #2c3d4e;
  font-size: 15px;
  font-weight: 580;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice-ticker-item time {
  color: #8f99a3;
  font-size: 10px;
  text-align: right;
}
.notice-ticker-controls {
  display: flex;
  align-items: center;
}
.notice-ticker-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: #fff;
  cursor: pointer;
}
.notice-ticker-controls button + button { border-left: 0; }
.notice-ticker-controls button:hover { color: #fff; background: var(--color-primary); }
.notice-ticker-controls > a {
  margin-left: 20px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}
.notice-ticker-controls > a span { margin-left: 7px; }

/* Contact CTA */
.contact-cta { position: relative; display: grid; min-height: 570px; color: #fff; background: var(--color-primary-deep); overflow: hidden; }
.contact-cta-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,23,40,.97) 0%, rgba(6,23,40,.86) 48%, rgba(6,23,40,.52)), url("/assets/app/media/contact-city-e134c7ca55f1760dec14f199ddc50c46.jpg") center / cover no-repeat; }
.contact-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 470px); gap: clamp(64px, 9vw, 130px); align-items: center; align-self: center; padding: 92px 0; }
.contact-cta h2 { margin: 0; font-size: clamp(43px, 5vw, 66px); line-height: 1.2; letter-spacing: -.055em; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0 0; color: rgba(255,255,255,.67); font-size: 16px; }
.contact-actions { display: grid; gap: 12px; }
.contact-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 26px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(5px);
  transition: color .28s, background .28s, border-color .28s, transform .28s var(--ease-out);
}
.contact-option strong { font-size: 16px; font-weight: 560; letter-spacing: -.015em; color:#f3cd41;}
.contact-option span { font-size: 18px; transition: transform .28s var(--ease-out); }
.contact-option:hover,
.contact-option:focus-visible { color: var(--color-primary-dark); background: #fff; border-color: #fff; transform: translateX(5px); }
.contact-option:hover span,
.contact-option:focus-visible span { transform: translateX(4px); }
.contact-option:hover strong {
  color: var(--color-primary-dark);
}

/* Footer */
.site-footer { padding: 74px 0 28px; background: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr .7fr 1.2fr; gap: 60px; padding-bottom: 66px; }
.footer-brand p { margin: 25px 0 0; color: var(--color-text-secondary); font-size: 13px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-contact > span { margin-bottom: 16px; color: var(--color-accent); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.footer-contact a { margin: 2px 0; color: var(--color-primary-dark); font-size: 14px; font-weight: 550; }
.footer-nav { display: grid; grid-template-columns: 1fr .8fr; gap: 30px; }
.footer-nav > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-nav a { color: #4b5866; font-size: 13px; transition: color .2s; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-bottom { display: flex; align-items: center; min-height: 58px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.footer-bottom p { margin: 0; color: #929ba4; font-size: 10px; letter-spacing: .06em; }
.social-links { display: flex; gap: 10px; margin-left: auto; }
.social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark);
  background: #fff;
  transition: background .25s, border-color .25s, transform .25s;
}
.social-link:hover,
.social-link:focus-visible { background: var(--color-bg-secondary); border-color: #c5d1db; transform: translateY(-2px); }
.social-link--youtube::before {
  content: "";
  width: 20px;
  height: 14px;
  border-radius: 4px;
  background: #ff0033;
}
.social-link--youtube::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}
.social-link--instagram::before {
  content: "";
  width: 19px;
  height: 19px;
  border: 2px solid #c52d72;
  border-radius: 6px;
}
.social-link--instagram::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid #c52d72;
  border-radius: 50%;
}
.social-link--naver::before {
  content: "N";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #03c75a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}
.back-to-top { display: grid; place-items: center; width: 42px; height: 42px; margin-left: 38px; border: 1px solid var(--color-border); color: var(--color-primary); transition: .25s; }
.back-to-top:hover { color: #fff; background: var(--btn-color-primary); border-color: var(--btn-color-primary); }

/* Shared phone verification */
.header-auth {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 24px;
  font-size: 10px;
  white-space: nowrap;
}
.header-auth button,
.mobile-auth button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}
.header-auth .auth-phone-label { opacity: .72; }
.header-auth + .header-cta { margin-left: 18px; }
.mobile-auth {
  display: none;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-primary-dark);
}
.mobile-auth[data-auth-ui] {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mobile-auth .auth-phone-label { font-size: 12px; font-weight: 600; }
body.auth-modal-open { overflow: hidden; }
.phone-auth-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
}
.phone-auth-modal[hidden] { display: none; }
.phone-auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 34, .66);
  backdrop-filter: blur(4px);
}
.phone-auth-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 40px), 500px);
  min-height: 560px;
  padding: 42px 46px;
  color: var(--color-text);
  background: #fff;
  box-shadow: 0 30px 90px rgba(4, 18, 31, .25);
  transform: translate(-50%, -50%);
}
.phone-auth-close {
  position: absolute;
  right: 20px;
  top: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  color: #5b6976;
  background: transparent;
  font-size: 27px;
  font-weight: 300;
  cursor: pointer;
}
.phone-auth-brand {
  margin-bottom: 26px;
  color: #8a97a3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}
.phone-auth-progress {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
.phone-auth-progress span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #cbd4dc;
  border-radius: 50%;
  color: #9ba5ae;
  font-size: 9px;
}
.phone-auth-progress span.is-active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.phone-auth-progress i {
  flex: 1;
  height: 1px;
  background: #dce2e7;
}
.phone-auth-step[hidden] { display: none; }
.phone-auth-step h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 34px;
  line-height: 1.32;
  letter-spacing: -.05em;
}
.phone-auth-description {
  margin: 18px 0 28px;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.phone-auth-step label {
  display: block;
  margin-bottom: 16px;
  color: #3c4f61;
  font-size: 11px;
  font-weight: 600;
}
.phone-auth-step input {
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid #ccd5dd;
  outline: none;
  font-size: 15px;
}
.phone-auth-step input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(75, 139, 196, .1);
}
.phone-auth-step .button { width: 100%; margin-top: 5px; }
.auth-code-input {
  text-align: center;
  font-size: 24px !important;
  font-weight: 650;
  letter-spacing: .35em;
}
.phone-auth-error {
  min-height: 20px;
  margin: 0 0 7px;
  color: #b84040;
  font-size: 11px;
}
.phone-auth-demo {
  margin: -7px 0 10px;
  color: #677786;
  font-size: 10px;
}
.auth-text-button {
  display: block;
  margin: 18px auto 0;
  padding: 5px;
  border: 0;
  border-bottom: 1px solid #7d8994;
  color: #687581;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}
.phone-auth-complete {
  padding-top: 50px;
  text-align: center;
}
.auth-complete-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 28px;
}
.phone-auth-complete p {
  margin: 18px 0 30px;
  color: var(--color-text-secondary);
  font-size: 13px;
}

@media (max-width: 1199px) {
  :root { --header-height: 78px; }
  .site-header .brand::before,
  .mobile-menu-top .brand::before { width: 52px; height: 53px; margin-right: 12px; }
  .site-header.is-scrolled .brand::before { width: 46px; height: 47px; margin-right: 11px; }
  .desktop-nav { gap: 24px; }
  .header-cta { margin-left: 25px; }
  .attorney-grid { gap: 70px; }
  .career-grid { gap: 76px 7vw; }
  .practice-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .practice-card { grid-column: span 2; }
  .practice-card:nth-last-child(-n + 2) { grid-column: span 3; }
  .header-auth .auth-phone-label { display: none; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .header-auth { display: none; }
  .mobile-auth { display: flex; }
  .menu-toggle {
    position: relative; display: block; width: 44px; height: 44px; margin-left: auto; padding: 0;
    border: 0; background: transparent; cursor: pointer;
  }
  .menu-toggle span { position: absolute; right: 6px; width: 26px; height: 1px; background: currentColor; transition: .25s; }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 26px; width: 19px; }
  .menu-toggle:hover span:last-child { width: 26px; }
  .attorney-grid { gap: 56px; }
  .practice-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .practice-card,
  .practice-card:nth-last-child(-n + 2) { grid-column: span 1; }
  .practice-card:last-child { grid-column: 1 / -1; }
  .practice-content h3 { min-height: 0; }
  .career-grid { grid-template-columns: 1fr; grid-template-areas: "intro" "stats" "highlight"; }
  .career-intro { max-width: 650px; }
  .form-download-grid { grid-template-columns: 1fr; gap: 55px; }
  .contact-cta-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-actions { width: min(100%, 580px); }
}

@media (max-width: 767px) {
  :root { --header-height: 68px; --section-space: 92px; }
  body { font-size: 15px; }
  .container { width: calc(100% - 40px); }
  .desktop-only { display: none; }
  .eyebrow { margin-bottom: 20px; font-size: 10px; }
  .eyebrow::before { width: 24px; margin-right: 9px; }
  .site-header.is-scrolled { height: 64px; }
  .site-header .brand::before { width: 42px; height: 43px; margin-right: 10px; }
  .site-header.is-scrolled .brand::before { width: 40px; height: 41px; margin-right: 9px; }
  .mobile-menu-top .brand::before { width: 46px; height: 47px; margin-right: 11px; }
  .site-header .brand-name,
  .mobile-menu-top .brand-name { font-size: 20px; }
  .site-header .brand-role,
  .mobile-menu-top .brand-role { font-size: 12px; transform: translateY(4px); }
  .hero { min-height: 680px; }
  .hero-media { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(6,23,40,.93) 0%, rgba(7,27,47,.73) 100%), linear-gradient(0deg, rgba(8,26,44,.6), transparent 50%); }
  .hero-content { justify-content: flex-end; padding-top: 100px; padding-bottom: 152px; }
  .hero h1 { font-size: clamp(40px, 11.4vw, 54px); line-height: 1.23; letter-spacing: -.06em; }
  .hero-description { margin-top: 25px; font-size: 15px; line-height: 1.75; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; width: 100%; margin-top: 34px; }
  .hero-actions .button--light,
  .hero-actions .text-link--light { justify-content: center; width: 100%; min-width: 0; min-height: 54px; }
  .button { min-height: 54px; padding: 0 20px; }
  .button--light { min-width: 156px; }
  .scroll-indicator { left: 20px; bottom: 24px; }
  .scroll-indicator i { height: 38px; }
  .hero-index { right: 20px; bottom: 25px; }

  .attorney-grid { grid-template-columns: 1fr; gap: 50px; }
  .attorney-portrait { padding-left: 0; }
  .portrait-frame { aspect-ratio: 4 / 4.85; }
  .portrait-frame img { object-position: center 20%; }
  .attorney-copy h2, .section-heading h2, .form-download-heading h2 { font-size: 42px; }
  .lead-quote { margin: 34px 0; font-size: 21px; line-height: 1.65; }
  .attorney-facts > div { grid-template-columns: 106px 1fr; padding: 17px 0; }
  .attorney-facts span { font-size: 12px; }
  .attorney-facts strong { font-size: 14px; }

  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading > p { margin-top: 22px; font-size: 14px; }
  .practice-list { grid-template-columns: 1fr; gap: 10px; }
  .practice-card,
  .practice-card:nth-last-child(-n + 2),
  .practice-card:last-child {
    grid-column: 1;
    min-height: 210px;
    padding: 21px 20px 22px;
  }
  .practice-icon { width: 54px; height: 54px; padding: 11px; }
  .practice-content { padding-top: 26px; }
  .practice-content h3 { min-height: 0; font-size: 23px; }
  .practice-keywords { margin-top: 15px; padding-top: 14px; font-size: 12px; }
  .career-grid { gap: 60px; }
  .career-intro h2 { font-size: 39px; }
  .career-intro > p:last-child { margin-top: 28px; font-size: 13px; }
  .career-stats { align-items: stretch; }
  .stat { min-height: 132px; padding: 16px 10px 20px; }
  .stat:first-child { border-left: 0; }
  .stat strong { font-size: 28px; }
  .stat span { font-size: 10px; }
  .career-highlight { padding: 40px 0 0 15%; }
  .career-highlight::before { left: -4%; top: 25px; font-size: 110px; }
  .career-highlight p { font-size: 32px; }

  .section-heading--center { display: block; }
  .insight-swiper { padding-right: 0; overflow: hidden; }
  .article-image { aspect-ratio: 1.35 / 1; }
  .article-body { padding-top: 20px; }
  .article-body h3 { min-height: auto; font-size: 19px; }
  .article-body p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .swiper-pagination { display: flex; position: static; gap: 5px; margin-top: 30px; }
  .swiper-pagination-bullet { width: 20px; height: 2px; margin: 0 !important; border-radius: 0; background: #b3bdc7; opacity: 1; transition: width .25s, background .25s; }
  .swiper-pagination-bullet-active { width: 42px; background: var(--color-primary); }
  .insights-more { justify-content: flex-start; }

  .form-download-heading > p:not(.eyebrow) { margin-top: 23px; }
  .form-download-item {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    min-height: 122px;
    padding: 20px 4px;
    align-items: start;
  }
  .form-download-category {
    grid-column: 1;
    grid-row: 1;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    line-height: 1;
  }
  .form-download-item > div {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
  }
  .form-download-item h3 {
    max-width: none;
    overflow: visible;
    white-space: normal;
    font-size: 15px;
    line-height: 1.45;
  }
  .form-download-item div span { display: block; margin-top: 4px; line-height: 1.5; }
  .form-download-item time {
    grid-column: 1;
    grid-row: 3;
    text-align: left;
  }
  .form-download-arrow {
    grid-column: 2;
    grid-row: 1;
    width: 32px;
    height: 32px;
  }
  .list-footer { text-align: left; }

  .notice-ticker-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 16px;
    min-height: 126px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .notice-ticker-heading {
    grid-column: 1;
    gap: 10px;
  }
  .notice-ticker-heading h2 { font-size: 17px; }
  .notice-ticker-window {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 60px;
  }
  .notice-ticker-item a {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 3px 12px;
  }
  .notice-ticker-item a > span {
    grid-column: 1;
    grid-row: 1;
    font-size: 9px;
  }
  .notice-ticker-item strong {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
  }
  .notice-ticker-item time {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .notice-ticker-controls {
    grid-column: 2;
    grid-row: 1;
  }
  .notice-ticker-controls > a { margin-left: 12px; font-size: 10px; }
  .notice-ticker-controls > a span { display: none; }
  .notice-ticker-controls button { width: 32px; height: 32px; }

  .contact-cta { min-height: 610px; }
  .contact-cta-bg { background: linear-gradient(90deg, rgba(6,23,40,.95), rgba(6,23,40,.76)), url("/assets/app/media/contact-city-e134c7ca55f1760dec14f199ddc50c46.jpg") 58% center / cover no-repeat; }
  .contact-cta-inner { grid-template-columns: 1fr; gap: 44px; padding: 80px 0; }
  .contact-cta h2 { font-size: 43px; }
  .contact-copy > p:not(.eyebrow) { font-size: 14px; }
  .contact-actions { width: 100%; }
  .contact-option { min-height: 72px; padding: 15px 19px; }
  .contact-option strong { font-size: 14px; line-height: 1.45; }

  .site-footer { padding-top: 58px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 20px; padding-bottom: 50px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-nav { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom { flex-wrap: wrap; gap: 18px; }
  .footer-bottom p { width: calc(100% - 62px); }
  .social-links { order: 3; width: 100%; margin-left: 0; }
  .back-to-top { margin-left: auto; }
  .phone-auth-dialog {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    padding: 34px 24px 30px;
    overflow-y: auto;
    transform: none;
  }
  .phone-auth-brand { margin-top: 8px; }
  .phone-auth-progress { margin-bottom: 34px; }
  .phone-auth-step h2 { font-size: 31px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 32px); }
  .hero h1 { font-size: 38px; }
  .hero-actions { gap: 10px; }
  .button--light { min-width: 146px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left { opacity: 1 !important; transform: none !important; }
}

/* Server-rendered application adaptations */
.insight-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-empty-message {
  margin: 0 0 34px;
  padding: 54px 24px;
  border-block: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  text-align: center;
}

.home-empty-message--forms {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .insight-swiper {
    margin-right: -20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .insight-swiper::-webkit-scrollbar {
    display: none;
  }

  .insight-swiper .swiper-wrapper {
    display: flex;
    gap: 20px;
    padding-right: 20px;
  }

  .insight-swiper .swiper-slide {
    width: min(86vw, 420px);
    flex: 0 0 auto;
  }
}


.phone-auth-step .auth-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.phone-auth-step .auth-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.phone-auth-step .auth-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}
