@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --navy: #11172a;
  --navy-2: #16213e;
  --navy-3: #1a1a2e;
  --gold: #d4a800;
  --gold-2: #c69a32;
  --cream: #efe4cf;
  --white: #ffffff;
  --muted: #b8c0d6;
  --line: rgba(212, 168, 0, 0.28);
  --soft-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Pretendard, "Apple SD Gothic Neo", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

body::selection {
  background: var(--gold);
  color: var(--navy);
}

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

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

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

ul {
  padding: 0;
  list-style: none;
}

p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

h1 {
  font-size: 92px;
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: 62px;
  line-height: 1.18;
  font-weight: 800;
}

h3 {
  font-size: 30px;
  line-height: 1.28;
  font-weight: 800;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 92px;
  display: grid;
  grid-template-columns: 270px 1fr 320px;
  align-items: center;
  gap: 28px;
  padding: 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 23, 42, 0.72);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, height 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  height: 78px;
  background: rgba(17, 23, 42, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand::after {
  content: "법무법인 윤중";
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.gnb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 800;
}

.gnb a {
  position: relative;
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.9);
}

.gnb a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.gnb a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.contact-box a,
.intro-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta,
.btn.primary,
.contact-box .phone,
.intro-inner a {
  background: var(--gold);
  color: var(--navy);
}

.btn.ghost,
.contact-box .kakao {
  background: transparent;
  color: var(--gold);
}

.header-cta:hover,
.btn:hover,
.contact-box a:hover,
.intro-inner a:hover {
  transform: translateY(-3px);
}

.section,
.section-dark,
.contact-hero {
  position: relative;
  padding: 132px 72px;
  overflow: hidden;
}

.section > *,
.section-dark > *,
.contact-hero > * {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  background: #f5efe2;
  color: var(--navy);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow.gold {
  color: var(--gold);
}

.section-head {
  margin-bottom: 58px;
}

.section-head.center {
  max-width: 980px;
  text-align: center;
}

.section-head.center p {
  margin: 22px auto 0;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 90px;
  align-items: end;
}

.section-head.split p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.section:not(.section-dark) .section-head.split p:not(.eyebrow),
.section:not(.section-dark) .section-head.center p {
  color: #5d6473;
}

.hero {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px 540px;
  align-items: center;
  gap: 44px;
  padding-top: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.94), rgba(17, 23, 42, 0.72) 52%, rgba(17, 23, 42, 0.96)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
  opacity: 0.92;
}

.hero-inner,
.hero-panel,
.hero-photo {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 900px;
}

.hero-lead {
  max-width: 760px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 23px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.hero-panel span {
  display: block;
  padding: 24px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.hero-photo {
  align-self: end;
}

.hero-photo img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-band {
  padding: 44px 72px;
  background: var(--cream);
  color: var(--navy);
}

.intro-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 40px;
}

.intro-inner p {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
}

.yk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.practice-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(17, 23, 42, 0.14);
}

.practice-card figure {
  position: absolute;
  inset: 0;
}

.practice-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 23, 42, 0.12), rgba(17, 23, 42, 0.92));
}

.practice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.practice-card:hover img {
  transform: scale(1.06);
}

.practice-card div {
  position: relative;
  z-index: 1;
  padding: 42px;
  color: var(--white);
}

