@font-face {
  font-family: "Pretendard";
  src: url("fonts/pret.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif KR";
  src: url("fonts/myeongjo400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy: #0d1b2a;
  --navy-soft: #17283a;
  --ink: #15202b;
  --muted: #65707b;
  --line: #d9dde1;
  --line-dark: rgba(255, 255, 255, 0.18);
  --paper: #ffffff;
  --mist: #f3f5f6;
  --warm: #f5f3ef;
  --red: #a61e22;
  --shell: 1280px;
  --header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  word-break: keep-all;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

::selection {
  background: rgba(166, 30, 34, 0.16);
}

.page-shell,
.nav-shell {
  width: min(calc(100% - 96px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

section[id],
article[id] {
  scroll-margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.desktop-only {
  display: inline;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transition: background-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.legal-header,
.menu-open .site-header {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(15, 27, 40, 0.06);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after,
.site-header.legal-header::after,
.menu-open .site-header::after {
  background: var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  height: 100%;
}

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

.brand img {
  width: 154px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.site-header.is-scrolled .brand img,
.site-header.legal-header .brand img,
.menu-open .site-header .brand img {
  filter: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 38px);
  margin-left: auto;
  padding-inline: 40px;
}

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  right: 0;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 128px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-contact:hover {
  background: #fff;
  color: var(--navy);
}

.site-header.is-scrolled .header-contact,
.site-header.legal-header .header-contact {
  border-color: var(--navy);
}

.site-header.is-scrolled .header-contact:hover,
.site-header.legal-header .header-contact:hover {
  background: var(--navy);
  color: #fff;
}

.legal-header .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  margin-left: auto;
  padding: 0 16px;
  border: 1px solid var(--navy);
  font-size: 13px;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease;
}

.legal-header .header-cta:hover {
  background: var(--navy);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  padding-top: var(--header-height);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--header-height));
  padding: 36px 24px 42px;
}

.mobile-menu nav {
  border-top: 1px solid var(--ink);
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 500;
}

.mobile-menu nav a span {
  font-size: 17px;
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 44px;
}

.mobile-menu-contact p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-menu-contact a {
  display: block;
  font-family: "Noto Serif KR", serif;
  font-size: 25px;
  letter-spacing: -0.02em;
}

.mobile-menu-contact span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 780px;
  height: min(92svh, 920px);
  color: #fff;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(8, 20, 32, 0.92) 0%, rgba(9, 22, 34, 0.72) 45%, rgba(9, 22, 34, 0.3) 78%, rgba(9, 22, 34, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 20, 32, 0.52), transparent 40%),
    image-set(
      url("assets/seoul-hero.avif") type("image/avif"),
      url("assets/seoul-hero.webp") type("image/webp")
    );
  background-position: center, center, center 54%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 72px;
  padding-bottom: 104px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #c5363c;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-light {
  min-width: 174px;
  background: #fff;
  color: var(--navy);
}

.button-light:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.button-navy {
  min-width: 206px;
  background: var(--navy);
  color: #fff;
}

.button-navy:hover {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.hero-text-link:hover {
  border-bottom-color: #fff;
}

.hero-navigator {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -77px;
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 154px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(11, 24, 37, 0.16);
  margin-inline: auto;
}

.navigator-prompt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
  border-right: 1px solid var(--line);
}

.navigator-prompt span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.navigator-prompt strong {
  font-size: 18px;
  font-weight: 600;
}

.navigator-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.navigator-links a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 34px 22px 28px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease;
}

.navigator-links a:last-child {
  border-right: 0;
}

.navigator-links a span {
  align-self: flex-end;
  color: var(--red);
  font-size: 17px;
}

.navigator-links a:hover {
  background: var(--navy);
  color: #fff;
}

.navigator-links a:hover span {
  color: #fff;
}

/* Shared type */
.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 21px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.section-label-light {
  color: #d7a0a2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading h2,
.fees-intro h2,
.office-intro h2,
.alternative h2 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Firm intro */
.firm-intro {
  padding-top: 206px;
  padding-bottom: 132px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
}

.intro-grid > .section-label {
  align-self: start;
  margin-top: 13px;
}

.intro-main h2 {
  max-width: 860px;
  margin-bottom: 36px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.055em;
}

.intro-description {
  max-width: 760px;
  margin-bottom: 68px;
  color: #4f5a65;
  font-size: 18px;
  line-height: 1.9;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.principles article {
  min-height: 190px;
  padding: 25px 26px 12px 0;
  border-right: 1px solid var(--line);
}

.principles article:not(:first-child) {
  padding-left: 26px;
}

.principles article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 650;
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Practice */
.practice {
  background: var(--mist);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.practice-item {
  min-height: 206px;
  padding: 31px 38px 28px 0;
  border-bottom: 1px solid #cfd4d8;
}

.practice-item:nth-child(odd) {
  padding-right: 52px;
  border-right: 1px solid #cfd4d8;
}

.practice-item:nth-child(even) {
  padding-left: 52px;
}

.practice-item h3 {
  margin-bottom: 19px;
  font-family: "Noto Serif KR", serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.practice-item p {
  min-height: 50px;
  margin-bottom: 16px;
  color: #4f5a65;
  font-size: 15px;
}

.practice-item span {
  color: #858d95;
  font-size: 12px;
}

/* Zero fee */
.zero-fee {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.zero-fee::after {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

.zero-fee-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 112px;
}

.zero-fee-copy h2 {
  margin-bottom: 30px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.055em;
}

.zero-fee-copy > p:not(.section-label) {
  max-width: 540px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.9;
}

.text-arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
}

.text-arrow-link:hover {
  border-bottom-color: #fff;
}

.zero-fee-points {
  border-top: 1px solid rgba(255, 255, 255, 0.58);
}

.zero-fee-points article {
  position: relative;
  padding: 28px 20px 29px 44px;
  border-bottom: 1px solid var(--line-dark);
}

.zero-fee-points article::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid #d7a0a2;
  transform: rotate(45deg);
}

.zero-fee-points h3 {
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 600;
}

.zero-fee-points article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.zero-fee-note {
  margin: 22px 0 0 44px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.7;
}

/* Professionals */
.professionals {
  background: var(--paper);
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.professional-card {
  min-width: 0;
}

.professional-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #edf0f2, #e1e5e8);
}

.professional-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(13, 27, 42, 0.12);
}

.professional-photo img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: saturate(0.82) contrast(0.98);
}

.photo-heo img {
  height: 96%;
}

.photo-hong img {
  height: 82%;
}

.photo-kim img {
  height: 91%;
}

.professional-body {
  padding: 26px 2px 0;
}

.professional-body > p {
  margin-bottom: 5px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.professional-body h3 {
  margin-bottom: 21px;
  font-family: "Noto Serif KR", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}

.professional-body ul {
  margin-bottom: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.professional-body li {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.professional-body li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ba1a7;
}

/* Fees */
.fees {
  background: var(--warm);
}

.fees-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 92px;
}

.fees-intro h2 {
  margin-bottom: 26px;
}

.fees-intro > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.fee-table-wrap {
  min-width: 0;
  border-top: 1px solid var(--ink);
}

.fee-table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fee-table-heading h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 650;
}

.fee-table-heading span {
  color: var(--muted);
  font-size: 12px;
}

.table-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
}

table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

td:nth-child(2) {
  color: var(--ink);
  font-weight: 650;
}

.fee-notes {
  margin: 20px 0 0;
  padding: 0;
  color: #7a828a;
  font-size: 12px;
  line-height: 1.75;
  list-style: none;
}

.fee-notes li {
  position: relative;
  padding-left: 13px;
}

.fee-notes li::before {
  content: "·";
  position: absolute;
  left: 0;
}

/* Alternative */
.alternative {
  padding-block: 88px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.alternative-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 100px;
  align-items: center;
}

.alternative h2 {
  font-size: clamp(36px, 3.2vw, 48px);
}

.alternative-grid > div:last-child > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.text-arrow-dark {
  border-bottom-color: #a9afb5;
  color: var(--ink);
}

.text-arrow-dark:hover {
  border-bottom-color: var(--ink);
}

/* Office */
.office {
  background: var(--mist);
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: 128px;
}

.office-intro h2 {
  margin-bottom: 27px;
}

.office-intro > p:not(.section-label) {
  max-width: 410px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
}

.office-details {
  border-top: 1px solid var(--ink);
}

.office-details article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.office-details article > p {
  grid-row: 1 / span 4;
  margin-bottom: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 650;
}

.office-primary-link,
.office-details address,
.office-details strong {
  margin-bottom: 7px;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.04em;
}

.office-details article > span {
  color: var(--muted);
  font-size: 13px;
}

.office-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 15px;
}

.office-links button,
.office-links a {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid #9ba3aa;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  cursor: pointer;
}

.office-links button:hover,
.office-links a:hover {
  border-bottom-color: var(--ink);
}

/* Footer */
.site-footer {
  padding: 76px 0 30px;
  background: var(--navy);
  color: #fff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 32px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-main nav a:hover {
  color: #fff;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-info > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-info span,
.footer-info a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  padding: 27px 0 42px;
}

.footer-legal p {
  max-width: 840px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.75;
}

.footer-legal > div {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.mobile-dock {
  display: none;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: calc(var(--header-height) + 86px) 0 120px;
  background: var(--mist);
}

.legal-shell {
  width: min(calc(100% - 48px), 880px);
  margin-inline: auto;
}

.legal-back {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

.legal-date {
  margin-bottom: 58px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  padding: 44px 54px;
  background: #fff;
  border-top: 2px solid var(--navy);
}

.legal-content section {
  padding: 25px 0 27px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 11px;
  font-size: 18px;
  font-weight: 650;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-content a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 24px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.not-found strong {
  display: block;
  margin-bottom: 18px;
  color: #d7a0a2;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(72px, 13vw, 150px);
  font-weight: 400;
  line-height: 1;
}

.not-found h1 {
  margin-bottom: 14px;
  font-family: "Noto Serif KR", serif;
  font-size: 32px;
  font-weight: 400;
}

.not-found p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
}

.not-found .button-primary {
  background: #fff;
  color: var(--navy);
}

/* Motion */
.js.is-ready [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .page-shell,
  .nav-shell {
    width: min(calc(100% - 56px), var(--shell));
  }

  .desktop-nav {
    gap: 21px;
    padding-inline: 25px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-contact {
    min-width: 112px;
    gap: 12px;
  }

  .hero-navigator {
    grid-template-columns: 230px 1fr;
  }

  .navigator-prompt {
    padding-inline: 26px;
  }

  .navigator-links a {
    padding-inline: 15px;
    font-size: 13px;
  }

  .intro-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
  }

  .zero-fee-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 70px;
  }

  .fees-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 58px;
  }

  .office-grid {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero-navigator {
    grid-template-columns: 220px 1fr;
  }

  .navigator-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .navigator-links a {
    min-height: 77px;
    padding: 17px 16px;
    border-bottom: 1px solid var(--line);
  }

  .navigator-links a:nth-child(3) {
    border-right: 0;
  }

  .navigator-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .navigator-links a span {
    display: none;
  }

  .firm-intro {
    padding-top: 188px;
  }

  .intro-grid,
  .zero-fee-grid,
  .fees-grid,
  .office-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .intro-grid > .section-label {
    margin: 0 0 -20px;
  }

  .professional-grid {
    gap: 20px;
  }

  .professional-body h3 {
    font-size: 26px;
  }

  .professional-body li {
    font-size: 13px;
  }

  .alternative-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .office-details {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .page-shell,
  .nav-shell {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 88px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 126px;
  }

  .brand span {
    padding-left: 10px;
    font-size: 10px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-background {
    background-image:
      linear-gradient(90deg, rgba(8, 20, 32, 0.91) 0%, rgba(9, 22, 34, 0.64) 100%),
      linear-gradient(0deg, rgba(8, 20, 32, 0.52), transparent 40%),
      image-set(
        url("assets/seoul-hero-mobile.avif") type("image/avif"),
        url("assets/seoul-hero-mobile.webp") type("image/webp")
      );
    background-position: center, center, 58% center;
  }

  .hero-content {
    justify-content: flex-end;
    min-height: 650px;
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero-kicker {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.34;
  }

  .hero-lede {
    margin-bottom: 31px;
    font-size: 15px;
    line-height: 1.75;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 20px;
  }

  .button {
    min-height: 50px;
    padding-inline: 18px;
  }

  .button-light {
    min-width: 154px;
  }

  .hero-text-link {
    margin-top: 7px;
    font-size: 13px;
  }

  .hero-navigator {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    min-height: 0;
    margin: -34px auto 0;
  }

  .navigator-prompt {
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .navigator-prompt strong {
    font-size: 17px;
  }

  .navigator-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .navigator-links a,
  .navigator-links a:nth-child(3),
  .navigator-links a:nth-last-child(-n + 2) {
    min-height: 60px;
    padding: 19px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .navigator-links a:nth-child(even) {
    border-right: 0;
  }

  .navigator-links a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .firm-intro {
    padding-top: 108px;
    padding-bottom: 88px;
  }

  .intro-grid {
    gap: 38px;
  }

  .intro-grid > .section-label {
    margin-bottom: -5px;
  }

  .intro-main h2 {
    margin-bottom: 26px;
    font-size: 35px;
    line-height: 1.48;
  }

  .intro-description {
    margin-bottom: 43px;
    font-size: 16px;
    line-height: 1.85;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article,
  .principles article:not(:first-child) {
    min-height: 0;
    padding: 24px 0 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .section-heading h2,
  .fees-intro h2,
  .office-intro h2,
  .alternative h2 {
    font-size: 34px;
    line-height: 1.46;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-item,
  .practice-item:nth-child(odd),
  .practice-item:nth-child(even) {
    min-height: 0;
    padding: 25px 0 26px;
    border-right: 0;
  }

  .practice-item h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .practice-item p {
    min-height: 0;
    margin-bottom: 13px;
  }

  .zero-fee-grid {
    gap: 56px;
  }

  .zero-fee-copy h2 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.48;
  }

  .zero-fee-copy > p:not(.section-label) {
    font-size: 15px;
  }

  .zero-fee-points article {
    padding: 24px 0 24px 34px;
  }

  .zero-fee-points article::before {
    top: 31px;
  }

  .zero-fee-points h3 {
    font-size: 17px;
  }

  .zero-fee-note {
    margin-left: 34px;
  }

  .professional-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .professional-photo {
    aspect-ratio: 4 / 4.6;
  }

  .professional-body {
    padding-top: 20px;
  }

  .professional-body h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .fees-grid,
  .office-grid {
    gap: 48px;
  }

  .fees-intro h2,
  .office-intro h2 {
    margin-bottom: 22px;
  }

  .fee-table-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .table-scroll {
    margin-right: -20px;
    padding-right: 20px;
  }

  table {
    min-width: 620px;
  }

  .alternative {
    padding-block: 70px;
  }

  .alternative-grid {
    gap: 26px;
  }

  .office-details article {
    grid-template-columns: 72px minmax(0, 1fr);
    padding-block: 24px;
  }

  .office-primary-link,
  .office-details address,
  .office-details strong {
    font-size: 19px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-main,
  .footer-info,
  .footer-legal {
    display: block;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-main nav {
    justify-content: flex-start;
    margin-top: 30px;
    gap: 12px 24px;
  }

  .footer-info {
    padding-block: 25px;
  }

  .footer-info > div + div {
    margin-top: 9px;
  }

  .footer-legal {
    padding: 23px 0 36px;
  }

  .footer-legal > div {
    margin-top: 18px;
  }

  .mobile-dock {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px rgba(13, 27, 42, 0.12);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-dock a:last-child {
    background: var(--red);
    color: #fff;
  }

  .legal-page {
    padding: calc(var(--header-height) + 54px) 0 80px;
  }

  .legal-back {
    margin-bottom: 34px;
  }

  .legal-page h1 {
    font-size: 38px;
  }

  .legal-date {
    margin-bottom: 38px;
  }

  .legal-content {
    padding: 26px 22px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-text-link {
    margin-top: 0;
  }

  .office-details article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .office-details article > p {
    grid-row: auto;
    margin-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js.is-ready [data-reveal],
  .js.is-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Full original-content restoration */
.original-promise {
  margin-top: 74px;
  padding: 42px 0 0;
  border-top: 1px solid var(--ink);
}

.promise-eyebrow {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.original-promise h3 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(29px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

.original-promise > strong {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 17px;
  font-weight: 650;
}

.original-promise > p:not(.promise-eyebrow) {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 14px;
}

.original-promise ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.original-promise li {
  min-height: 104px;
  padding: 24px 26px 20px 22px;
  border-right: 1px solid var(--line);
  color: #3d4852;
  font-size: 15px;
  line-height: 1.7;
}

.original-promise li::before {
  content: "✓";
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 13px;
}

.original-promise li:last-child {
  border-right: 0;
}

.promise-notice {
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--mist);
  color: #737b83;
  font-size: 12px;
  line-height: 1.75;
}

.promise-notice b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.promise-notice p {
  margin-bottom: 1px;
}

.zero-fee-copy strong {
  color: #fff;
  font-weight: 650;
}

.result-contract {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 72px;
  margin-top: 88px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.result-contract-copy > span {
  display: block;
  margin-bottom: 13px;
  color: #d7a0a2;
  font-size: 12px;
  font-weight: 700;
}

.result-contract-copy h3 {
  margin-bottom: 15px;
  font-family: "Noto Serif KR", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.05em;
}

.result-contract-copy p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.result-tablist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.result-tablist button {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.result-tablist button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.result-tablist button.is-active {
  background: #fff;
  color: var(--navy);
}

.result-panel {
  min-height: 164px;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
}

.result-panel[hidden] {
  display: none;
}

.result-panel > span {
  display: block;
  margin-bottom: 11px;
  color: #d7a0a2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.result-panel p {
  margin-bottom: 8px;
  font-family: "Noto Serif KR", serif;
  font-size: 21px;
  line-height: 1.6;
}

.result-panel strong {
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.result-panel small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.zero-fee-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.zero-fee-facts > p {
  margin-bottom: 0;
  padding: 21px 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.75;
}

.zero-fee-facts > p:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.zero-fee-facts .zero-fee-note {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 0;
  color: rgba(255, 255, 255, 0.42);
}

.professional-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.professional-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(46px, 6vw, 88px);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.professional-photo {
  aspect-ratio: 4 / 4.7;
}

.professional-body {
  align-self: center;
  padding: 0;
}

.professional-body > .professional-role {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 650;
}

.professional-body h3 {
  margin-bottom: 16px;
  font-size: 36px;
}

.professional-body > .professional-credentials {
  margin-bottom: 26px;
  color: #4d5862;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.professional-body > .professional-bio {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.professional-fields {
  max-width: 820px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.professional-fields b {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.professional-fields p {
  margin-bottom: 0;
  color: #59636d;
  font-size: 13px;
  line-height: 1.8;
}

.fees-heading {
  margin-bottom: 66px;
}

.fees-heading > div {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 110px;
  align-items: end;
}

.fees-heading h2 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(40px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.055em;
}

.fees-heading strong {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.fees-heading > div > div p {
  max-width: 580px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.fee-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--ink);
}

.fee-categories article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 22px;
  min-height: 210px;
  padding: 31px 42px 30px 0;
}

.fee-categories article + article {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.fee-categories article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.fee-categories h3 {
  margin-bottom: 14px;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  font-weight: 400;
}

.fee-categories p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.musongsa {
  position: relative;
  overflow: hidden;
  background: #112235;
  color: #fff;
}

.musongsa::before {
  content: "無訟事";
  position: absolute;
  top: 82px;
  right: -0.02em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Noto Serif KR", serif;
  font-size: clamp(120px, 21vw, 320px);
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.musongsa-hero {
  position: relative;
  padding-bottom: 100px;
}

.musongsa-hero > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 100px;
  align-items: end;
}

.musongsa-hero h2 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(50px, 5.7vw, 78px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.07em;
}

.musongsa-hero h2 span {
  color: #d7a0a2;
  font-family: "Pretendard", sans-serif;
  font-size: 1.16em;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.musongsa-hero h3 {
  margin-bottom: 17px;
  color: #d7a0a2;
  font-size: 13px;
  font-weight: 700;
}

.musongsa-hero > div > div p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.9;
}

.musongsa-hero strong {
  color: #fff;
  font-weight: 650;
}

.musongsa-block {
  position: relative;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 72px;
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.musongsa-question {
  display: flex;
  align-items: flex-start;
  gap: 21px;
}

.musongsa-question > span {
  padding-top: 5px;
  color: #d7a0a2;
  font-size: 11px;
  font-weight: 700;
}

.musongsa-question h3 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.musongsa-question p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.dispute-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.dispute-grid article {
  min-height: 168px;
  padding: 25px 30px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dispute-grid article:nth-child(odd) {
  padding-right: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.dispute-grid article:nth-child(even) {
  padding-left: 38px;
}

.dispute-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

.dispute-grid h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 650;
}

.dispute-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.musongsa-statement {
  padding: 37px 42px;
  border-left: 2px solid #c6888b;
  background: rgba(255, 255, 255, 0.055);
}

.musongsa-statement strong {
  display: block;
  margin-bottom: 9px;
  font-family: "Noto Serif KR", serif;
  font-size: 25px;
  font-weight: 400;
}

.musongsa-statement p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  min-height: 126px;
  padding: 25px 30px 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:nth-child(odd) {
  padding-right: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:nth-child(even) {
  padding-left: 38px;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #d7a0a2;
  font-size: 11px;
}

.process-list h4 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 650;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-grid article {
  min-height: 390px;
  padding: 38px 40px 34px;
}

.comparison-court {
  background: #f1f0ed;
  color: var(--ink);
}

.comparison-musongsa {
  background: #fff;
  color: var(--ink);
}

.comparison-grid h4 {
  margin-bottom: 29px;
  padding-bottom: 18px;
  border-bottom: 1px solid #cdd2d6;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  font-weight: 400;
}

.comparison-musongsa h4 {
  color: var(--red);
}

.comparison-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-grid li {
  position: relative;
  padding: 0 0 16px 19px;
  color: #58636d;
  font-size: 13px;
  line-height: 1.75;
}

.comparison-grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9ba2a9;
}

.comparison-musongsa li::before {
  content: "✓";
  color: var(--red);
}

.musongsa-failure > p {
  margin: 0;
  padding: 37px 42px;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Serif KR", serif;
  font-size: 25px;
  line-height: 1.6;
}

.musongsa-failure > p strong {
  color: var(--red);
  font-weight: 400;
}

.musongsa-pricing {
  padding-bottom: 88px;
}

.musongsa-tables {
  min-width: 0;
}

.musongsa-tables > article + article {
  margin-top: 48px;
}

.musongsa-tables h4,
.success-fee h4 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
}

.musongsa table {
  min-width: 710px;
}

.musongsa th,
.musongsa td {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.musongsa th {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.musongsa td {
  color: rgba(255, 255, 255, 0.68);
}

.musongsa th:first-child,
.musongsa td:first-child {
  padding-left: 18px;
}

.musongsa td:nth-child(2) {
  color: #fff;
}

.musongsa-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.success-fee {
  grid-column: 2;
  margin-top: -10px;
  padding: 33px 36px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.success-fee > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.success-fee p {
  margin-bottom: 0;
  padding: 19px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.success-fee p:last-child {
  border-right: 0;
}

.success-fee span,
.success-fee strong {
  display: block;
}

.success-fee span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.success-fee strong {
  color: #fff;
  font-family: "Noto Serif KR", serif;
  font-size: 23px;
  font-weight: 400;
}

.musongsa-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.musongsa-cta div span,
.musongsa-cta div strong {
  display: block;
}

.musongsa-cta div span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.musongsa-cta div strong {
  font-family: "Noto Serif KR", serif;
  font-size: 25px;
  font-weight: 400;
}

.consult {
  background: #f4f4f2;
}

.consult-heading {
  margin-bottom: 60px;
}

.consult-heading > div {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: end;
}

.consult-heading h2 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", serif;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.055em;
}

.consult-heading > div > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
}

.consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 18px;
}

.consult-kakao {
  padding: 46px 48px;
  background: var(--navy);
  color: #fff;
}

.consult-step {
  display: block;
  margin-bottom: 30px;
  color: #d7a0a2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.consult-kakao h3,
.consult-options h3 {
  margin-bottom: 13px;
  font-family: "Noto Serif KR", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
}

.consult-kakao > p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.inquiry-template {
  margin: 30px 0 34px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.inquiry-template > strong {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.inquiry-template ol {
  margin: 0;
  padding-left: 22px;
}

.inquiry-template li {
  padding: 4px 0 4px 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.inquiry-template li span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.consult-options {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}

.consult-options article {
  padding: 36px 38px 31px;
  border: 1px solid var(--line);
  background: #fff;
}

.consult-options .consult-step {
  margin-bottom: 18px;
  color: var(--red);
}

.consult-options h3 {
  font-size: 20px;
}

.consult-options p,
.consult-options address {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.consult-options a {
  display: inline-flex;
  gap: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid #9da5ac;
  font-size: 13px;
  font-weight: 650;
}

.office-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
  margin-top: 68px;
  padding: 50px 0 0;
  border-top: 1px solid var(--ink);
}

.office-panel h3 {
  margin-bottom: 7px;
  font-family: "Noto Serif KR", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}

.office-panel > div > p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.office-panel-details > p {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  margin-bottom: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.office-panel-details > p span {
  color: var(--red);
  font-size: 12px;
  font-weight: 650;
}

.office-panel-details > p strong {
  color: #4d5761;
  font-size: 14px;
  font-weight: 500;
}

.consult-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 70px;
  padding: 31px 36px;
  background: #fff;
  border-left: 3px solid var(--red);
}

.consult-closing p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.consult-closing a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 1120px) {
  .professional-card {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 48px;
  }

  .fees-heading > div,
  .consult-heading > div,
  .office-panel {
    gap: 58px;
  }

  .musongsa-block {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
  }

  .musongsa-hero > div {
    gap: 60px;
  }

  .consult-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }
}

@media (max-width: 900px) {
  .original-promise ul,
  .zero-fee-facts {
    grid-template-columns: 1fr;
  }

  .original-promise li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-contract,
  .fees-heading > div,
  .musongsa-hero > div,
  .musongsa-block,
  .consult-heading > div,
  .consult-grid,
  .office-panel {
    grid-template-columns: 1fr;
  }

  .result-contract,
  .musongsa-hero > div,
  .musongsa-block,
  .consult-heading > div,
  .office-panel {
    gap: 42px;
  }

  .zero-fee-facts > p:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .zero-fee-facts > p {
    padding-top: 15px;
  }

  .professional-card {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 38px;
  }

  .fee-categories {
    grid-template-columns: 1fr;
  }

  .fee-categories article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .musongsa-hero {
    padding-bottom: 62px;
  }

  .musongsa-block {
    padding-block: 58px;
  }

  .success-fee {
    grid-column: 1;
    margin-top: 34px;
  }

  .consult-grid {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .original-promise {
    margin-top: 50px;
    padding-top: 30px;
  }

  .original-promise h3 {
    font-size: 27px;
  }

  .original-promise > strong {
    margin-bottom: 27px;
    font-size: 15px;
  }

  .original-promise li {
    padding: 20px 4px;
  }

  .promise-notice {
    padding: 18px;
  }

  .result-contract {
    margin-top: 61px;
    padding-top: 32px;
  }

  .result-contract-copy h3 {
    font-size: 24px;
  }

  .result-panel {
    min-height: 181px;
    padding: 26px 22px;
  }

  .result-panel p {
    font-size: 18px;
  }

  .professional-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 42px;
  }

  .professional-photo {
    aspect-ratio: 4 / 4.6;
  }

  .professional-body h3 {
    font-size: 30px;
  }

  .professional-body > .professional-credentials {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .professional-body > .professional-bio {
    font-size: 14px;
    line-height: 1.85;
  }

  .fees-heading {
    margin-bottom: 43px;
  }

  .fees-heading h2,
  .consult-heading h2 {
    font-size: 34px;
  }

  .fee-categories {
    margin-top: 46px;
  }

  .fee-categories article,
  .fee-categories article + article {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 0;
    padding: 27px 0;
  }

  .musongsa-hero h2 {
    font-size: 44px;
    line-height: 1.35;
  }

  .musongsa-hero > div > div p {
    font-size: 15px;
  }

  .musongsa-block {
    gap: 31px;
    padding-block: 50px;
  }

  .musongsa-question h3 {
    font-size: 23px;
  }

  .dispute-grid,
  .process-list,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .dispute-grid article,
  .dispute-grid article:nth-child(odd),
  .dispute-grid article:nth-child(even),
  .process-list li,
  .process-list li:nth-child(odd),
  .process-list li:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .dispute-grid article > span {
    margin-bottom: 13px;
  }

  .musongsa-statement,
  .musongsa-failure > p {
    padding: 27px 24px;
  }

  .musongsa-statement strong,
  .musongsa-failure > p {
    font-size: 20px;
  }

  .comparison-grid article {
    min-height: 0;
    padding: 30px 25px 25px;
  }

  .musongsa .table-scroll {
    margin-right: -20px;
  }

  .success-fee {
    padding: 26px 22px 15px;
  }

  .success-fee > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-fee p:nth-child(2) {
    border-right: 0;
  }

  .success-fee p:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.27);
  }

  .musongsa-cta,
  .consult-closing {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .musongsa-cta div strong {
    font-size: 21px;
  }

  .consult-heading {
    margin-bottom: 42px;
  }

  .consult-kakao,
  .consult-options article {
    padding: 32px 24px;
  }

  .consult-kakao h3 {
    font-size: 25px;
  }

  .consult-options h3 {
    font-size: 18px;
  }

  .inquiry-template li span {
    display: block;
  }

  .office-panel {
    margin-top: 50px;
    padding-top: 36px;
  }

  .office-panel h3 {
    font-size: 26px;
  }

  .consult-closing {
    margin-top: 50px;
    padding: 26px 24px;
  }

  .footer-info > div {
    display: grid;
  }
}

@media (max-width: 420px) {
  .result-tablist button {
    min-height: 48px;
    font-size: 13px;
  }

  .success-fee > div {
    grid-template-columns: 1fr;
  }

  .success-fee p,
  .success-fee p:nth-child(2) {
    border-right: 0;
  }

  .office-panel-details > p {
    grid-template-columns: 62px minmax(0, 1fr);
  }
}
