/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: #292524;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== FONTS ===== */
.font-serif {
  font-family: 'Noto Serif SC', 'Georgia', serif;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

.container-7xl {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container-7xl { padding-left: 32px; padding-right: 32px; }
}

.container-4xl {
  max-width: 896px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container-4xl { padding-left: 32px; padding-right: 32px; }
}

.text-center { text-align: center; }
.whitespace-nowrap { white-space: nowrap; }
.min-h-screen { min-height: 100vh; }
.bg-white { background-color: #ffffff; }
.bg-smoke { background-color: #F5F4F2; }
.bg-smoke-light { background-color: #F9F8F6; }
.bg-dark { background-color: #1c1917; }

/* ===== RESPONSIVE HELPERS ===== */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.navbar--home {
  background-color: transparent;
}

.navbar--home.scrolled {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.navbar--page {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 32px; }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: color 0.3s ease;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-family: 'Noto Serif SC', serif;
  transition: color 0.3s ease;
}

/* Navbar color states */
.navbar--home .logo-icon,
.navbar--home .logo-text {
  color: #ffffff;
}

.navbar--home .nav-link {
  color: rgba(255,255,255,0.8);
}

.navbar--home .nav-link:hover {
  color: #ffffff;
}

.navbar--home .nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.navbar--home .nav-cta {
  border-color: #ffffff;
  color: #ffffff;
}

.navbar--home .nav-cta:hover {
  background-color: #ffffff;
  color: #1c1917;
}

.navbar--home .hamburger {
  color: #ffffff;
}

/* Scrolled / page states */
.navbar--home.scrolled .logo-icon,
.navbar--home.scrolled .logo-text,
.navbar--page .logo-icon,
.navbar--page .logo-text {
  color: #292524;
}

.navbar--home.scrolled .nav-link,
.navbar--page .nav-link {
  color: #78716c;
}

.navbar--home.scrolled .nav-link:hover,
.navbar--page .nav-link:hover {
  color: #1c1917;
}

.navbar--home.scrolled .nav-link.active,
.navbar--page .nav-link.active {
  color: #1c1917;
  font-weight: 600;
}

.navbar--home.scrolled .nav-cta,
.navbar--page .nav-cta {
  border-color: #292524;
  color: #292524;
}

.navbar--home.scrolled .nav-cta:hover,
.navbar--page .nav-cta:hover {
  background-color: #292524;
  color: #ffffff;
}

.navbar--home.scrolled .hamburger,
.navbar--page .hamburger {
  color: #292524;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta {
  margin-left: 16px;
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: currentColor;
  transition: all 0.3s ease;
  width: 100%;
}

.hamburger.open span:first-child {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:last-child {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #f5f5f4;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  color: #44403c;
  border-bottom: 1px solid #f5f5f4;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.mobile-menu a:hover {
  background-color: #fafaf9;
}

.mobile-menu .cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: none;
  text-decoration: none;
}

/* ===== MOBILE BOTTOM NAV ===== */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-top: 1px solid #f5f5f4;
  height: 56px;
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  text-decoration: none;
  color: #a8a29e;
}

.bottom-nav a.active {
  color: #1c1917;
}

.bottom-nav a.phone-btn {
  background-color: #1c1917;
  color: #ffffff;
}

.bottom-nav i {
  font-size: 18px;
}

.mobile-spacer {
  height: 56px;
}

@media (min-width: 768px) {
  .mobile-spacer {
    display: none;
  }
}/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  height: 580px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-banner { height: 700px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 0 16px;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .hero-title { font-size: 60px; }
}

.hero-firm {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero-firm { font-size: 18px; }
}

.hero-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-btns { flex-direction: row; }
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background-color: #ffffff;
  color: #1c1917;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #f5f5f4;
}

.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Hero bottom info bar */
.hero-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 12px 16px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-info-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 12px 32px;
  }
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
}

.hero-info-item i {
  font-size: 14px;
}

.hero-info-item .label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hero-info-item .value {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}/* ===== HOME SECTIONS ===== */
.section-pad {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-pad { padding: 112px 0; }
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #a8a29e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .section-title { font-size: 48px; }
}

.section-desc {
  color: #a8a29e;
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #78716c;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  margin-top: 24px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .section-link { margin-top: 0; }
}

.section-link:hover {
  color: #1c1917;
}

.section-link i {
  font-size: 14px;
}

/* ===== LAWYER PROFILE ===== */
.profile-section {
  background-color: #F5F4F2;
}

.profile-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .profile-layout {
    flex-direction: row;
    gap: 80px;
  }
}

.profile-portrait-wrap {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .profile-portrait-wrap { width: 360px; }
}

.profile-portrait {
  position: relative;
  padding-bottom: 133%;
  overflow: hidden;
}