.practice-card small {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.practice-card h3 {
  margin: 12px 0 18px;
  font-size: 44px;
}

.practice-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.result-section {
  background:
    linear-gradient(rgba(17, 23, 42, 0.94), rgba(17, 23, 42, 0.98)),
    url("./assets/photos/office-1.jpg") center/cover fixed;
}

.case-stage {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 26px;
}

.case-track {
  min-height: 640px;
  position: relative;
}

.case-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.case-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.case-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.case-card span,
.column-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.case-card h3 {
  font-size: 48px;
}

.case-card p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.case-nav {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 42px;
  cursor: pointer;
}

.lawyers-section {
  background:
    linear-gradient(180deg, #efe4cf 0 370px, var(--navy) 370px 100%);
}

.lawyer-feature {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 34px;
  padding: 44px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lawyer-feature img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.lawyer-feature h3 {
  font-size: 56px;
  margin-bottom: 26px;
}

.lawyer-feature li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.lawyer-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.lawyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lawyer-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 330px auto 1fr;
  align-content: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}

.lawyer-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.lawyer-card img,
.empty-photo {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
  background: rgba(255, 255, 255, 0.08);
}

.empty-photo {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
}

.lawyer-card div:not(.empty-photo) {
  padding: 28px;
}

.lawyer-card h3 {
  margin: 0;
  padding: 26px 30px 0;
}

.lawyer-card p {
  margin: 0;
  padding: 14px 30px 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.media-section {
  background: var(--navy-3);
}

.broadcast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tv-frame {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.tv-frame img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tv-frame figcaption {
  padding: 18px 6px 6px;
  color: var(--gold);
  font-weight: 900;
  line-height: 1.45;
}

.columns-section {
  background: #f5efe2;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.column-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(17, 23, 42, 0.16);
  background: #fff;
  color: var(--navy);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.column-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(17, 23, 42, 0.14);
}

.column-card p {
  margin-top: 16px;
  color: #667085;
  font-size: 18px;
}

.process-section {
  background: var(--navy-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  color: var(--gold);
  font-weight: 900;
}

.process-grid h3 {
  margin: 26px 0 16px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.98), rgba(17, 23, 42, 0.86)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
}

.contact-hero h2 {
  max-width: 880px;
}

.contact-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-box {
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.contact-box a {
  width: 100%;
  margin-bottom: 14px;
}

.contact-box .phone {
  min-height: 76px;
  font-size: 36px;
}

.contact-box span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.floating-contact {
  position: fixed;
  right: 32px;
  bottom: 30px;
  z-index: 90;
  display: flex;
  gap: 10px;
}

.floating-contact a {
  min-width: 120px;
  padding: 16px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.media-placeholder,
.document-thumb {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 24px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  text-align: center;
  font-weight: 900;
}

.category-landing,
.detail-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 70px;
  align-items: center;
  padding-top: 170px;
  background: var(--navy);
  color: var(--white);
}

.category-landing p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
}

.category-landing .hero-media,
.detail-hero .hero-media {
  min-height: 480px;
  background: linear-gradient(135deg, rgba(212, 168, 0, 0.14), rgba(255, 255, 255, 0.06));
}

.detail-image {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(212, 168, 0, 0.5);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(212, 168, 0, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.detail-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--detail-image) center/cover no-repeat;
  filter: blur(18px) saturate(0.88);
  opacity: 0.2;
  transform: scale(1.08);
}

.detail-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(212, 168, 0, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(17, 23, 42, 0.62), rgba(17, 23, 42, 0.26) 46%, rgba(17, 23, 42, 0.72));
  pointer-events: none;
}

.detail-image img {
  position: relative;
  width: 100%;
  height: 550px;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 1px solid rgba(212, 168, 0, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.category-visual {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(212, 168, 0, 0.5);
  background:
    linear-gradient(145deg, rgba(212, 168, 0, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.category-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--category-image) center/cover no-repeat;
  filter: blur(18px) saturate(0.88);
  opacity: 0.18;
  transform: scale(1.08);
}

.category-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(212, 168, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(17, 23, 42, 0.22), rgba(17, 23, 42, 0.78));
}

.category-visual img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 1px solid rgba(212, 168, 0, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.category-visual figcaption {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17, 23, 42, 0.16);
  border-left: 1px solid rgba(17, 23, 42, 0.16);
}

.subcategory-grid a {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  border-right: 1px solid rgba(17, 23, 42, 0.16);
  border-bottom: 1px solid rgba(17, 23, 42, 0.16);
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  transition: background 220ms ease, color 220ms ease;
}

.subcategory-grid a:hover {
  background: var(--navy);
  color: var(--gold);
}

.detail-two-column {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
}

.large-list,
.flow-grid,
.subpage-grid {
  display: grid;
  gap: 18px;
}

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

.large-list li,
.flow-grid article,
.subpage-grid article,
.contact-section .contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 23, 42, 0.14);
  color: var(--navy);
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.subpage-grid {
  grid-template-columns: repeat(4, 1fr);
}

.subpage-grid span,
.flow-grid strong {
  color: var(--gold-2);
  font-weight: 900;
}

.light-section,
.detail-template,
.proof-section {
  background: #f5efe2;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.contact-section p,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card strong {
  display: block;
  color: var(--gold);
  font-size: 40px;
}

.contact-card span {
  display: block;
  margin-top: 10px;
  color: #667085;
}

@media (max-width: 1280px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    height: auto;
    padding: 20px 28px;
  }

  .gnb {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .gnb a {
    padding: 8px 0;
  }

  .gnb a::after {
    bottom: 0;
  }

  .header-cta {
    width: fit-content;
  }

  .section,
  .section-dark,
  .contact-hero {
    padding: 88px 28px;
  }

  .hero,
  .section-head.split,
  .intro-inner,
  .case-card,
  .lawyer-feature,
  .contact-hero,
  .category-landing,
  .detail-hero,
  .detail-two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-photo img {
    height: 520px;
  }

  .yk-grid,
  .lawyer-grid,
  .broadcast-grid,
  .column-grid,
  .process-grid,
  .subcategory-grid,
  .large-list,
  .flow-grid,
  .case-grid,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .case-stage {
    grid-template-columns: 1fr;
  }

  .case-nav {
    display: none;
  }

  .case-track {
    min-height: 860px;
  }

  .case-card {
    padding: 28px;
  }

  .floating-contact {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .floating-contact a {
    flex: 1;
  }
}

/* YK reference-inspired main page */
.yk-home {
  background: #f6f8fb;
  color: var(--navy);
}

.top-notice {
  position: relative;
  z-index: 120;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.top-notice span {
  position: absolute;
  right: 42px;
  font-size: 12px;
}

.yk-header {
  position: sticky;
  top: 0;
  z-index: 110;
  height: 64px;
  display: grid;
  grid-template-columns: 260px 1fr 132px;
  align-items: center;
  gap: 24px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(17, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 18px rgba(17, 23, 42, 0.06);
}

.yk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.yk-brand img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.yk-brand span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.yk-brand strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.yk-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.yk-nav a {
  opacity: 0.88;
}

.yk-nav a:hover {
  color: var(--gold-2);
}

.yk-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.yk-header-actions a {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.yk-header-actions button {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
}

.yk-header-actions .sitemap-toggle,
.sub-header-actions .sitemap-toggle {
  border: 1px solid rgba(212, 168, 0, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.sitemap-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212, 168, 0, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.sitemap-toggle:hover,
.sitemap-open .sitemap-toggle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.sub-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.sitemap-panel {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 34px 42px 46px;
  background: linear-gradient(180deg, rgba(17, 23, 42, 0.98), rgba(22, 33, 62, 0.98));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(-18px);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 260ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.yk-home .sitemap-panel {
  top: 118px;
}

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

.sitemap-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sitemap-inner {
  max-width: 1600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease 60ms, transform 260ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
}

.sitemap-panel.is-open .sitemap-inner {
  opacity: 1;
  transform: translateY(0);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr 1.15fr 1fr;
  gap: 22px;
}

.sitemap-grid section {
  min-height: 250px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.sitemap-grid h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.35;
}

.sitemap-grid a {
  display: block;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.sitemap-grid a.sitemap-parent {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.sitemap-grid a.sitemap-child {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
}

.sitemap-grid a.sitemap-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 6px;
  height: 1px;
  background: rgba(212, 168, 0, 0.72);
}

.sitemap-grid a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.sitemap-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-contact span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
}

.yk-hero {
  position: relative;
  height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.yk-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.74), rgba(17, 23, 42, 0.54)),
    url("./assets/photos/office-1.jpg") center 42% / cover no-repeat;
  transform: scale(1.02);
}

.yk-hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.yk-hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 36px;
  line-height: 1.25;
  font-weight: 900;
}

.yk-hero-copy h1 {
  margin-top: 4px;
  color: #fff;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
}

.yk-hero-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 700;
}

.yk-proof-strip {
  max-width: 1600px;
  margin: -36px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 150px) repeat(3, 1fr);
  gap: 18px;
  padding: 0 42px 46px;
}

.yk-proof-item,
.yk-mini-card {
  min-height: 122px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(17, 23, 42, 0.1);
}

.yk-proof-item {
  padding: 22px 24px;
}

.yk-proof-item span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.yk-proof-item strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.yk-proof-item em {
  display: block;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.yk-mini-card {
  position: relative;
  overflow: hidden;
}

.yk-mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 23, 42, 0.12), rgba(17, 23, 42, 0.7));
}

.yk-mini-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
}

.yk-mini-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.yk-center-section,
.yk-lawyer-section,
.yk-consult-section,
.yk-help-section,
.yk-column-section,
.yk-media-section {
  padding: 78px 42px;
  background: #fff;
}

.yk-center-wrap,
.yk-lawyer-feature,
.yk-work-cards,
.yk-consult-grid,
.yk-help-grid,
.yk-case-banner,
.yk-column-grid,
.yk-media-grid {
  max-width: 1600px;
  margin: 0 auto;
}

.yk-center-wrap {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 56px;
  padding: 18px 0 50px;
}

.yk-center-card {
  min-height: 310px;
  padding: 34px;
  border-radius: 10px;
  background:
    linear-gradient(rgba(17, 23, 42, 0.58), rgba(17, 23, 42, 0.92)),
    url("./assets/revision/requested/meeting.png") center/cover no-repeat;
  color: #fff;
}

.yk-center-card p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.yk-center-card h2 {
  margin-top: 58px;
  color: #fff;
  font-size: 34px;
}

.yk-center-card span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.yk-center-card a {
  display: inline-flex;
  margin-top: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.yk-field-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
}

.yk-field-list a {
  display: grid;
  grid-template-columns: 110px 1fr 20px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid #e7ebf0;
  color: var(--navy);
  font-size: 15px;
}

.yk-field-list strong {
  color: #687083;
  font-size: 13px;
  font-weight: 800;
}

.yk-field-list span {
  font-weight: 900;
}

.yk-field-list em {
  color: #9aa3b2;
  font-style: normal;
  text-align: right;
}

.yk-title {
  margin-bottom: 48px;
  text-align: center;
}

.yk-title h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.32;
}

.yk-lawyer-section {
  padding-top: 100px;
}

.yk-lawyer-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.yk-lawyer-feature article {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  min-height: 330px;
  padding: 24px;
  border-radius: 10px;
  background: #f4f7fb;
}

.yk-lawyer-feature img {
  width: 270px;
  height: 282px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.yk-lawyer-feature span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 168, 0, 0.16);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.yk-lawyer-feature h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 28px;
}

.yk-lawyer-feature p {
  margin-top: 14px;
  color: #5f6673;
  font-size: 15px;
  line-height: 1.72;
}

.yk-lawyer-feature a {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.yk-center-button {
  width: fit-content;
  min-width: 160px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px auto 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.yk-work-section {
  padding: 90px 42px;
  background: #eef4fb;
}

.yk-work-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.yk-work-cards a {
  min-height: 180px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 23, 42, 0.04);
}

.yk-work-cards span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(212, 168, 0, 0.16);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.yk-work-cards strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.yk-work-cards p {
  margin-top: 10px;
  color: #6d7480;
  font-size: 14px;
  line-height: 1.55;
}

.yk-consult-section {
  padding-bottom: 76px;
}

.yk-consult-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
}

.yk-match,
.yk-side-boxes a {
  border-radius: 10px;
  background: #eef4fb;
}

.yk-match {
  min-height: 230px;
  padding: 34px;
}

.yk-match h3 {
  color: var(--navy);
  font-size: 24px;
}

.yk-match p {
  max-width: 760px;
  margin-top: 16px;
  color: #697284;
  font-size: 15px;
}

.yk-match div {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
  gap: 12px;
  margin-top: 36px;
}

.yk-match select,
.yk-match a {
  height: 44px;
  border: 1px solid #d7dee9;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
}

.yk-match a {
  display: grid;
  place-items: center;
  background: var(--gold);
  border-color: var(--gold);
}

.yk-side-boxes {
  display: grid;
  gap: 20px;
}

.yk-side-boxes a {
  min-height: 105px;
  display: grid;
  align-content: center;
  padding: 26px;
}

.yk-side-boxes strong {
  color: var(--navy);
  font-size: 22px;
}

.yk-side-boxes span {
  margin-top: 8px;
  color: #697284;
  font-size: 14px;
  font-weight: 800;
}

.yk-help-section {
  padding-top: 54px;
}

.yk-help-grid {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 1.7fr;
  gap: 22px;
}

.yk-help-card,
.yk-news-card {
  min-height: 210px;
  border-radius: 10px;
}

.yk-help-card {
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
}

.yk-help-card.kakao {
  background:
    linear-gradient(rgba(17, 23, 42, 0.16), rgba(17, 23, 42, 0.72)),
    url("./assets/photos/office-1.jpg") center/cover no-repeat;
}

.yk-help-card.phone {
  background:
    linear-gradient(rgba(17, 23, 42, 0.22), rgba(17, 23, 42, 0.82)),
    url("./assets/photos/broadcast-sbsbiz.jpg") center/cover no-repeat;
}

.yk-help-card strong {
  font-size: 23px;
}

.yk-help-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.yk-news-card {
  padding: 28px;
  background: #eef4fb;
}

.yk-news-card h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 24px;
}

