:root {
  --primary: #b86b45;
  --primary_dark: #8f4d32;
  --secondary: #e8b98a;
  --warm_red: #c85c4a;
  --bg: #fff8f1;
  --bg_soft: #fff1e3;
  --card: #ffffff;
  --text: #3e312b;
  --muted: #7a6a60;
  --line: #ead8c8;
  --line_soft: #f3e6d9;
  --shadow: 0 22px 50px rgba(123, 83, 54, 0.10);
  --shadow_soft: 0 14px 34px rgba(123, 83, 54, 0.08);
  --radius: 24px;
  --width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.76;
  background: var(--bg);
}

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

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

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

.container {
  width: min(var(--width), calc(100% - 48px));
  margin: 0 auto;
}

.site_header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(234, 216, 200, 0.72);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
}

.header_inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

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

.brand img {
  width: 178px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--text);
  font-size: 14px;
}

.nav a {
  position: relative;
  padding: 32px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a.is_active::after {
  transform: scaleX(1);
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.mobile_toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  background: var(--card);
}

.button,
.button_outline,
.button_light {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #cf6f3c);
  box-shadow: 0 14px 30px rgba(184, 107, 69, 0.26);
}

.button_outline {
  color: var(--primary_dark);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
}

.button_light {
  color: var(--primary_dark);
  background: var(--bg_soft);
}

.button:hover,
.button_outline:hover,
.button_light:hover {
  transform: translateY(-2px);
}

.button:hover {
  box-shadow: 0 18px 34px rgba(184, 107, 69, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 70px;
  border-bottom: 1px solid var(--line_soft);
  background:
    radial-gradient(circle at 8% 8%, rgba(232, 185, 138, 0.22), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #fff5ea 100%);
}

.hero_inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 84px;
  align-items: center;
}

.hero_title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero_line {
  width: 88px;
  height: 3px;
  margin: 28px 0 28px;
  border-radius: 999px;
  background: var(--primary);
}

.hero_text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero_media {
  position: relative;
  min-height: 452px;
}

.hero_media::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(232, 185, 138, 0.22);
  animation: softFloat 6s ease-in-out infinite;
}

.hero_media_img {
  width: 100%;
  height: 488px;
  object-fit: cover;
  object-position: center center;
  border-radius: 112px 0 112px 24px;
  box-shadow: var(--shadow);
}

.hero_card {
  position: absolute;
  left: 28px;
  top: 34px;
  width: 274px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow_soft);
  backdrop-filter: blur(10px);
  animation: cardFloat 5.6s ease-in-out infinite;
}

.hero_card_icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--primary);
  background: #fff0e5;
}

.hero_card h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.36;
}

.hero_card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero_slider {
  position: relative;
  height: 590px;
  overflow: hidden;
  background: #4a342a;
}

.hero_slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.hero_slide.is_active {
  opacity: 1;
  pointer-events: auto;
}

.hero_slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 5.8s ease;
}

.hero_slide.is_active > img {
  transform: scale(1);
}

.hero_slide_mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 31, 23, 0.76) 0%, rgba(62, 43, 33, 0.48) 43%, rgba(62, 43, 33, 0.08) 76%);
}

.hero_slide_content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero_eyebrow,
.section_kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero_eyebrow {
  color: rgba(255,255,255,0.78);
}

.hero_slide_content h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.17;
}

.hero_slide_content > p:not(.hero_eyebrow) {
  max-width: 530px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
}

.hero_slide_content .hero_actions {
  margin-top: 30px;
}

.hero_outline {
  color: #fff;
  border-color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.12);
}