.profile-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-content {
  flex: 1;
  padding-top: 16px;
}

.profile-tag {
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}

.profile-name {
  font-size: 36px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .profile-name { font-size: 48px; }
}

.profile-firm {
  font-size: 20px;
  color: #a8a29e;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.profile-quote {
  border-left: 2px solid #d6d3d1;
  padding-left: 24px;
  margin-bottom: 40px;
}

.profile-quote p {
  font-size: 16px;
  color: #57534e;
  line-height: 2;
}

.profile-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.profile-info-item {
  background-color: rgba(255,255,255,0.6);
  padding: 12px 16px;
}

.profile-info-item .label {
  font-size: 12px;
  color: #a8a29e;
  margin-bottom: 4px;
}

.profile-info-item .value {
  font-size: 14px;
  color: #292524;
  font-weight: 500;
}

.profile-footer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-footer .dash {
  color: #a8a29e;
  font-size: 14px;
}

.profile-footer .name {
  color: #1c1917;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-left: 8px;
}

.profile-footer .link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 14px;
  color: #78716c;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  text-decoration: none;
}

.profile-footer .link:hover {
  color: #1c1917;
}

.profile-footer .link i {
  font-size: 14px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.service-card {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card .img-wrap {
  position: relative;
  padding-bottom: 66%;
  overflow: hidden;
}

.service-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.service-card:hover .img-wrap img {
  transform: scale(1.05);
}

.service-card .card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.service-card .card-info span {
  font-size: 14px;
  font-weight: 500;
  color: #292524;
  letter-spacing: 0.05em;
}

.service-card .card-info i {
  font-size: 14px;
  color: #78716c;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover .card-info i {
  opacity: 1;
}

.srv-bg-0 { background-color: #F0EDE8; }
.srv-bg-1 { background-color: #E8EDE8; }
.srv-bg-2 { background-color: #EDEDED; }
.srv-bg-3 { background-color: #EDE8E3; }

/* ===== PROCESS STEPS ===== */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.step-card {
  position: relative;
  background-color: #F5F4F2;
  padding: 24px;
  height: auto;
  text-align: center;
  flex: 1 1 16.5rem;
  max-width: 22rem;
  min-width: 0;
  width: 100%;
}

.step-card:last-child .step-connector {
  display: none;
}

.step-connector {
  display: none;
}

.step-card-inner {
  position: relative;
  z-index: 1;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.step-number {
  font-size: 30px;
  font-weight: 300;
  color: #e7e5e4;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif SC', serif;
}

.step-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e5e4;
  background-color: #ffffff;
  font-size: 16px;
  color: #78716c;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-desc {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  display: block;
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card .img-wrap {
  position: relative;
  padding-bottom: 62%;
  overflow: hidden;
}

.article-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.article-card:hover .img-wrap img {
  transform: scale(1.05);
}

.article-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

.article-card .card-body {
  padding: 20px;
}

.article-card .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-card .meta span {
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.05em;
}

.article-card .meta .dot {
  color: #e7e5e4;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-family: 'Noto Serif SC', serif;
}

.article-card:hover h3 {
  color: #57534e;
}

.article-card .summary {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.article-card .read-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.article-card:hover .read-more {
  color: #44403c;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 144px 0; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.4));
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-subtitle {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .cta-title { font-size: 48px; }
}

.cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 384px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-btns { flex-direction: row; }
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #1c1917;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-btn-phone:hover {
  background-color: #f5f5f4;
}

.cta-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-btn-link:hover {
  background-color: rgba(255,255,255,0.1);
}/* ===== PAGE BANNER ===== */
.page-banner {
  padding-top: 128px;
  padding-bottom: 64px;
  background-color: #F5F4F2;
}

.page-banner-label {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #a8a29e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .page-banner-title { font-size: 48px; }
}

.page-banner-desc {
  color: #78716c;
  margin-top: 12px;
  font-size: 14px;
  max-width: 512px;
}

/* ===== ABOUT PAGE ===== */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (min-width: 1024px) {
  .about-layout {
    flex-direction: row;
    gap: 80px;
  }
}

.about-sidebar {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .about-sidebar { width: 340px; }
}

.about-portrait {
  position: relative;
  padding-bottom: 133%;
  overflow: hidden;
  margin-bottom: 24px;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-info-card {
  background-color: #F5F4F2;
  padding: 24px;
}

.about-info-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a8a29e;
  margin-bottom: 20px;
}

.about-info-card li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.about-info-card li:last-child {
  margin-bottom: 0;
}

.about-info-card .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-info-card .icon i {
  font-size: 14px;
  color: #a8a29e;
}

.about-info-card .label {
  font-size: 12px;
  color: #a8a29e;
  margin-bottom: 2px;
}

.about-info-card .value {
  font-size: 14px;
  color: #44403c;
  word-break: break-all;
}

.about-main {
  flex: 1;
}

.about-tag {
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.about-title {
  font-size: 30px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .about-title { font-size: 36px; }
}

.about-subtitle {
  color: #a8a29e;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f5f5f4;
}

.about-section p {
  font-size: 14px;
  color: #57534e;
  line-height: 2;
}

.about-section ul {
  list-style: none;
  padding: 0;
}

.about-section li {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.about-section li .year {
  font-size: 12px;
  color: #a8a29e;
  white-space: nowrap;
  padding-top: 2px;
  width: 96px;
  flex-shrink: 0;
}

.about-section li .content {
  font-size: 14px;
  color: #44403c;
}

.about-section .list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #44403c;
  margin-bottom: 8px;
}

.about-section .bullet {
  width: 4px;
  height: 4px;
  background-color: #a8a29e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== SERVICES PAGE ===== */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.service-page-card {
  background-color: #F9F8F6;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-page-card:hover {
  transform: translateY(-4px);
}

.service-page-card .img-wrap {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
}

.service-page-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.service-page-card:hover .img-wrap img {
  transform: scale(1.05);
}

.service-page-card .card-body {
  padding: 24px;
}

.service-page-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-page-card .card-header .icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.service-page-card .card-header .icon-box i {
  font-size: 16px;
  color: #57534e;
}

.service-page-card .card-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.05em;
}

.service-page-card .card-desc {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-page-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #a8a29e;
  transition: color 0.2s ease;
  text-decoration: none;
}

.service-page-card .card-link:hover {
  color: #292524;
}

/* ===== CASES PAGE ===== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #F9F8F6;
  padding: 20px;
  transition: transform 0.3s ease;
}

@media (min-width: 640px) {
  .case-card { flex-direction: row; }
}

.case-card:hover {
  transform: translateY(-2px);
}

.case-card .img-wrap {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .case-card .img-wrap { width: 144px; }
}

.case-card .img-wrap img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 640px) {
  .case-card .img-wrap img {
    height: 100%;
    min-height: 112px;
  }
}

.case-card .card-body {
  flex: 1;
  min-width: 0;
}

.case-card .tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.case-card .tag-category {
  font-size: 12px;
  background-color: #e7e5e4;
  color: #57534e;
  padding: 2px 8px;
}

.case-card .tag-date {
  font-size: 12px;
  color: #a8a29e;
}

.case-card h2 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.case-card .summary {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card .extra-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.case-card .extra-tags span {
  font-size: 12px;
  color: #a8a29e;
  border: 1px solid #e7e5e4;
  padding: 2px 8px;
}/* ===== ARTICLES PAGE ===== */
.featured-article {
  display: block;
  margin-bottom: 32px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.featured-article:hover {
  transform: translateY(-2px);
}

.featured-article-inner {
  display: flex;
  flex-direction: column;
  background-color: #F9F8F6;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-article-inner { flex-direction: row; }
}

.featured-article .img-side {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-article .img-side { width: 50%; }
}

.featured-article .img-side .img-wrap {
  position: relative;
  height: 240px;
}

@media (min-width: 768px) {
  .featured-article .img-side .img-wrap {
    height: 100%;
    min-height: 240px;
  }
}

.featured-article .img-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.featured-article:hover .img-side img {
  transform: scale(1.05);
}

.featured-article .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.featured-article .content-side {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .featured-article .content-side {
    width: 50%;
    padding: 32px;
  }
}

.featured-article .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.featured-article .meta span {
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.05em;
}

.featured-article .meta .dot {
  color: #e7e5e4;
}

.featured-article h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .featured-article h2 { font-size: 24px; }
}

.featured-article:hover h2 {
  color: #57534e;
}

.featured-article .summary {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 24px;
}

.featured-article .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #a8a29e;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.featured-article:hover .read-more {
  color: #44403c;
}

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

@media (min-width: 768px) {
  .articles-list-grid { grid-template-columns: repeat(2, 1fr); }
}

.article-list-item {
  display: flex;
  gap: 16px;
  background-color: #F9F8F6;
  padding: 16px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.article-list-item:hover {
  transform: translateY(-2px);
}

.article-list-item .thumb {
  width: 96px;
  flex-shrink: 0;
}

.article-list-item .thumb img {
  width: 96px;
  height: 80px;
  object-fit: cover;
  object-position: top;
}

.article-list-item .info {
  flex: 1;
  min-width: 0;
}

.article-list-item .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.article-list-item .meta span {
  font-size: 12px;
  color: #a8a29e;
}

.article-list-item .meta .dot {
  color: #e7e5e4;
}

.article-list-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list-item:hover h3 {
  color: #57534e;
}

.article-list-item .summary {
  font-size: 12px;
  color: #78716c;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ARTICLE DETAIL ===== */
.article-header {
  padding-top: 96px;
  padding-bottom: 0;
  background-color: #F5F4F2;
}

@media (min-width: 768px) {
  .article-header { padding-top: 128px; }
}

.article-header-inner {
  padding: 48px 0;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.article-back-link:hover {
  color: #44403c;
}

.article-back-link i {
  font-size: 14px;
}

.article-meta-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.article-meta-tags .category {
  font-size: 12px;
  background-color: #1c1917;
  color: #ffffff;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

.article-meta-tags .date {
  font-size: 12px;
  color: #a8a29e;
}

.article-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .article-detail-title { font-size: 36px; }
}

.article-detail-summary {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
}

.article-hero-img {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .article-hero-img { padding: 0 32px; }
}

.article-hero-img .img-wrap {
  position: relative;
  padding-bottom: 50%;
  overflow: hidden;
}

.article-hero-img .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.article-body {
  padding: 48px 0 64px;
}

@media (min-width: 768px) {
  .article-body { padding: 64px 0; }
}

.article-prose p {
  font-size: 14px;
  color: #44403c;
  line-height: 2;
  margin-bottom: 20px;
}

.article-prose h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1c1917;
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: 'Noto Serif SC', serif;
}

.article-prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-prose ul li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: #44403c;
  font-size: 14px;
}

.article-prose strong {
  color: #1c1917;
  font-weight: 600;
}

.article-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f5f5f4;
}

.article-share-label {
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.share-btn:hover {
  opacity: 0.8;
}

.share-btn i {
  font-size: 14px;
}

.share-wechat { background-color: #07C160; }
.share-moments { background-color: #07C160; }
.share-weibo { background-color: #E6162D; }
.share-qq { background-color: #1E90FF; }
.share-qzone { background-color: #FFCE00; color: #1c1917; }
.share-douban { background-color: #2E8B57; }
.share-xhs { background-color: #FE2C55; }
.share-douyin { background-color: #1c1917; }
.share-toutiao { background-color: #E03838; }

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #F5F4F2;
  padding: 20px;
  margin-top: 32px;
}

.article-author img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: top;
}

.article-author .name {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.05em;
}

.article-author .title {
  font-size: 12px;
  color: #a8a29e;
  margin-top: 4px;
}

.related-articles {
  background-color: #F5F4F2;
  padding: 48px 0;
}

.related-articles h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

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

@media (min-width: 640px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.related-card {
  display: block;
  background-color: #ffffff;
  padding: 16px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-2px);
}

.related-card .img-wrap {
  position: relative;
  padding-bottom: 62%;
  overflow: hidden;
  margin-bottom: 12px;
}

.related-card .img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.related-card:hover .img-wrap img {
  transform: scale(1.05);
}

.related-card .meta {
  font-size: 12px;
  color: #a8a29e;
  display: block;
  margin-bottom: 4px;
}

.related-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #292524;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card:hover h3 {
  color: #57534e;
}/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-layout {
    flex-direction: row;
    gap: 64px;
  }
}

.contact-main {
  flex: 1;
}

.contact-side {
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-side { width: 384px; }
}

.contact-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

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

@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

.contact-item {
  background-color: #F9F8F6;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-item .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  flex-shrink: 0;
}

.contact-item .icon-box i {
  font-size: 16px;
  color: #57534e;
}

.contact-item .info {
  min-width: 0;
}

.contact-item .label {
  font-size: 12px;
  color: #a8a29e;
  margin-bottom: 4px;
}

.contact-item .value {
  font-size: 14px;
  font-weight: 500;
  color: #1c1917;
  word-break: break-all;
}

.contact-item a.value {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a.value:hover {
  color: #57534e;
}

.contact-item .note {
  font-size: 12px;
  color: #a8a29e;
  margin-top: 4px;
}

.work-hours-card {
  background-color: #F5F4F2;
  padding: 28px;
  margin-bottom: 24px;
}

.work-hours-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

.work-hours-card li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.work-hours-card li:last-child {
  margin-bottom: 0;
}

.work-hours-card .day {
  font-size: 12px;
  color: #a8a29e;
}

.work-hours-card .time {
  font-size: 14px;
  color: #292524;
}

.quick-action-card {
  background-color: #1c1917;
  padding: 28px;
  color: #ffffff;
}

.quick-action-card h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

.quick-action-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quick-action-card .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  color: #1c1917;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 12px;
}

.quick-action-card .btn:hover {
  background-color: #f5f5f4;
}

.quick-action-card .wechat {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}/* ===== FOOTER ===== */
.footer {
  background-color: #1c1917;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: 'Noto Serif SC', serif;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s ease;
  color: #ffffff;
  text-decoration: none;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.6);
}

.footer-social i {
  font-size: 16px;
}

.footer-heading {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer-contact li {
  margin-bottom: 16px;
}

.footer-contact .label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-contact .value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.footer-contact a.value {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a.value:hover {
  color: #ffffff;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 12px;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ===== CTA BAR ===== */
.cta-bar {
  background-color: #F5F4F2;
  padding: 64px 0;
}

.cta-bar h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .cta-bar h2 { font-size: 30px; }
}

.cta-bar p {
  font-size: 14px;
  color: #78716c;
  margin-bottom: 32px;
}

.cta-bar-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-bar-btns { flex-direction: row; }
}

.cta-bar .btn-dark {
  display: inline-block;
  padding: 12px 32px;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-bar .btn-dark:hover {
  background-color: #292524;
}

.cta-bar .btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #d6d3d1;
  color: #44403c;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.cta-bar .btn-outline:hover {
  border-color: #57534e;
  color: #1c1917;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.4);
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background-color: #ffffff;
  padding: 32px;
  max-width: 320px;
  width: 100%;
  margin: 0 16px;
  text-align: center;
}

.modal-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background-color: #07C160;
}

.modal-icon i {
  font-size: 24px;
  color: #ffffff;
}

.modal-title {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.modal-desc {
  font-size: 12px;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-url {
  background-color: #fafaf9;
  padding: 8px 12px;
  font-size: 12px;
  color: #78716c;
  word-break: break-all;
  margin-bottom: 16px;
}

.modal-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.modal-btn:hover {
  background-color: #292524;
}

.modal-btn-outline {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid #e7e5e4;
  color: #78716c;
  font-size: 14px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}

.modal-btn-outline:hover {
  border-color: #a8a29e;
}

/* Toast */
.toast {
  display: none;
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background-color: #1c1917;
  color: #ffffff;
  font-size: 12px;
  padding: 10px 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.toast.show {
  display: block;
}/* ===== PORT ADDITIONS (convert / SEO / list-no-image / form contexts) ===== */

:root {
  --stone: #1c1917;
  --stone-soft: #292524;
  --ink: #44403c;
  --muted: #78716c;
  --fog: #a8a29e;
  --line: #e7e5e4;
  --smoke: #F5F4F2;
  --smoke-light: #F9F8F6;
  --hint: #b45309;
}

body {
  padding-bottom: 88px;
}
@media (min-width: 768px) {
  body { padding-bottom: 72px; }
}

img { max-width: 100%; height: auto; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-firm {
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-family: 'Noto Sans SC', sans-serif;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.75;
}
.navbar--home .logo-firm { color: rgba(255,255,255,0.7); }
.navbar--home.scrolled .logo-firm,
.navbar--page .logo-firm { color: #a8a29e; }

.nav-phone {
  display: none;
  margin-left: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .nav-phone { display: inline-block; }
}
.navbar--home .nav-phone { color: rgba(255,255,255,0.85); }
.navbar--home.scrolled .nav-phone,
.navbar--page .nav-phone { color: #292524; }

.cta-bar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-bar-inner { padding: 0 32px; }
}

.hero-bg.hero-fallback {
  background: linear-gradient(160deg, #1c1917 0%, #44403c 55%, #292524 100%);
}
.hero-portrait-fallback {
  position: absolute;
  inset: 0;
  background: #e7e5e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  letter-spacing: 0.2em;
}

.service-card .card-deco {
  position: relative;
  padding-bottom: 42%;
  overflow: hidden;
}
.service-card .card-deco::after {
  content: "";
  position: absolute;
  inset: 18% 18% auto auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(28,25,23,0.12);
  background: rgba(255,255,255,0.45);
}
.service-card .card-lead {
  font-size: 12px;
  color: #78716c;
  line-height: 1.6;
  padding: 0 16px 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-page-card .card-deco {
  height: 8px;
}
.service-page-card .card-deco.srv-bg-0 { background-color: #F0EDE8; }
.service-page-card .card-deco.srv-bg-1 { background-color: #E8EDE8; }
.service-page-card .card-deco.srv-bg-2 { background-color: #EDEDED; }
.service-page-card .card-deco.srv-bg-3 { background-color: #EDE8E3; }

.service-card:nth-child(4n+1),
.service-page-card:nth-child(4n+1) .card-deco { background-color: #F0EDE8; }
.service-card:nth-child(4n+2),
.service-page-card:nth-child(4n+2) .card-deco { background-color: #E8EDE8; }
.service-card:nth-child(4n+3),
.service-page-card:nth-child(4n+3) .card-deco { background-color: #EDEDED; }
.service-card:nth-child(4n+4),
.service-page-card:nth-child(4n+4) .card-deco { background-color: #EDE8E3; }

.service-page-card h2 {
  font-family: 'Noto Serif SC', serif;
}

.article-card .card-body {
  border-top: 2px solid #1c1917;
}
.case-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .case-home-grid { grid-template-columns: repeat(3, 1fr); }
}
.case-text-card {
  display: block;
  background: #ffffff;
  padding: 24px;
  text-decoration: none;
  border-top: 2px solid #1c1917;
  transition: transform 0.3s ease;
}
.case-text-card:hover { transform: translateY(-4px); }
.case-text-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.case-text-card .tag-anon {
  font-size: 12px;
  background: #1c1917;
  color: #fff;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}
.case-text-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.4;
  margin-bottom: 8px;
  font-family: 'Noto Serif SC', serif;
}
.case-text-card p {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cases-grid .case-card {
  flex-direction: column;
}
@media (min-width: 640px) {
  .cases-grid .case-card { flex-direction: column; }
}
.cases-grid .case-card h2 {
  font-family: 'Noto Serif SC', serif;
}

.featured-article-inner.no-img {
  background: #F9F8F6;
}
.articles-list-grid .article-list-item {
  display: block;
}
.article-list-item .info { min-width: 0; }

.page-banner.has-photo {
  position: relative;
  overflow: hidden;
  background-color: #F5F4F2;
}
.page-banner.has-photo .page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-banner.has-photo .container,
.page-banner.has-photo .container-7xl {
  position: relative;
  z-index: 1;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #a8a29e;
  margin-bottom: 16px;
}
.crumbs a { color: #78716c; text-decoration: none; }
.crumbs a:hover { color: #1c1917; }
.crumbs .current { color: #44403c; }

.detail-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .detail-shell {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 56px;
    align-items: start;
  }
}
.detail-aside { min-width: 0; }
@media (min-width: 1024px) {
  .detail-aside { position: sticky; top: 88px; }
}

.alert-soft {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #F5F4F2;
  padding: 12px 16px;
  font-size: 13px;
  color: #57534e;
  margin-bottom: 24px;
}
.result-box {
  background: #F9F8F6;
  padding: 20px 24px;
  margin: 0 0 32px;
  border-left: 2px solid #1c1917;
}
.result-box strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #a8a29e;
  margin-bottom: 8px;
}
.result-box p {
  font-size: 14px;
  color: #44403c;
  line-height: 1.8;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f4;
}
.faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: #57534e;
  line-height: 1.8;
}

.related-section { padding: 48px 0 80px; }
.related-lawyer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #F5F4F2;
  padding: 20px;
  margin-bottom: 32px;
  text-decoration: none;
}
.related-lawyer img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: top;
}
.related-lawyer .name {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
  font-family: 'Noto Serif SC', serif;
}
.related-lawyer p { font-size: 12px; color: #78716c; margin-top: 4px; line-height: 1.6; }
.related-block { margin-bottom: 32px; }
.related-block h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1c1917;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f5f5f4;
}
.related-list a,
.related-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f4;
  font-size: 14px;
  color: #44403c;
  text-decoration: none;
}
.related-item:hover { color: #1c1917; }
.related-grid-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .related-grid-text { grid-template-columns: repeat(3, 1fr); }
}
.related-card.no-img .img-wrap { display: none; }

.honors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .honors-grid { grid-template-columns: repeat(3, 1fr); }
}
.honor-item {
  background: #F9F8F6;
  padding: 12px;
  text-align: center;
}
.honor-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}
.honor-item span { font-size: 12px; color: #44403c; }

.footer-practices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-practices a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.footer-practices a:hover { color: #ffffff; }
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
  max-width: 720px;
}
.footer-tech {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  margin-top: 8px;
}
.footer-tech a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.footer-tech a:hover { color: rgba(255,255,255,0.5); }
.footer-wechat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.footer-wechat:hover { border-color: rgba(255,255,255,0.55); }
.footer-qr {
  display: block;
  margin-top: 16px;
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: #fff;
}

.trust-bar {
  background: #F5F4F2;
  border-top: 1px solid #e7e5e4;
  padding: 28px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .trust-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 32px;
  }
}
.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trust-item i { font-size: 16px; color: #a8a29e; margin-top: 2px; }
.trust-item strong {
  display: block;
  font-size: 13px;
  color: #1c1917;
  font-weight: 600;
}
.trust-item span,
.trust-item a {
  font-size: 12px;
  color: #78716c;
}

.pc-convert {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: #1c1917;
  color: #fff;
  box-shadow: 0 -1px 8px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
  .pc-convert { display: block; }
}
.pc-convert-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pc-convert-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-family: 'Noto Serif SC', serif;
}
.pc-convert-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.pc-convert-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-convert-phone {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.pc-convert-phone:hover { color: #f5f5f4; }
.pc-convert .btn-dark {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: #1c1917;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.pc-convert .btn-dark:hover { background: #f5f5f4; }

.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #ffffff;
  border-top: 1px solid #f5f5f4;
  height: 64px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) {
  .mobile-bar { display: none; }
}
.mobile-bar a,
.mobile-bar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 11px;
  text-decoration: none;
  color: #a8a29e;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.mobile-bar i { font-size: 18px; }
.mobile-bar .mobile-cta {
  background: #1c1917;
  color: #ffffff;
}

#wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  padding: 16px;
}
#wechat-modal.is-open { display: flex; }
.wechat-modal-box {
  position: relative;
  background: #ffffff;
  padding: 36px 28px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
}
.wechat-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: #a8a29e;
}
.wechat-modal-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: #07C160;
  color: #fff;
  font-size: 24px;
}
.wechat-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1917;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.wechat-modal-desc {
  font-size: 13px;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 16px;
}
.wechat-qr {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
.wechat-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: #1c1917;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.wechat-id-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fafaf9;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.wechat-id-label { font-size: 12px; color: #a8a29e; }
.wechat-id-value { font-size: 14px; color: #1c1917; }
.wechat-id-row button {
  border: 1px solid #1c1917;
  background: #fff;
  color: #1c1917;
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.wechat-id-hint {
  font-size: 12px;
  color: #78716c;
  line-height: 1.6;
}
.wechat-id-hint strong {
  color: #b45309;
  font-weight: 700;
}
@media (min-width: 768px) {
  /* 仅在弹层有二维码时隐藏复制区，避免无码站点电脑端无法添加微信 */
  body:has(#wechat-modal img) .wechat-id-row,
  body:has(#wechat-modal img) .wechat-id-hint { display: none !important; }
}

.si-form h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.si-form .form-sub {
  font-size: 13px;
  color: #78716c;
  line-height: 1.6;
  margin-bottom: 20px;
}
.si-form .form-field { margin-bottom: 14px; }
.si-form label {
  display: block;
  font-size: 12px;
  color: #a8a29e;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.si-form input[type="text"],
.si-form input[type="tel"],
.si-form textarea {
  width: 100%;
  border: 1px solid #e7e5e4;
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  color: #292524;
  font-family: inherit;
  outline: none;
  border-radius: 0;
}
.si-form input:focus,
.si-form textarea:focus { border-color: #a8a29e; }
.si-form textarea { min-height: 96px; resize: vertical; }
.si-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.si-form .form-check label {
  margin: 0;
  letter-spacing: 0;
  color: #57534e;
  font-size: 13px;
  line-height: 1.5;
}
.si-form .form-check a { color: #1c1917; text-decoration: underline; }
.si-form .form-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #1c1917;
  color: #fff;
  border: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  cursor: pointer;
  margin-top: 8px;
}
.si-form .form-btn:hover { background: #292524; }
.si-form .form-disclaimer {
  font-size: 12px;
  color: #a8a29e;
  line-height: 1.6;
  margin-top: 12px;
}
.consult-error {
  background: #fef2f2;
  color: #991b1b;
  font-size: 13px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.form-band {
  background: #1c1917;
  padding: 72px 0;
  color: #fff;
}
@media (min-width: 768px) {
  .form-band { padding: 96px 0; }
}
.form-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .form-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.form-band-kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-band-intro h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .form-band-intro h2 { font-size: 40px; }
}
.form-band-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}
.form-band-meta p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.form-band-meta a { color: #fff; text-decoration: underline; }
.form-band-card {
  background: #fff;
  padding: 28px 24px;
  color: #292524;
}
@media (min-width: 768px) {
  .form-band-card { padding: 36px 32px; }
}
.form-band-card .si-form h3 { color: #1c1917; }

.form-sidebar {
  background: #F9F8F6;
  padding: 20px;
}
.form-sidebar .si-form h3 {
  font-size: 16px;
  padding-left: 10px;
  border-left: 2px solid #1c1917;
  margin-bottom: 6px;
}
.form-sidebar .form-sub { font-size: 12px; margin-bottom: 14px; }
.form-sidebar .form-field { margin-bottom: 10px; }
.form-sidebar .si-form input[type="text"],
.form-sidebar .si-form input[type="tel"],
.form-sidebar .si-form textarea {
  padding: 10px 12px;
  font-size: 13px;
  background: #fff;
}
.form-sidebar .si-form textarea { min-height: 72px; }
.form-sidebar .form-btn { padding: 12px; font-size: 13px; }

.form-embed {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #f5f5f4;
}
.form-embed .si-form h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #f5f5f4;
  margin-bottom: 16px;
  font-family: 'Noto Sans SC', sans-serif;
}
.form-embed .si-form input,
.form-embed .si-form textarea {
  background: #F9F8F6;
}

.form-contact {
  background: #F9F8F6;
  padding: 24px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .form-contact { padding: 28px; }
}
.form-contact .si-form h3 {
  font-size: 20px;
}

.form-consult-page {
  max-width: 720px;
  margin: 0 auto;
}
.form-consult-lead {
  text-align: center;
  font-size: 14px;
  color: #78716c;
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-consult-lead a {
  color: #1c1917;
  font-weight: 600;
  text-decoration: underline;
}
.form-consult-page .si-form {
  background: #fff;
  border: 1px solid #1c1917;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .form-consult-page .si-form { padding: 40px 36px; }
}
.form-consult-page .si-form h3 { font-size: 24px; }
.form-consult-page .si-form textarea { min-height: 120px; }
.form-consult-page .form-btn { padding: 16px; font-size: 15px; }

.pager,
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.pager a,
.pager span,
.pagination a,
.pagination span,
.pager li a,
.pager li span,
.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e7e5e4;
  font-size: 13px;
  color: #57534e;
  background: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.pager a:hover,
.pagination a:hover,
.pager li a:hover,
.pagination li a:hover {
  border-color: #1c1917;
  color: #1c1917;
}
.pager .active,
.pager .current,
.pagination .active,
.pagination .current,
.pager span.current,
.pagination span.current,
.pager li.active span,
.pagination li.active span {
  background: #1c1917;
  border-color: #1c1917;
  color: #fff;
}
.pager .disabled,
.pagination .disabled,
.pager li.disabled span,
.pagination li.disabled span {
  opacity: 0.4;
  pointer-events: none;
}
.pager ul,
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
}

.prose {
  font-size: 14px;
  color: #44403c;
  line-height: 2;
}
.prose h2,
.prose h3,
.prose h4 {
  font-family: 'Noto Serif SC', serif;
  color: #1c1917;
  margin: 28px 0 12px;
  font-weight: 700;
  line-height: 1.4;
}
.prose h2 { font-size: 18px; }
.prose h3 { font-size: 16px; }
.prose p { margin-bottom: 16px; }
.prose ul,
.prose ol {
  margin: 0 0 16px 1.25rem;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; line-height: 1.8; }
.prose a { color: #1c1917; text-decoration: underline; }
.prose img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}
.prose blockquote {
  border-left: 2px solid #d6d3d1;
  padding-left: 20px;
  color: #57534e;
  margin: 16px 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}
.prose th,
.prose td {
  border: 1px solid #e7e5e4;
  padding: 8px 10px;
  text-align: left;
}
.prose th { background: #F5F4F2; }

.page-section { padding: 64px 0 96px; }
.thanks-page,
.error-page {
  padding: 128px 16px 96px;
  text-align: center;
}
.thanks-icon,
.error-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1917;
  color: #fff;
  font-size: 28px;
}
.thanks-page h1,
.error-page h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  color: #1c1917;
  letter-spacing: 0.06em;
}
.thanks-page p,
.error-page p { color: #78716c; font-size: 14px; line-height: 1.7; }
.thanks-actions,
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}
.thanks-wechat {
  background: #F9F8F6;
  padding: 24px;
  margin: 24px auto;
  max-width: 320px;
}
.thanks-wechat img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.thanks-hours {
  margin-top: 32px;
  background: #F5F4F2;
  padding: 24px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.thanks-hours h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.off-hours-tip {
  margin-top: 12px;
  font-size: 13px;
  color: #b45309;
  line-height: 1.6;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1px solid #d6d3d1;
  color: #44403c;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #57534e; color: #1c1917; }
.error-practices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 16px;
}
.error-practices a {
  font-size: 13px;
  color: #57534e;
  border-bottom: 1px solid #e7e5e4;
  text-decoration: none;
}
.error-practices a:hover { color: #1c1917; }

.meta-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #F5F4F2;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-decoration: none;
}
.meta-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: top;
}
.meta-card strong {
  display: block;
  font-size: 14px;
  color: #1c1917;
  letter-spacing: 0.05em;
}
.meta-card span {
  display: block;
  font-size: 12px;
  color: #a8a29e;
  margin-top: 4px;
}

.article-detail-title { word-break: break-word; }

.banners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .banners-grid { grid-template-columns: repeat(2, 1fr); }
}
.banner-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: #1c1917;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.banner-card h2,
.banner-card a { position: relative; z-index: 1; }
.banner-card h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin-bottom: 12px;
}
.banner-card a {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  color: #1c1917;
  font-size: 13px;
  letter-spacing: 0.08em;
  width: max-content;
}

.contact-form-wrap { margin-top: 40px; }
.work-hours-card .time { word-break: break-word; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-menu .cta-btn { margin-top: 0; }

.hero-info-item a,
.hero-info-item button { color: inherit; }

.btn-stone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: #1c1917;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-stone:hover { background: #292524; color: #fff; }

.profile-portrait-fallback {
  position: absolute;
  inset: 0;
  background: #e7e5e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a29e;
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
}