.yk-news-card div {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 6px;
  background: #fff;
}

.yk-news-card span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.yk-news-card p {
  color: #4b5564;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.yk-case-banner {
  max-width: 1600px;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  margin: 70px auto 110px;
  padding: 48px 64px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
}

.yk-case-banner h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: 1.32;
}

.yk-case-banner p {
  max-width: 880px;
  margin-top: 24px;
  color: #596273;
  font-size: 16px;
}

.yk-case-banner a {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.yk-case-banner strong {
  color: rgba(17, 23, 42, 0.68);
  font-size: 54px;
  line-height: 1.05;
  text-align: right;
}

.yk-column-section {
  padding-top: 20px;
}

.yk-column-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.45fr;
  grid-template-rows: repeat(2, 154px);
  gap: 18px;
}

.yk-column-grid a {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  background: #f4f7fb;
  color: var(--navy);
  overflow: hidden;
}

.yk-column-grid .large {
  grid-row: span 2;
  padding: 0;
}

.yk-column-grid .large img,
.yk-column-grid .dark::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yk-column-grid .large::after,
.yk-column-grid .dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 23, 42, 0.16), rgba(17, 23, 42, 0.82));
}

.yk-column-grid .large span,
.yk-column-grid .large strong,
.yk-column-grid .dark span,
.yk-column-grid .dark strong {
  position: relative;
  z-index: 1;
  color: #fff;
}