.hero_slider_controls {
  position: absolute;
  right: max(24px, calc((100% - var(--width)) / 2));
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero_slider_controls > button,
.hero_slider_dots button {
  border: 0;
  cursor: pointer;
}

.hero_slider_controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  color: #fff;
  background: rgba(43,28,21,0.24);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero_slider_controls > button:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.hero_slider_dots {
  display: flex;
  gap: 8px;
}

.hero_slider_dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero_slider_dots button.is_active {
  width: 42px;
  background: #fff;
}

.section {
  padding: 92px 0;
}

.section_soft {
  background: linear-gradient(180deg, #fffaf6 0%, #fff1e3 100%);
}

.section_head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section_head_left {
  margin-left: 0;
  text-align: left;
}

.section_title {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.28;
  letter-spacing: 0;
}

.section_mark {
  width: 46px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.section_head_left .section_mark {
  margin-left: 0;
}

.section_desc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.empathy_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.empathy_card,
.service_card,
.lawyer_card,
.lawyer_lead_card,
.case_feature,
.case_point,
.knowledge_card,
.faq_item,
.listing_card,
.case_card,
.article_card,
.info_note,
.contact_card,
.form_card,
.map_card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow_soft);
}

.empathy_card,
.service_card,
.lawyer_card,
.lawyer_lead_card,
.case_point,
.knowledge_card,
.faq_item,
.listing_card,
.info_note {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.empathy_card:hover,
.service_card:hover,
.lawyer_card:hover,
.lawyer_lead_card:hover,
.case_point:hover,
.knowledge_card:hover,
.faq_item:hover,
.listing_card:hover,
.info_note:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 107, 69, 0.34);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 42px rgba(123, 83, 54, 0.12);
}

.empathy_card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 24px;
  min-height: 178px;
  align-items: center;
  padding: 24px;
}

.empathy_card h3,
.service_card h3,
.lawyer_card h3,
.case_card h3,
.article_card h3,
.info_note h3 {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.45;
}

.empathy_card h3,
.service_card h3,
.article_card h3,
.info_note h3 {
  font-size: 18px;
}

.empathy_card p,
.service_card p,
.lawyer_card p,
.case_card p,
.article_card p,
.info_note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.empathy_icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--primary);
  background: #fff0e5;
}

.empathy_card img {
  width: 176px;
  height: 126px;
  align-self: center;
  object-fit: cover;
  border-radius: 18px;
}

.about_layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about_text {
  color: var(--muted);
  font-size: 14px;
}

.about_text p {
  margin: 0 0 18px;
}

.about_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about_media {
  display: grid;
  gap: 20px;
}

.about_media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info_notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info_note {
  padding: 22px;
  box-shadow: none;
}

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

.service_overview {
  background: #fffdfb;
}

.data_section {
  background: #fffaf6;
}

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

.stat_item {
  position: relative;
  padding: 26px 20px 22px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line_soft);
  background: rgba(255, 255, 255, 0.54);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.stat_item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 42px;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.stat_item:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 107, 69, 0.42);
  box-shadow: var(--shadow_soft);
}

.stat_value {
  display: inline-flex;
  align-items: baseline;
  color: var(--primary_dark);
  white-space: nowrap;
}

.stat_value strong {
  font: 600 clamp(34px, 4vw, 58px)/1 Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.stat_value em {
  margin-left: 3px;
  font: 600 24px/1 Georgia, "Times New Roman", serif;
  font-style: normal;
}

.stat_value .stat_suffix_empty {
  display: none;
}

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

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

.service_domain {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow_soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service_domain::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #fff1e5;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service_domain:hover {
  transform: translateY(-7px);
  border-color: rgba(184,107,69,0.42);
  box-shadow: 0 24px 44px rgba(123,83,54,0.13);
}

.service_domain:hover::after {
  transform: scale(1.3);
  background: #f8ddc8;
}

.service_domain_num,
.service_domain > i,
.service_domain h3,
.service_domain p,
.service_domain > span:last-child {
  position: relative;
  z-index: 1;
}

.service_domain_num {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font: italic 24px/1 Georgia, serif;
}

.service_domain > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--primary);
  background: #fff2e8;
}

.service_domain h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
}

.service_domain p {
  margin: 0;
  max-width: 270px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.service_domain > span:last-child {
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--primary_dark);
  font-size: 12px;
  font-weight: 700;
}

.service_card {
  overflow: hidden;
}

.service_card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service_card:hover img,
.case_feature:hover img,
.knowledge_card:hover img,
.listing_card:hover img {
  transform: scale(1.045);
}

.service_body {
  padding: 22px;
}

.service_links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  color: var(--primary);
  font-size: 14px;
}

.process_band {
  padding: 58px 54px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow_soft);
}

.process_steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 44px;
}

.process_step {
  position: relative;
  text-align: center;
}

