:root {
  --navy: #0c1f3d;
  --navy-deep: #061229;
  --navy-soft: #1c3458;
  --gold: #b08a3b;
  --gold-soft: #d6b365;
  --parchment: #f5f0e6;
  --parchment-deep: #ebe3d2;
  --ink: #14181f;
  --muted: #6b7382;
  --line: #d8d2c2;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
}

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

.serif {
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", "Songti TC", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}

.law-nav {
  position: sticky;
  top: 0;
  z-index: 14;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(12, 31, 61, 0.96);
  color: var(--parchment);
  border-bottom: 1px solid rgba(214, 179, 101, 0.18);
}

.law-nav .back {
  font-size: 0.84rem;
  color: rgba(245, 240, 230, 0.7);
}

.law-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.crest {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(176, 138, 59, 0.18) 0%, transparent 100%);
}

.crest::before {
  content: "正";
  font-family: "Cormorant Garamond", "Songti TC", Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}

.crest::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 14px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.law-brand .name strong {
  display: block;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--parchment);
}

.law-brand .name span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.law-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.86rem;
  color: rgba(245, 240, 230, 0.78);
  font-weight: 500;
}

.law-links a:hover,
.law-links a.active {
  color: var(--gold-soft);
}

.law-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 200ms ease, color 200ms ease;
}

.law-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

main { padding-bottom: 0; }

.law-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--parchment);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px) clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}

.law-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.law-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.35;
  filter: saturate(0.7) contrast(1.1);
}

.law-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--navy-deep) 0%, rgba(6, 18, 41, 0.78) 35%, rgba(6, 18, 41, 0.45) 70%, rgba(6, 18, 41, 0.7) 100%),
    radial-gradient(60% 50% at 75% 30%, rgba(176, 138, 59, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.law-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(45deg, rgba(214, 179, 101, 0.04) 0 1px, transparent 1px 36px);
  pointer-events: none;
}

.law-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}

.law-hero .quote {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-soft);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.law-hero .quote::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.law-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  color: var(--parchment);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.law-hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.law-hero .lead {
  font-size: 1.08rem;
  color: rgba(245, 240, 230, 0.82);
  max-width: 540px;
  margin: 0 0 36px;
}

.law-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold,
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-line {
  border: 1px solid rgba(245, 240, 230, 0.5);
  color: var(--parchment);
}

.btn-line:hover {
  background: var(--parchment);
  color: var(--navy-deep);
}

.hero-meta {
  border-left: 1px solid rgba(214, 179, 101, 0.4);
  padding-left: 36px;
  display: grid;
  gap: 28px;
}

.hero-meta article span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-meta article strong {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 2.4rem;
  color: var(--parchment);
  font-weight: 500;
  line-height: 1;
}

.hero-meta article p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
}

.law-strip {
  background: var(--navy-deep);
  color: rgba(245, 240, 230, 0.8);
  padding: 22px clamp(20px, 5vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.law-strip span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.law-strip span::after {
  content: "·";
  color: var(--gold);
}

.law-strip span:last-child::after { display: none; }

.law-section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
  max-width: 1320px;
  margin: 0 auto;
}

.law-section.tone-dark {
  background: var(--navy);
  color: var(--parchment);
  max-width: none;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.tone-dark .section-head {
  border-bottom-color: rgba(214, 179, 101, 0.3);
}

.section-head h2 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.section-head .uppercase { color: var(--gold); }
.tone-dark .section-head .uppercase { color: var(--gold-soft); }

.section-head .more {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.tone-dark .section-head .more { color: var(--gold-soft); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--parchment-deep);
}

.practice-card {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--parchment);
  position: relative;
  transition: background 220ms ease;
}

.practice-card:hover {
  background: var(--parchment-deep);
}

.practice-card:nth-child(3n) { border-right: 0; }
.practice-card:nth-last-child(-n + 3) { border-bottom: 0; }

.practice-card .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.practice-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.practice-card p {
  margin: 0 0 14px;
  font-size: 0.94rem;
  color: var(--muted);
}

.practice-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--navy-soft);
}

.practice-card .tags span::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.practice-card .tags span:last-child::after { display: none; }

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

.why-card {
  background: rgba(245, 240, 230, 0.04);
  border: 1px solid rgba(214, 179, 101, 0.2);
  padding: 32px 28px;
}

.why-card .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

.why-card h3 {
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--parchment);
}

.why-card p {
  margin: 0;
  color: rgba(245, 240, 230, 0.8);
  font-size: 0.96rem;
}

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

.attorney-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  display: block;
  transition: transform 220ms ease, box-shadow 220ms ease, border-top-color 220ms ease;
}

.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(12, 31, 61, 0.35);
  border-top-color: var(--gold-soft);
}

.attorney-card .seal {
  position: relative;
  background: var(--navy);
  color: var(--gold-soft);
  padding: 40px 28px 30px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(214, 179, 101, 0.25);
}

.attorney-card .seal::before,
.attorney-card .seal::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(214, 179, 101, 0.4);
}

.attorney-card .seal::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
}

.attorney-card .seal::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
}

.attorney-card .seal span {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: "Songti TC", "Noto Serif TC", "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  box-shadow: inset 0 0 0 3px var(--navy-deep), inset 0 0 0 4px var(--gold);
}

.attorney-info {
  padding: 22px;
}

.attorney-info h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}

.attorney-info .role {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.attorney-info p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.attorney-info .bar {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--navy-soft);
}

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

.insight-card {
  display: grid;
  gap: 14px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}

.insight-card:last-child { border-right: 0; }