.yk-column-grid .large span,
.yk-column-grid .large strong {
  left: 24px;
}

.yk-column-grid .large span {
  position: absolute;
  bottom: 72px;
}

.yk-column-grid .large strong {
  position: absolute;
  right: 24px;
  bottom: 26px;
}

.yk-column-grid span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.yk-column-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 19px;
  line-height: 1.45;
}

.yk-column-grid .dark {
  grid-column: span 2;
  background:
    linear-gradient(rgba(17, 23, 42, 0.12), rgba(17, 23, 42, 0.76)),
    url("./assets/photos/kim-heungjun-seated.jpg") center/cover no-repeat;
}

.yk-media-section {
  padding-top: 20px;
}

.yk-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.yk-media-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
}

.yk-footer {
  padding: 42px 42px 60px;
  background: #fff;
  border-top: 1px solid #e9edf2;
}

.yk-footer-links,
.yk-footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
}

.yk-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e9edf2;
  color: #5e6675;
  font-size: 13px;
  font-weight: 800;
}

.yk-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-top: 30px;
}

.yk-footer-bottom strong {
  color: var(--navy);
  font-size: 18px;
}

.yk-footer-bottom p {
  margin-top: 10px;
  color: #7a8290;
  font-size: 13px;
}

.yk-footer-bottom a {
  display: grid;
  place-items: center;
  min-width: 190px;
  min-height: 54px;
  border-radius: 10px;
  background: #f3f6fa;
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 900;
}