.process_step::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(100% + 22px);
  width: 38px;
  height: 12px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml,%3Csvg width='44' height='12' viewBox='0 0 44 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H39' stroke='%23d59a77' stroke-width='1.4' stroke-linecap='round' stroke-dasharray='4 5'/%3E%3Cpath d='M35 2L40 6L35 10' stroke='%23b86b45' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.process_step:last-child::after {
  display: none;
}

.process_step_num {
  display: block;
  margin-bottom: 16px;
  color: var(--warm_red);
  font-size: 30px;
  font-family: Georgia, serif;
  font-style: italic;
}

.process_step h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
}

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

.team_layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.lawyer_unified_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.lawyer_profile_card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow_soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lawyer_profile_card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,107,69,0.38);
  box-shadow: 0 24px 44px rgba(123,83,54,0.13);
}

.lawyer_profile_card img {
  width: 100%;
  height: 326px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.lawyer_profile_media {
  display: block;
  overflow: hidden;
}

.lawyer_profile_card:hover img {
  transform: scale(1.035);
}

.lawyer_profile_card div {
  padding: 20px;
}

.lawyer_profile_card span {
  display: block;
  min-height: 18px;
  color: var(--primary);
  font-size: 12px;
}

.lawyer_profile_card h3 {
  margin: 8px 0 6px;
  color: var(--text);
  font-size: 20px;
}

.lawyer_profile_card p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.lawyer_profile_card a {
  color: var(--primary_dark);
  font-size: 12px;
  font-weight: 700;
}

.lawyer_profile_card a i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.lawyer_profile_card a:hover i {
  transform: translateX(4px);
}

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

.lawyer_lead_card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow_soft);
}

.lawyer_lead_card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.lawyer_lead_card:hover img,
.lawyer_card:hover img {
  transform: scale(1.035);
}

.lawyer_lead_card div {
  padding: 22px;
}

.lawyer_lead_card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
}

.lawyer_lead_card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
}

.lawyer_lead_card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.featured_lawyer {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow_soft);
}

.featured_lawyer img,
.lawyer_card img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.featured_lawyer img {
  height: 336px;
}

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

.lawyer_card {
  padding: 18px;
  box-shadow: none;
}

.lawyer_card img {
  height: 286px;
  margin-bottom: 14px;
  transition: transform 0.5s ease;
}

.lawyer_card h3 {
  font-size: 18px;
}

.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.tag_list span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--primary_dark);
  background: #fff0e5;
  font-size: 12px;
}

.story_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.case_showcase {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: stretch;
}

.case_feature {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow_soft);
}

.case_feature img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.case_feature_body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.9);
  backdrop-filter: blur(10px);
}

.case_feature_body h2,
.article_panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.32;
}

.case_feature_body p,
.article_panel p,
.case_point p,
.knowledge_card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case_points {
  display: grid;
  gap: 18px;
}

.case_point {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
}

.case_point_num {
  color: var(--primary);
  font: italic 30px/1 Georgia, serif;
}

.case_point h3,
.knowledge_card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.42;
}

.knowledge_section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 34px;
  align-items: start;
}

.article_panel {
  position: sticky;
  top: 116px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff8f1 0%, #fff0e4 100%);
  box-shadow: var(--shadow_soft);
}

.knowledge_list {
  display: grid;
  gap: 18px;
}

.knowledge_card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow_soft);
  overflow: hidden;
}

.knowledge_card img {
  width: 142px;
  height: 108px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.55s ease;
}

.knowledge_meta {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
}

.faq_panel {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 58px;
  align-items: start;
}

.faq_panel .section_head {
  margin-bottom: 0;
}

.faq_panel .button {
  margin-top: 24px;
}

.faq_list {
  display: grid;
  gap: 18px;
}

.faq_item {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow_soft);
  cursor: pointer;
}

.faq_item h3 {
  position: relative;
  margin: 0 0 8px;
  padding-right: 28px;
  color: var(--text);
  font-size: 18px;
}

.faq_item h3::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq_item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq_item.is_open p {
  max-height: 120px;
  margin-top: 8px;
  opacity: 1;
}

.faq_item.is_open h3::after {
  transform: rotate(45deg);
}

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

.listing_card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow_soft);
}