.insight-card .date {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.insight-card .category {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  padding: 4px 10px;
  border: 1px solid var(--line);
  justify-self: start;
}

.insight-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.insight-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.insight-card .read {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  justify-self: start;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: stretch;
}

.contact-info-card {
  position: relative;
  background: var(--navy);
  color: var(--parchment);
  padding: 40px;
  overflow: hidden;
  isolation: isolate;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.18;
  filter: saturate(0.6);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(12, 31, 61, 0.85) 50%, rgba(6, 18, 41, 0.78) 100%);
  pointer-events: none;
}

.contact-info-card > *:not(.contact-bg) {
  position: relative;
  z-index: 2;
}

.contact-info-card h2 {
  margin: 12px 0 16px;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--parchment);
  font-weight: 500;
}

.contact-info-card .uppercase { color: var(--gold-soft); }

.contact-info-card p {
  color: rgba(245, 240, 230, 0.8);
  font-size: 0.96rem;
}

.contact-rows {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-rows > div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(214, 179, 101, 0.25);
}

.contact-rows > div:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-rows span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.contact-rows strong {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.15rem;
  color: var(--parchment);
  font-weight: 500;
}

.consult-form {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 40px;
  display: grid;
  gap: 18px;
}

.consult-form h3 {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
}

.consult-form .note {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consult-form label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--parchment-deep);
  font-size: 1rem;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

.consult-form button {
  margin-top: 8px;
  border: 0;
  background: var(--navy);
  color: var(--parchment);
  padding: 16px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 200ms ease;
}

.consult-form button:hover { background: var(--navy-soft); }

.consult-form .ack {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.law-foot {
  background: var(--navy-deep);
  color: rgba(245, 240, 230, 0.7);
  padding: 56px clamp(20px, 5vw, 80px) 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(214, 179, 101, 0.18);
}

.law-foot h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}

.law-foot a { display: block; padding: 4px 0; font-size: 0.92rem; }
.law-foot a:hover { color: var(--gold-soft); }

.law-foot .legal {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 179, 101, 0.15);
  font-size: 0.78rem;
  color: rgba(245, 240, 230, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

:root {
  --ink-soft: #3a4252;
}

.attorney-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--parchment);
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}

.attorney-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 25% 30%, rgba(176, 138, 59, 0.18) 0%, transparent 60%),
    repeating-linear-gradient(45deg, rgba(214, 179, 101, 0.04) 0 1px, transparent 1px 36px);
  pointer-events: none;
}

.attorney-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.attorney-seal-large {
  position: relative;
  width: 220px;
  height: 220px;
  background: var(--navy);
  border: 1px solid rgba(214, 179, 101, 0.4);
  display: grid;
  place-items: center;
}

.attorney-seal-large::before,
.attorney-seal-large::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(214, 179, 101, 0.5);
}

.attorney-seal-large::before {
  top: 18px;
  left: 18px;
  border-right: 0;
  border-bottom: 0;
}

.attorney-seal-large::after {
  bottom: 18px;
  right: 18px;
  border-left: 0;
  border-top: 0;
}

.attorney-seal-large span {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: "Songti TC", "Noto Serif TC", "Cormorant Garamond", Georgia, serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px var(--navy-deep), inset 0 0 0 5px var(--gold);
}

.attorney-header-info h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.attorney-pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attorney-pills span {
  font-size: 0.82rem;
  padding: 6px 14px;
  border: 1px solid rgba(214, 179, 101, 0.4);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(176, 138, 59, 0.08);
}

.attorney-bio {
  background: var(--parchment);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.bio-grid .uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.bio-timeline {
  display: grid;
  gap: 0;
}

.bio-timeline article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.bio-timeline article:first-child {
  border-top: 0;
  padding-top: 0;
}

.bio-year {
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  padding-top: 2px;
}

.bio-timeline h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.bio-timeline p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.bio-aside {
  display: grid;
  gap: 18px;
}

.bio-card {
  background: var(--parchment-deep);
  border: 1px solid var(--line);
  padding: 24px;
}

.bio-card.highlight {
  background: var(--navy);
  color: var(--parchment);
  border-color: var(--navy);
}

.bio-card.highlight .uppercase {
  color: var(--gold-soft);
}

.bio-card .uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.bio-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.bio-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 28px;
}

.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.case-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.case-card p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.case-meta {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: block;
}

.pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pub-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.pub-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.pub-year {
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.pub-list h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", "EB Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.pub-list p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.cup-profile-head .uppercase {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.back {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.back:hover { color: var(--gold); }

@media (max-width: 900px) {
  .attorney-hero-inner { grid-template-columns: 1fr; }
  .attorney-seal-large { width: 160px; height: 160px; }
  .attorney-seal-large span { width: 100px; height: 100px; font-size: 3.6rem; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-timeline article { grid-template-columns: 1fr; gap: 8px; }
  .cases-grid { grid-template-columns: 1fr; }
  .pub-list li { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 1080px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .practice-card:nth-child(2n) { border-right: 0; }
  .practice-card:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .practice-card:nth-last-child(-n + 2) { border-bottom: 0; }
  .attorney-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .law-nav { grid-template-columns: 1fr auto; row-gap: 12px; }
  .law-links { grid-column: 1 / -1; order: 4; flex-wrap: wrap; }
  .law-hero-inner { grid-template-columns: 1fr; }
  .hero-meta { border-left: 0; padding-left: 0; border-top: 1px solid rgba(214, 179, 101, 0.3); padding-top: 28px; grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .practice-card:last-child { border-bottom: 0 !important; }
  .why-grid,
  .attorney-grid,
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; padding-right: 0; }
  .insight-card:last-child { border-bottom: 0; }
  .contact-block { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .law-foot { grid-template-columns: 1fr 1fr; }
}

.law-nav .yuwai-back {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(245, 240, 230, 0.7);
}

.law-nav .yuwai-back:hover {
  color: var(--gold-soft);
}