.yk-home .floating-contact {
  left: auto;
  right: 22px;
  bottom: 30px;
  flex-direction: column;
  gap: 8px;
}

.yk-home .floating-contact a {
  min-width: 74px;
  padding: 13px 12px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(17, 23, 42, 0.18);
}

/* Yoonjoong dark-premium adaptation: YK-like information rhythm, original visual language */
.yk-home {
  background: var(--navy);
  color: var(--white);
}

.yj-top-notice {
  height: 40px;
  background: linear-gradient(90deg, #9f7d00, var(--gold), #9f7d00);
  color: var(--navy);
}

.yj-header {
  height: 78px;
  grid-template-columns: 270px 1fr 132px;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(17, 23, 42, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.yj-header .yk-brand {
  display: inline-grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
}

.yj-header .yk-brand::before {
  content: none;
}

.yj-header .yk-brand::after {
  content: "법무법인 윤중";
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.yj-header .yk-brand strong,
.yj-header .yk-nav,
.yj-header .yk-header-actions button {
  color: var(--white);
}

.yj-header .yk-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.yj-header .yk-nav a:hover {
  color: var(--gold);
}

.yj-header .yk-header-actions a {
  background: var(--gold);
  color: var(--navy);
}

.yj-hero {
  height: 640px;
  place-items: stretch;
  padding: 0 72px;
  background: var(--navy);
}

.yj-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 23, 42, 0), var(--navy) 82%);
}

.yj-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.9) contrast(1.04) brightness(0.92);
  transform: scale(1.02);
}

.yj-hero .yk-hero-bg {
  background:
    radial-gradient(circle at 70% 42%, rgba(212, 168, 0, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(17, 23, 42, 0.78), rgba(17, 23, 42, 0.48) 48%, rgba(17, 23, 42, 0.7));
  transform: none;
}

.yj-hero .yk-hero-copy {
  width: min(1600px, 100%);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  text-align: left;
  position: relative;
  z-index: 2;
}

.yj-hero .yk-hero-copy::before {
  content: "";
  width: 84px;
  height: 4px;
  margin-bottom: 34px;
  background: var(--gold);
}

.yj-hero .yk-hero-copy p {
  color: var(--gold);
  font-size: 22px;
}

.yj-hero .yk-hero-copy h1 {
  margin-top: 18px;
  font-size: 64px;
  line-height: 1.28;
}

.yj-hero .yk-hero-copy span {
  max-width: 720px;
  margin-top: 28px;
  color: var(--gold);
  font-size: 21px;
  line-height: 1.72;
}

.yj-proof-strip {
  grid-template-columns: repeat(3, minmax(120px, 1fr)) repeat(3, 170px);
  gap: 16px;
  margin-top: -18px;
  padding-bottom: 78px;
}

.yj-proof-strip .yk-proof-item,
.yj-proof-strip .yk-mini-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.yj-proof-strip .yk-proof-item {
  padding: 28px;
}

.yj-proof-strip .yk-proof-item strong {
  color: var(--white);
  font-size: 23px;
}

.yj-proof-strip .yk-proof-item em {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.yj-proof-strip .yk-mini-card img {
  height: 160px;
}

.yj-proof-strip .yj-mini-text {
  position: relative;
  display: grid;
  align-content: end;
  padding: 24px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.yj-proof-strip .yj-mini-text::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(212, 168, 0, 0.18) 0 1px, transparent 1px 14px);
  opacity: 0.82;
}

.yj-proof-strip .yj-mini-text::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 168, 0, 0.5);
  transform: rotate(45deg);
}

.yj-proof-strip .yj-mini-text span {
  position: relative;
  color: var(--white);
}

.yj-proof-strip .yj-mini-text em {
  position: relative;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
}

.yj-center-section,
.yj-lawyer-section,
.yj-work-section,
.yj-consult-section,
.yj-help-section,
.yj-column-section,
.yj-media-section {
  background: var(--navy);
  color: var(--white);
}