.listing_card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.listing_card_body {
  padding: 24px;
}

.listing_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
}

.listing_card h2,
.listing_card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.42;
}

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

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary_dark);
  background: rgba(255,255,255,0.82);
  font-size: 14px;
}

.pagination .is_current,
.pagination a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes softFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, -10px, 0);
  }
}

.seo_hub_section {
  background: linear-gradient(180deg, #fffdfb 0%, #fff5eb 100%);
}

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

.seo_hub_column {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow_soft);
}

.seo_hub_feature {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid var(--line_soft);
}

.seo_hub_feature img {
  width: 190px;
  height: 146px;
  object-fit: cover;
  border-radius: 18px;
}

.seo_hub_feature span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.seo_hub_feature h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.32;
}

.seo_hub_feature p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.seo_hub_feature a {
  color: var(--primary_dark);
  font-size: 12px;
  font-weight: 700;
}

.seo_text_links {
  padding: 4px 22px 14px;
  margin: 0;
  list-style: none;
}

.seo_text_links li {
  border-bottom: 1px solid var(--line_soft);
}

.seo_text_links li:last-child {
  border-bottom: 0;
}

.seo_text_links a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 16px;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  color: var(--text);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.seo_text_links a span {
  color: var(--primary);
  font-size: 12px;
}

.seo_text_links a i {
  color: var(--primary);
  font-size: 12px;
  transition: transform 0.2s ease;
}

.seo_text_links a:hover {
  color: var(--primary_dark);
  transform: translateX(4px);
}

.seo_text_links a:hover i {
  transform: translateX(3px);
}

.case_card {
  overflow: hidden;
}

.case_card img,
.article_card img {
  width: 100%;
  object-fit: cover;
}

.case_card img {
  height: 280px;
}

.case_body,
.article_body {
  padding: 26px;
}

.article_list {
  display: grid;
  gap: 18px;
}

.article_card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  box-shadow: none;
}

.article_card img {
  height: 100%;
  min-height: 156px;
}

.consult_section {
  padding: 106px 0;
}

.consult_panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,248,241,0.94), rgba(255,241,227,0.92)),
    url("../images/office/office.jpg") left center / cover no-repeat;
  box-shadow: var(--shadow);
}

.consult_panel h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.28;
}

.warm_list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--muted);
}

.warm_list i {
  margin-right: 8px;
  color: var(--primary);
}

.form_card {
  padding: 26px;
  background: rgba(255,255,255,0.86);
}

.consult_form {
  display: grid;
  gap: 14px;
}

.consult_form input,
.consult_form select,
.consult_form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 15px;
  color: var(--text);
  background: rgba(255,255,255,0.94);
  outline-color: rgba(184,107,69,0.34);
}

.consult_form textarea {
  min-height: 104px;
  resize: vertical;
}

.map_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: stretch;
}

.map_card {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--primary_dark);
  background: #f7f3ee;
  text-decoration: none;
}

.contact_card {
  padding: 30px;
}

.contact_card h3 {
  margin: 6px 0 18px;
  color: var(--text);
  font-size: 24px;
}

.contact_kicker {
  display: block;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact_details {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.contact_details p {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact_details p > i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 50%;
  background: #fff1e5;
}

.contact_details p span {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}

.contact_details b {
  width: 100%;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.contact_details a {
  color: var(--primary_dark);
}

.contact_hint {
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  color: rgba(255,255,255,0.78);
  background: #3b251d;
}

.footer_inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.6fr;
  gap: 36px;
  padding: 54px 0 40px;
}

.footer_logo {
  width: 160px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
}

.footer h3 {
  color: #fff;
}

.footer_qr img {
  width: 118px;
  height: 118px;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
}

.footer_bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  font-size: 12px;
}

.page_hero {
  padding: 74px 0;
  background: linear-gradient(180deg, #fffaf6 0%, #fff1e3 100%);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.page_title {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.22;
}

.page_intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.article_main,
.side_card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow_soft);
}

.article_main {
  padding: 34px;
}

.article_main h2 {
  margin: 30px 0 12px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.34;
}

.article_main h2:first-child {
  margin-top: 0;
}

.article_main p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.soft_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.soft_card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffaf6;
}

