/* ============================================
   HOME PAGE: HERO BANNER
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin-left: auto; margin-right: auto;
  padding-left: 16px; padding-right: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-badge span {
  padding: 4px 12px;
  border: 1px solid #fb923c;
  color: #fb923c;
  font-size: 12px;
  border-radius: 9999px;
  letter-spacing: 0.1em;
}
.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: 'Noto Serif SC', serif;
}
.hero-title span { color: #fb923c; }
.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 32px;
  max-width: 576px;
  line-height: 1.625;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-info-strip {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 12px 16px;
}
.hero-info-inner {
  max-width: 1280px;
  margin-left: auto; margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
}
.hero-info-inner i { color: #fb923c; margin-right: 4px; }

/* ============================================
   HOME: LAWYER CARD SECTION
   ============================================ */
.section-padding { padding: 64px 0; }
.lawyer-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.lawyer-portrait-wrap {
  display: flex;
  justify-content: center;
}
.lawyer-portrait-relative { position: relative; }
.lawyer-portrait-img {
  width: 280px; height: 373px;
  border-radius: 16px;
  overflow: hidden;
}
.lawyer-portrait-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.lawyer-license-badge {
  position: absolute;
  bottom: -24px; right: -16px;
  background-color: #f97316;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.lawyer-license-badge .label { font-size: 12px; opacity: 0.8; margin-bottom: 4px; }
.lawyer-license-badge .value { font-size: 14px; font-weight: 500; letter-spacing: 0.025em; }

.lawyer-info-title {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  font-family: 'Noto Serif SC', serif;
}
.lawyer-info-title span {
  color: #f97316;
  font-size: 20px;
  font-weight: 400;
  margin-left: 8px;
}
.lawyer-info-firm {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}
.lawyer-info-desc {
  color: #4b5563;
  line-height: 1.625;
  font-size: 14px;
  margin-bottom: 32px;
}
.lawyer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.lawyer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lawyer-info-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background-color: #fff7ed;
  border-radius: 8px;
  flex-shrink: 0;
}
.lawyer-info-icon i { color: #f97316; }
.lawyer-info-label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 2px;
}
.lawyer-info-value {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

/* ============================================
   HOME: SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid transparent;
  transition: all 0.3s;
  display: block;
}
.service-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: #ffedd5;
}
.service-card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background-color: #fff7ed;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: background-color 0.3s;
}
.service-card:hover .service-card-icon { background-color: #ffedd5; }
.service-card-icon i { color: #f97316; font-size: 18px; }
.service-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-family: 'Noto Sans SC', sans-serif;
}
.service-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ============================================
   HOME: PROCESS SECTION
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.process-card-wrap { position: relative; }
.process-connector {
  display: none;
  position: absolute;
  top: 32px;
  left: 100%;
  width: 100%;
  height: 1px;
  background-color: #ffedd5;
  z-index: 0;
  transform: translateX(-50%);
}
.process-card {
  position: relative;
  z-index: 10;
  background-color: #faf8f5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.process-num {
  font-size: 12px;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.process-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background-color: #f97316;
  border-radius: 12px;
  margin: 0 auto 16px;
}
.process-icon i { color: #ffffff; font-size: 20px; }
.process-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  font-family: 'Noto Sans SC', sans-serif;
}
.process-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}

/* ============================================
   HOME: ARTICLES SECTION
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.article-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
}
.article-card:hover { transform: translateY(-4px); }
.article-card-img {
  width: 100%; height: 192px;
  overflow: hidden;
}
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 16px; }
.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.article-card-tag {
  padding: 2px 8px;
  background-color: #fff7ed;
  color: #f97316;
  font-size: 12px;
  border-radius: 9999px;
}
.article-card-date { font-size: 12px; color: #9ca3af; }
.article-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s;
  font-family: 'Noto Sans SC', sans-serif;
}
.article-card:hover h3 { color: #f97316; }

/* ============================================
   HOME: CTA SECTION
   ============================================ */
.cta-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.cta-box img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: top;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 50%, transparent);
}
.cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
.cta-label {
  color: #fb923c;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: 'Noto Serif SC', serif;
}
.cta-title span { color: #fb923c; }
.cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 448px;
}

/* ============================================
   RESPONSIVE: md (768px+)
   ============================================ */
@media (min-width: 768px) {
  .section-padding { padding: 96px 0; }
  .lawyer-card-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .lawyer-portrait-wrap { justify-content: flex-end; }
  .lawyer-portrait-img { width: 360px; height: 480px; }
  .lawyer-license-badge { right: -32px; }
  .lawyer-info-title { font-size: 36px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: block; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box img { height: 360px; }
  .cta-content { padding-left: 64px; padding-right: 64px; }
  .cta-title { font-size: 36px; }
  .cta-desc { font-size: 16px; }
  .hero { height: 680px; }
  .hero-title { font-size: 60px; }
  .hero-subtitle { font-size: 18px; }
  .hero-desc { font-size: 16px; }
  .hero-info-inner { gap: 32px; font-size: 14px; }
  .hero-info-strip { padding-left: 32px; padding-right: 32px; }
  .hero-content { padding-left: 32px; padding-right: 32px; }
}

/* ============================================
   RESPONSIVE: lg (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .articles-grid { grid-template-columns: repeat(4, 1fr); }
}