.yj-center-section {
  padding-top: 76px;
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.yj-center-section .yk-center-wrap {
  grid-template-columns: 390px 1fr;
  gap: 70px;
  padding: 26px 0 78px;
}

.yj-practice-trio {
  max-width: 1600px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.yj-practice-trio a {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.yj-practice-trio span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.yj-practice-trio strong {
  display: block;
  margin-top: 28px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.2;
}

.yj-practice-trio p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.yj-center-section .yk-center-card {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 0;
}

.yj-center-section .yk-center-card h2 {
  font-size: 46px;
}

.yj-center-section .yk-field-list {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(8, 64px);
  grid-auto-flow: column;
  gap: 0 60px;
}

.yj-center-section .yk-field-list a {
  min-height: 64px;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.yj-center-section .yk-field-list strong {
  color: var(--gold);
}

.yj-center-section .yk-field-list em {
  color: rgba(255, 255, 255, 0.42);
}

.yj-lawyer-section {
  padding-top: 108px;
  background: var(--navy-3);
}

.yk-title h2,
.yj-lawyer-section .yk-title h2,
.yj-work-section .yk-title h2,
.yj-consult-section .yk-title h2,
.yj-help-section .yk-title h2,
.yj-column-section .yk-title h2,
.yj-media-section .yk-title h2 {
  color: var(--white);
}

.yj-section-lead {
  max-width: 980px;
  margin: -24px auto 54px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.yj-lawyer-feature article {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.yj-lawyer-feature h3 {
  color: var(--white);
}

.yj-lawyer-feature p {
  color: rgba(255, 255, 255, 0.68);
}

.yj-lawyer-feature a {
  color: var(--gold);
}

.yj-team-grid {
  max-width: 1600px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.yj-team-grid article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.yj-team-grid img {
  display: block;
  width: 100%;
  height: 280px;
  margin: 0 0 26px;
  object-fit: cover;
  object-position: center 20%;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(212, 168, 0, 0.22);
}

.yj-team-grid article:nth-child(1) img,
.yj-team-grid article:nth-child(2) img {
  object-position: center 24%;
}

.yj-team-grid article:nth-child(3) img {
  object-position: center 28%;
}

.yj-team-grid article:nth-child(4) img {
  object-position: center 20%;
}

.yj-team-grid strong {
  display: block;
  padding: 0 22px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.yj-team-grid span,
.yj-team-grid em {
  margin-top: 8px;
  padding: 0 22px 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.yj-team-grid .pending {
  justify-content: start;
  background: linear-gradient(135deg, rgba(212, 168, 0, 0.1), rgba(255, 255, 255, 0.04));
}

.yj-team-grid .pending em {
  width: fit-content;
  margin-bottom: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 900;
}

.yj-media-section {
  padding-top: 104px;
  background: var(--navy);
}

.yj-media-section .yk-media-grid img {
  border: 1px solid var(--line);
  border-radius: 0;
  height: 240px;
}

.yj-sequence-section {
  padding: 108px 42px;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.92), rgba(22, 33, 62, 0.94)),
    url("./assets/photos/office-1.jpg") center/cover fixed;
}

.yj-sequence-wrap {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.yj-sequence-wrap article {
  min-height: 360px;
  display: grid;
  align-content: start;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(17, 23, 42, 0.72);
}

.yj-sequence-wrap span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.yj-sequence-wrap h2 {
  margin-top: 34px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.32;
}

.yj-sequence-wrap p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.yj-docs-section {
  padding: 104px 42px 112px;
  background:
    linear-gradient(180deg, var(--navy-2), var(--navy-3));
  color: var(--white);
}

.yj-docs-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.yj-docs-grid figure {
  position: relative;
  min-height: 520px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease;
}

.yj-docs-grid figure:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.yj-docs-grid img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.yj-docs-grid figcaption {
  padding-top: 22px;
}

.yj-docs-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.yj-docs-grid strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1.42;
}

.yj-work-section {
  background: var(--navy-2);
}

.yj-work-section .yk-work-cards a {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.yj-work-section .yk-work-cards strong {
  color: var(--white);
}

.yj-work-section .yk-work-cards p {
  color: rgba(255, 255, 255, 0.62);
}

.yj-consult-section {
  background: var(--navy);
}

.yj-consult-section .yk-match,
.yj-consult-section .yk-side-boxes a {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.yj-consult-section .yk-match h3,
.yj-consult-section .yk-side-boxes strong {
  color: var(--white);
}

.yj-consult-section .yk-match p,
.yj-consult-section .yk-side-boxes span {
  color: rgba(255, 255, 255, 0.62);
}

.yj-help-section {
  background: var(--navy-3);
}

.yj-help-section .compact-help {
  max-width: 1740px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.85fr);
  gap: 30px;
}

.yj-help-section .compact-help .yk-help-card,
.yj-help-section .compact-help .yk-news-card {
  min-height: 340px;
}

.yj-help-section .compact-help .yk-help-card {
  padding: 40px;
}

.yj-help-section .compact-help .yk-help-card strong {
  font-size: 36px;
}

.yj-help-section .compact-help .yk-help-card span {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.55;
}

.yj-help-section .yk-news-card {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
}

.yj-help-section .yk-news-card h3 {
  color: var(--white);
}

.yj-help-section .yk-news-card div {
  grid-template-columns: 150px 1fr;
  min-height: 70px;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.08);
}

.yj-help-section .yk-news-card span {
  font-size: 18px;
}

.yj-help-section .yk-news-card p {
  font-size: 21px;
  color: rgba(255, 255, 255, 0.7);
}

.yj-case-banner {
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.94), rgba(17, 23, 42, 0.72)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
}

.yj-case-banner h2,
.yj-case-banner strong {
  color: var(--white);
}

.yj-case-banner p {
  color: rgba(255, 255, 255, 0.68);
}

.yj-case-banner a {
  background: var(--gold);
  color: var(--navy);
}

.yj-column-section {
  background: var(--navy);
}

.yj-column-section .yk-column-grid a {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.yj-footer,
.yk-footer {
  background: #0d1222;
  border-top: 1px solid var(--soft-line);
}

.yk-footer-links {
  border-color: var(--soft-line);
}

.yk-footer-links,
.yk-footer-bottom p {
  color: rgba(255, 255, 255, 0.56);
}

.yk-footer-bottom strong {
  color: var(--white);
}

.yj-final-section {
  padding: 128px 42px;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.96), rgba(17, 23, 42, 0.8)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
  color: var(--white);
}

.yj-final-section > div {
  max-width: 1600px;
  margin: 0 auto;
}

.yj-final-section p {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.yj-final-section h2 {
  max-width: 920px;
  margin-top: 18px;
  color: var(--white);
  font-size: 62px;
  line-height: 1.22;
}

.yj-final-section span {
  display: block;
  max-width: 780px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  line-height: 1.65;
}

.yj-final-section div div {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}

.yj-final-section a {
  min-width: 210px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}

.yj-final-section a:first-child {
  background: var(--gold);
  color: var(--navy);
}

.yk-home h1,
.yk-home h2,
.yk-home h3,
.yk-home .yk-hero-copy p,
.yk-home .yk-proof-item strong,
.yk-home .yk-mini-card span,
.yk-home .yk-center-card h2,
.yk-home .yk-field-list span,
.yk-home .yk-lawyer-feature h3,
.yk-home .yk-work-cards strong,
.yk-home .yk-side-boxes strong,
.yk-home .yk-news-card h3,
.yk-home .yk-column-grid strong,
.yk-home .yk-case-banner strong,
.yk-home .yj-practice-trio strong,
.yk-home .yj-team-grid strong,
.yk-home .yj-sequence-wrap h2,
.yk-home .yj-docs-grid strong,
.yk-home .yj-final-section h2 {
  font-weight: 800;
}

body:not(.yk-home) h1,
body:not(.yk-home) h2,
body:not(.yk-home) h3,
body:not(.yk-home) .subcategory-grid a,
body:not(.yk-home) .large-list li,
body:not(.yk-home) .flow-grid span,
body:not(.yk-home) .subpage-grid article,
body:not(.yk-home) .contact-card strong,
body:not(.yk-home) .category-visual figcaption {
  font-weight: 800;
}

body:not(.yk-home) .site-header {
  height: 78px;
  padding: 0 42px;
  grid-template-columns: 270px 1fr 320px;
  background: rgba(17, 23, 42, 0.94);
}

body:not(.yk-home) .gnb {
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

body:not(.yk-home) .header-cta {
  min-height: 48px;
  padding: 0 20px;
}

body:not(.yk-home) .category-landing,
body:not(.yk-home) .detail-hero {
  min-height: 650px;
  grid-template-columns: minmax(0, 1fr) 620px;
  gap: 64px;
  padding: 154px 72px 104px;
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.98), rgba(17, 23, 42, 0.9)),
    url("./assets/photos/office-2.jpg") center/cover no-repeat;
}

body:not(.yk-home) .category-landing h1,
body:not(.yk-home) .detail-hero h1 {
  max-width: 900px;
  font-size: 60px;
  line-height: 1.24;
}

body:not(.yk-home) .category-landing p:not(.eyebrow),
body:not(.yk-home) .detail-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

body:not(.yk-home) .section {
  padding: 124px 72px;
  background: var(--navy);
  color: var(--white);
}

body:not(.yk-home) .section h2 {
  font-size: 48px;
  line-height: 1.28;
}

body:not(.yk-home) .section h3 {
  font-size: 28px;
  line-height: 1.3;
}

body:not(.yk-home) .section-head {
  min-width: 0;
  position: relative;
  z-index: 2;
}

body:not(.yk-home) .section-head.split {
  grid-template-columns: minmax(0, 620px) minmax(0, 520px);
  gap: 72px;
  align-items: start;
}

body:not(.yk-home) .section-head {
  margin-bottom: 74px;
}

body:not(.yk-home) .section-head.center {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  text-align: center;
}

body:not(.yk-home) .section-head.split > *,
body:not(.yk-home) .detail-two-column > *,
body:not(.yk-home) .case-grid > * {
  min-width: 0;
}

body:not(.yk-home) .section-head h2 {
  max-width: 620px;
}

body:not(.yk-home) .section-head.center h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.yk-home) .section-head.center p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.yk-home) .section-head.split p:not(.eyebrow),
body:not(.yk-home) .section-head.center p,
body:not(.yk-home) .section p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

body:not(.yk-home) .category-visual {
  min-height: 500px;
  border-color: var(--line);
}

body:not(.yk-home) .category-visual img {
  height: 500px;
}

body:not(.yk-home) .subcategory-grid {
  border-color: var(--line);
}

body:not(.yk-home) .subcategory-grid a {
  min-height: 148px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

body:not(.yk-home) .subcategory-grid a:hover {
  background: rgba(212, 168, 0, 0.16);
  color: var(--gold);
}

body:not(.yk-home) .contact-section {
  background:
    linear-gradient(90deg, rgba(17, 23, 42, 0.96), rgba(17, 23, 42, 0.82)),
    url("./assets/photos/office-1.jpg") center/cover no-repeat;
}

body:not(.yk-home) .contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

body:not(.yk-home) .contact-card strong {
  color: var(--gold);
  font-size: 36px;
}

body:not(.yk-home) .detail-two-column,
body:not(.yk-home) .proof-section,
body:not(.yk-home) .light-section,
body:not(.yk-home) .lawyers-section {
  background: var(--navy-2);
}

body:not(.yk-home) .proof-section .case-grid {
  position: relative;
  z-index: 1;
  gap: 28px;
}

body:not(.yk-home) .proof-section .case-card {
  position: relative;
  inset: auto;
  min-height: 300px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 36px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

body:not(.yk-home) .proof-section .document-thumb {
  grid-row: 1 / 4;
  min-height: 220px;
}

body:not(.yk-home) .proof-section .case-card span,
body:not(.yk-home) .proof-section .case-card h3,
body:not(.yk-home) .proof-section .case-card p {
  grid-column: 2;
}

body:not(.yk-home) .large-list li,
body:not(.yk-home) .flow-grid article,
body:not(.yk-home) .subpage-grid article,
body:not(.yk-home) .case-card,
body:not(.yk-home) .lawyer-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

body:not(.yk-home) .large-list {
  gap: 24px;
}

body:not(.yk-home) .large-list li,
body:not(.yk-home) .flow-grid article,
body:not(.yk-home) .subpage-grid article {
  padding: 34px;
}

body:not(.yk-home) .flow-grid {
  gap: 24px;
}

body:not(.yk-home) .large-list li,
body:not(.yk-home) .flow-grid span {
  font-size: 22px;
  line-height: 1.45;
}

body:not(.yk-home) .flow-grid p,
body:not(.yk-home) .subpage-grid p,
body:not(.yk-home) .lawyer-card p,
body:not(.yk-home) .case-card p {
  font-size: 17px;
  line-height: 1.7;
}

body:not(.yk-home) .lawyer-card h3 {
  font-size: 26px;
}

body:not(.yk-home) .lawyer-grid {
  align-items: stretch;
  gap: 30px;
}

body:not(.yk-home) .lawyer-card {
  min-height: 560px;
  grid-template-rows: 360px auto 1fr;
}

body:not(.yk-home) .lawyer-card img {
  height: 360px;
}

body:not(.yk-home) .lawyer-card h3 {
  padding: 28px 34px 0;
}

body:not(.yk-home) .lawyer-card p {
  padding: 16px 34px 36px;
}

@media (max-width: 900px) {
  .top-notice span {
    display: none;
  }

  .yk-header,
  .yk-proof-strip,
  .yk-center-wrap,
  .yk-lawyer-feature,
  .yk-work-cards,
  .yk-consult-grid,
  .yk-help-grid,
  .yk-case-banner,
  .yk-column-grid,
  .yk-media-grid,
  .yk-footer-bottom {
    grid-template-columns: 1fr;
  }

  .yk-header {
    height: auto;
    padding: 18px 22px;
  }

  .sitemap-panel,
  .yk-home .sitemap-panel {
    top: 0;
    max-height: 100vh;
    overflow: auto;
    padding: 24px 20px 34px;
  }

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

  .sitemap-grid section {
    min-height: auto;
  }

  .yk-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .yk-hero-copy h1 {
    font-size: 42px;
  }

  .yk-hero-copy p,
  .yk-title h2 {
    font-size: 30px;
  }

  .yk-proof-strip {
    margin-top: 0;
  }

  .yk-field-list,
  .yk-lawyer-feature article,
  .yk-match div {
    grid-template-columns: 1fr;
  }

  .yk-column-grid {
    grid-template-rows: auto;
  }

  .yk-column-grid a,
  .yk-column-grid .large,
  .yk-column-grid .dark {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }
}