.soft_card h3 {
  margin: 0 0 8px;
}

.side_card {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 24px;
}

.side_card h3 {
  margin: 0 0 12px;
  color: var(--text);
}

.side_qr {
  width: 128px;
  margin: 18px 0;
  padding: 6px;
  border-radius: 14px;
  background: #fff;
}

.float_contact {
  position: fixed;
  right: 18px;
  top: 46%;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.float_btn {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 26px rgba(184,107,69,0.22);
  cursor: pointer;
}

.mobile_bar {
  display: none;
}

.qr_modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(62,49,43,0.58);
}

.qr_modal.is_active {
  display: flex;
}

.qr_box {
  width: min(340px, 100%);
  padding: 28px;
  text-align: center;
  border-radius: var(--radius);
  background: #fffaf6;
  box-shadow: var(--shadow);
}

.qr_box img {
  width: 190px;
  height: 190px;
  margin: 0 auto 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is_visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal_left {
  transform: translateX(-28px);
}

.reveal.reveal_right {
  transform: translateX(28px);
}

.reveal.reveal_scale {
  transform: translateY(18px) scale(0.97);
}

.reveal.reveal_left.is_visible,
.reveal.reveal_right.is_visible,
.reveal.reveal_scale.is_visible {
  transform: translateX(0) translateY(0) scale(1);
}

@media (max-width: 1180px) {
  .header_inner {
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .mobile_toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 44px;
    order: 3;
  }

  .header_actions {
    display: none;
  }

  .nav {
    position: absolute;
    left: auto;
    right: 24px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    width: min(300px, calc(100vw - 48px));
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 0 0 22px 22px;
    background: rgba(255,250,246,0.98);
    box-shadow: var(--shadow_soft);
  }

  .nav.is_open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid var(--line_soft);
    text-align: right;
  }

  .nav a::after {
    display: block;
    right: 0;
    left: auto;
    bottom: 0;
    width: 42px;
    height: 2px;
    transform-origin: right center;
  }

  .nav a.is_active {
    color: var(--primary_dark);
    border-bottom-color: rgba(184, 107, 69, 0.3);
  }

  .hero_inner,
  .about_layout,
  .team_layout,
  .story_layout,
  .case_showcase,
  .knowledge_section,
  .faq_panel,
  .consult_panel,
  .map_layout,
  .content_layout,
  .footer_inner {
    grid-template-columns: 1fr;
  }

  .empathy_grid,
  .services_grid,
  .process_steps,
  .lawyer_lead_grid,
  .lawyer_grid,
  .listing_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process_step::after {
    display: none;
  }

  .article_panel {
    position: static;
  }

  .side_card {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 28px, var(--width));
  }

  .header_inner {
    min-height: 76px;
  }

  .brand img {
    width: min(148px, 48vw);
  }

  .hero {
    padding: 38px 0 42px;
  }

  .hero_title {
    font-size: 27px;
  }

  .hero_line {
    margin: 18px 0;
  }

  .hero_text {
    font-size: 14px;
  }

  .hero_actions {
    margin-top: 20px;
  }

  .hero_media_img {
    height: 260px;
    border-radius: 42px 0 42px 20px;
  }

  .hero_card {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .section,
  .consult_section {
    padding: 52px 0;
  }

  .section_head {
    margin-bottom: 30px;
  }

  .section_title {
    font-size: 25px;
  }

  .section_desc {
    margin-top: 12px;
  }

  .empathy_grid,
  .services_grid,
  .process_steps,
  .info_notes,
  .lawyer_lead_grid,
  .lawyer_grid,
  .listing_grid,
  .article_card,
  .knowledge_card,
  .soft_grid {
    grid-template-columns: 1fr;
  }

  .empathy_card,
  .featured_lawyer,
  .case_point {
    grid-template-columns: 1fr;
  }

  .empathy_card img {
    width: 100%;
    height: 132px;
  }

  .service_card img,
  .listing_card img {
    height: 150px;
  }

  .service_body,
  .listing_card_body {
    padding: 18px;
  }

  .process_band,
  .consult_panel,
  .article_main,
  .case_feature_body,
  .article_panel,
  .faq_item {
    padding: 24px;
  }

  .lawyer_lead_card img,
  .lawyer_card img {
    height: 260px;
  }

  .lawyer_lead_card div {
    padding: 18px;
  }

  .about_media img {
    height: 240px;
  }

  .faq_panel {
    gap: 24px;
  }

  .pagination {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .case_feature {
    min-height: auto;
  }

  .case_feature img {
    min-height: 320px;
  }

  .case_feature_body {
    position: static;
    border-radius: 0 0 22px 22px;
  }

  .knowledge_card img {
    width: 100%;
    height: 170px;
  }

  .float_contact {
    display: none;
  }

  .mobile_bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 62px;
    border-top: 1px solid var(--line);
    background: #fffaf6;
    box-shadow: 0 -12px 28px rgba(123,83,54,0.12);
  }

  .mobile_bar a,
  .mobile_bar button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    color: var(--primary_dark);
    background: transparent;
    font-size: 12px;
  }
}

@media (max-width: 1180px) {
  .stats_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 760px) {
  .hero_slider {
    height: 470px;
  }

  .hero_slide_mask {
    background: linear-gradient(90deg, rgba(47,31,23,0.76) 0%, rgba(62,43,33,0.42) 100%);
  }

  .hero_slide_content {
    padding-bottom: 74px;
  }

  .hero_slide_content h1 {
    max-width: 330px;
    font-size: 32px;
  }

  .hero_slide_content > p:not(.hero_eyebrow) {
    max-width: 310px;
    margin-top: 16px;
    font-size: 14px;
  }

  .hero_slide_content .hero_actions {
    margin-top: 22px;
  }

  .hero_slider_controls {
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .hero_slider_controls > button {
    width: 36px;
    height: 36px;
  }

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

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

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

  .stat_item {
    padding: 20px 12px 16px;
  }

  .stat_value strong {
    font-size: 36px;
  }

  .stat_value em {
    font-size: 18px;
  }

  .stat_item p {
    margin-top: 10px;
    font-size: 12px;
  }

  .service_domain {
    min-height: 0;
    padding: 18px 14px;
  }

  .service_domain > i {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .service_domain h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .service_domain p {
    font-size: 12px;
    line-height: 1.65;
  }

  .service_domain > span:last-child {
    padding-top: 16px;
  }

  .lawyer_profile_card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .lawyer_profile_card img {
    height: 100%;
    min-height: 182px;
    border-radius: 0;
  }

  .lawyer_profile_card div {
    padding: 18px;
  }

  .lawyer_profile_card p {
    min-height: 0;
    margin-bottom: 10px;
  }

  .seo_hub_feature {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .seo_hub_feature img {
    width: 112px;
    height: 126px;
  }

  .seo_hub_feature h2 {
    font-size: 20px;
  }

  .seo_hub_feature p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.65;
  }

  .seo_text_links {
    padding: 4px 16px 12px;
  }

  .seo_text_links a {
    grid-template-columns: 70px minmax(0, 1fr) 14px;
    gap: 8px;
    padding: 13px 0;
    font-size: 13px;
  }
}

/* CMS navigation and article content */
.nav_item {
  position: relative;
}

.nav_item > a {
  display: block;
}

.nav_arrow {
  display: inline-block;
  margin-left: 5px;
  color: var(--primary);
  font-size: 12px;
  transform: translateY(-1px);
}

.nav_dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 10;
  display: none;
  min-width: 172px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: var(--shadow_soft);
  transform: translateX(-50%);
}

.nav_item:hover .nav_dropdown,
.nav_item:focus-within .nav_dropdown {
  display: block;
}

.nav_dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 13px;
}

.nav_dropdown a:hover,
.nav_dropdown a.is_active {
  color: var(--primary_dark);
  background: var(--bg_soft);
}

.nav_dropdown a::after {
  display: none;
}

.footer_policy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer_policy a:hover {
  color: #fff;
}

.text_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary_dark);
  font-size: 13px;
  font-weight: 700;
}

.article_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--primary_dark);
  font-size: 12px;
}

.article_meta span + span {
  color: var(--muted);
}

.article_cover {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 auto 28px;
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  background: #f7f3ef;
  display: block;
}

.post_content h2,
.post_content h3 {
  color: var(--text);
  line-height: 1.45;
}

.post_content h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.post_content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.post_content p,
.post_content li {
  color: var(--muted);
  font-size: 15px;
}

.post_content ul,
.post_content ol {
  padding-left: 22px;
}

/* Official lawyer and case markup keeps its source headings and paragraphs. */
.post_content .ntm_rx,
.post_content .cs3editor {
  width: 100%;
}

.post_content .ntm_ritem,
.post_content .cs3editor dl {
  margin: 0 0 30px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line_soft);
}

.post_content .ntm_ritem dt,
.post_content .cs3editor dt {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.post_content .ntm_ritem dd,
.post_content .cs3editor dd {
  margin: 0;
}

.post_content .ntm_ritem p,
.post_content .cs3editor p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.post_content .ntm_ritem p:last-child,
.post_content .cs3editor p:last-child {
  margin-bottom: 0;
}

.post_content .ntm_ritem ul,
.post_content .cs3editor ul {
  margin: 0;
  padding-left: 22px;
}

.post_content .ntm_ritem li,
.post_content .cs3editor li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.post_content .ntm_ritem strong,
.post_content .cs3editor strong {
  color: var(--text);
}

.article_nav {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line_soft);
  color: var(--muted);
  font-size: 13px;
}

.article_nav a,
.side_links a {
  color: var(--primary_dark);
}

.side_links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side_links li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line_soft);
  font-size: 13px;
  line-height: 1.6;
}

.side_heading {
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line_soft);
}

.side_lawyers {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.side_lawyers a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--primary_dark);
  font-size: 13px;
}

.side_lawyers img {
  width: 54px;
  height: 66px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
}

.map_grid,
.map_street {
  position: absolute;
  pointer-events: none;
}

.map_grid {
  inset: 0;
  opacity: 0.82;
  background:
    linear-gradient(34deg, transparent 0 49%, rgba(223, 211, 198, 0.95) 49.5% 50.5%, transparent 51%),
    linear-gradient(-22deg, transparent 0 49%, rgba(231, 220, 207, 0.92) 49.5% 50.5%, transparent 51%),
    linear-gradient(90deg, rgba(214, 200, 184, 0.58) 1px, transparent 1px),
    linear-gradient(0deg, rgba(214, 200, 184, 0.58) 1px, transparent 1px),
    #f7f3ee;
  background-size: 210px 180px, 250px 220px, 46px 46px, 46px 46px, auto;
}

.map_street {
  z-index: 1;
  display: block;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #e7b36c;
  box-shadow: 0 1px 0 rgba(176, 117, 45, 0.14);
  transform: rotate(-18deg);
}

.map_street_a {
  top: 19%;
  left: -5%;
  width: 72%;
}

.map_street_b {
  right: -7%;
  bottom: 23%;
  width: 78%;
  transform: rotate(22deg);
}

.map_pin {
  position: absolute;
  z-index: 3;
  left: 24%;
  top: 27%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(184, 107, 69, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map_pin i {
  font-size: 21px;
  transform: rotate(45deg);
}

.map_marker {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 6px;
  width: min(330px, calc(100% - 40px));
  padding: 20px 22px;
  text-align: center;
  border: 1px solid rgba(221, 204, 188, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(74, 52, 37, 0.12);
}

.map_marker strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.map_marker small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.map_marker em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--primary_dark);
  font-size: 12px;
  font-style: normal;
}

.map_card:hover .map_marker {
  border-color: rgba(184, 107, 69, 0.42);
  transform: translateY(-3px);
}

.map_card:hover .map_pin {
  box-shadow: 0 12px 28px rgba(184, 107, 69, 0.42);
}

@media (max-width: 760px) {
  .map_card {
    min-height: 310px;
  }

  .map_pin {
    left: 22%;
    top: 24%;
    width: 44px;
    height: 44px;
  }

  .map_marker {
    width: min(300px, calc(100% - 28px));
    padding: 16px 14px;
  }

  .map_marker strong {
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  .nav_item {
    width: 100%;
  }

  .nav_dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 4px 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav_item:hover .nav_dropdown,
  .nav_item:focus-within .nav_dropdown {
    display: block;
  }

  .nav_dropdown a {
    padding: 8px 0;
    border-bottom: 1px solid var(--line_soft);
    text-align: right;
  }
}
