/* ==========================================================================
   올바릇 공동법률사무소 - 정통 프리미엄 로펌 디자인 시스템
   클린 화이트 & 맑은 미드나이트 사파이어 & 샴페인 골드
   정제된 미니멀 벡터/이미지 UI (잔망스러운 이모지 전면 제거)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500;600;700;900&family=Pretendard:wght@300;400;500;600;700;800&display=swap');

:root {
  /* 맑고 깊은 프리미엄 미드나이트 사파이어 */
  --navy-950: #0A1628;
  --navy-900: #0F2342;
  --navy-850: #152E54;
  --navy-800: #1C3B6B;
  --navy-700: #254A85;
  --navy-600: #315FA8;
  --navy-100: #EEF4FC;
  --navy-50:  #F6F9FD;

  /* 은은하고 품격 있는 샴페인 골드 */
  --gold-600: #937135;
  --gold-500: #B8924B;
  --gold-400: #CCA866;
  --gold-300: #DFBF83;
  --gold-100: #FAF5EB;
  --gold-50:  #FCFBF7;

  /* 선명하고 깨끗한 화이트 & 슬레이트 그레이 */
  --white: #FFFFFF;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  /* 폰트 체계 */
  --font-serif: 'Noto Serif KR', 'Batang', serif;
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* 부드러운 엘리베이션 */
  --shadow-sm: 0 1px 3px rgba(15, 35, 66, 0.06);
  --shadow-md: 0 4px 20px -2px rgba(15, 35, 66, 0.08);
  --shadow-lg: 0 12px 36px -4px rgba(15, 35, 66, 0.12);
  --shadow-xl: 0 24px 52px -8px rgba(15, 35, 66, 0.18);

  --border-subtle: #E2E8F0;
  --border-gold: rgba(184, 146, 75, 0.35);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.7;
  letter-spacing: -0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.svg-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-white {
  background-color: var(--white);
}

.section-gray {
  background-color: var(--navy-50);
}

.section-navy {
  background: linear-gradient(135deg, #0A1628 0%, #102647 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(184, 146, 75, 0.25);
}

.section-navy .section-badge {
  color: var(--gold-300);
  background: rgba(204, 168, 102, 0.15);
  border-color: rgba(204, 168, 102, 0.35);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.35;
  margin-bottom: 16px;
  word-break: keep-all;
}

.section-navy .section-title {
  color: var(--white);
}

.section-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--slate-600);
  line-height: 1.75;
  word-break: keep-all;
}

.section-navy .section-desc {
  color: var(--slate-300);
}

/* ==========================================================================
   Header (GNB)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 12px rgba(15, 35, 66, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
  box-shadow: 0 3px 12px rgba(15, 35, 66, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo:hover .brand-emblem {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(184, 146, 75, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-main {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--gold-600);
  font-weight: 700;
  margin-top: 3.5px;
  padding-left: 4px;
  line-height: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--slate-300);
  background: var(--white);
}

.btn-header-tel:hover {
  border-color: var(--navy-900);
  background: var(--navy-50);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(15, 35, 66, 0.15);
}

.btn-header-cta:hover {
  background: var(--navy-800);
}

.btn-hamburger {
  width: 42px;
  height: 40px;
  border-radius: 6px;
  background: var(--navy-900) !important;
  color: #FFFFFF !important;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 35, 66, 0.15);
  flex-shrink: 0;
  padding: 0;
}

.btn-hamburger:hover {
  background: var(--navy-800) !important;
}

.btn-hamburger .hamburger-svg {
  display: block;
  width: 22px;
  height: 22px;
}

.btn-hamburger .hamburger-svg line {
  stroke: #FFFFFF !important;
  stroke-width: 2.2;
  stroke-linecap: round;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.btn-hamburger.active .hamburger-svg .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.btn-hamburger.active .hamburger-svg .line-2 {
  opacity: 0;
}

.btn-hamburger.active .hamburger-svg .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.btn-hamburger .bar {
  width: 20px;
  height: 2px;
  background-color: #FFFFFF !important;
  background: #FFFFFF !important;
  border-radius: 1px;
}

/* ==========================================================================
   Off-canvas Drawer Menu
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 2001;
  box-shadow: -8px 0 32px rgba(10, 22, 40, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.drawer-backdrop.open .drawer-panel {
  right: 0;
}

.drawer-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--navy-50);
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  cursor: pointer;
}

.drawer-close-btn:hover {
  background: var(--navy-900);
  color: var(--white);
}

.drawer-nav {
  padding: 16px 0;
  flex: 1;
}

.drawer-menu-list {
  list-style: none;
}

.drawer-menu-item {
  border-bottom: 1px solid var(--slate-100);
}

.drawer-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate-800);
  transition: all 0.2s;
}

.drawer-menu-link:hover, .drawer-menu-link:active {
  background: var(--navy-50);
  color: var(--navy-900);
  padding-left: 32px;
}

.drawer-footer {
  padding: 24px;
  background: var(--navy-50);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--slate-300);
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}

.drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--white);
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(15, 35, 66, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #102A4E 55%, #183C6C 100%);
  color: var(--white);
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(204, 168, 102, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(49, 95, 168, 0.2) 0%, transparent 60%),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-tag, .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold-300);
  background: rgba(204, 168, 102, 0.12);
  border: 1px solid rgba(204, 168, 102, 0.38);
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 22px;
}

.hero-title, .hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.8vw, 48px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 20px;
  word-break: keep-all;
  letter-spacing: -0.025em;
}

.hero-title .gold-text, .hero-title span, .hero-headline .gold-text, .hero-headline span {
  color: var(--gold-300);
  text-shadow: 0 0 24px rgba(223, 191, 131, 0.28);
}

.hero-subtitle, .hero-subtext {
  font-size: clamp(15px, 2vw, 17px);
  color: #E2E8F0;
  line-height: 1.75;
  margin-bottom: 36px;
  word-break: keep-all;
  font-weight: 400;
}

.hero-actions, .hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #0A1628;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(184, 146, 75, 0.35);
}

.btn-hero-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-300);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  color: var(--slate-300);
  margin-top: 4px;
  word-break: keep-all;
}

/* Quick Consultation Card */
.hero-quick-card {
  background: var(--white);
  color: var(--slate-800);
  border-radius: 14px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-card-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.quick-card-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.quick-card-desc {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 20px;
  line-height: 1.5;
  word-break: keep-all;
}

.quick-input-group {
  margin-bottom: 14px;
}

.quick-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.quick-input, .quick-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  font-size: 15px;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: all 0.2s;
  font-family: inherit;
}

.quick-input:focus, .quick-select:focus {
  outline: none;
  border-color: var(--navy-800);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 46, 84, 0.12);
}

.btn-quick-submit {
  width: 100%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 6px;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(15, 35, 66, 0.2);
}

.btn-quick-submit:hover {
  background: var(--navy-800);
}

/* ==========================================================================
   Situation Guide
   ========================================================================== */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.situation-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 30px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.situation-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-700);
  box-shadow: var(--shadow-md);
}

.situation-tag-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--navy-100);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.situation-headline {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.45;
  margin-bottom: 10px;
  word-break: keep-all;
}

.situation-summary {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.65;
  word-break: keep-all;
}

.situation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.lawyer-chip {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-600);
}

.action-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
}

/* ==========================================================================
   About Section - 생성된 고품격 3대 핵심 가치 비주얼 이미지 카드
   ========================================================================== */
.philosophy-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philo-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.philo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-700);
}

.philo-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--navy-950);
  position: relative;
}

.philo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.philo-card:hover .philo-img {
  transform: scale(1.05);
}

.philo-content-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.philo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 10px;
}

.philo-content {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.7;
  word-break: keep-all;
}

/* ==========================================================================
   Attorneys Section
   ========================================================================== */
.lawyers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lawyer-box {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.lawyer-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-700);
}

.lawyer-visual-header {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lawyer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lawyer-box:hover .lawyer-photo {
  transform: scale(1.03);
}

.lawyer-photo-overlay {
  display: none;
}

.lawyer-info-body {
  padding: 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lawyer-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.lawyer-sub-role {
  font-size: 14px;
  color: var(--navy-700);
  font-weight: 600;
  margin-left: 6px;
}

.lawyer-headline {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 16px;
  line-height: 1.45;
  word-break: keep-all;
}

.career-bullets {
  list-style: none;
  margin-bottom: 22px;
}

.career-bullets li {
  font-size: 13.5px;
  color: var(--slate-700);
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.55;
  word-break: keep-all;
}

.career-bullets li::before {
  content: '•';
  color: var(--gold-600);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 15px;
}

.btn-open-profile {
  width: 100%;
  padding: 11px;
  background: var(--slate-50);
  color: var(--navy-900);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.btn-open-profile:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* ==========================================================================
   Practice Areas (5대 법률업무 탭 - 정돈된 텍스트 탭)
   ========================================================================== */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 8px;
}

.tab-button.active, .tab-button:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(15, 35, 66, 0.2);
}

.practice-card-box {
  display: none;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.practice-card-box.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.practice-2col-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
}

.practice-main-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 14px;
}

.practice-p {
  font-size: 15px;
  color: var(--slate-700);
  line-height: 1.8;
  margin-bottom: 16px;
  word-break: keep-all;
}

.checklist-card {
  background: var(--navy-50);
  border: 1px solid rgba(15, 35, 66, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.checklist-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.checklist-ul {
  list-style: none;
}

.checklist-ul li {
  font-size: 13.5px;
  color: var(--slate-700);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  word-break: keep-all;
}

.checklist-ul li::before {
  content: '•';
  color: var(--gold-600);
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1;
}

/* ==========================================================================
   Process 3 Steps
   ========================================================================== */
.step-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.step-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 32px 24px;
}

.step-num-display {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-300);
  margin-bottom: 10px;
  opacity: 0.9;
}

.step-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-p {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.65;
  word-break: keep-all;
}

/* ==========================================================================
   Consultation Form
   ========================================================================== */
.form-panel-wrapper {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: clamp(24px, 5vw, 48px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.category-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.radio-choice-btn {
  background: var(--slate-50);
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.radio-choice-btn:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.radio-choice-btn input {
  display: none;
}

.radio-choice-btn.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.standard-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  font-size: 15px;
  color: var(--slate-800);
  background: var(--white);
  font-family: inherit;
}

.standard-input:focus {
  outline: none;
  border-color: var(--navy-900);
  box-shadow: 0 0 0 3px rgba(15, 35, 66, 0.1);
}

.btn-form-submit {
  width: 100%;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(15, 35, 66, 0.25);
}

.btn-form-submit:hover {
  background: var(--navy-800);
}

/* ==========================================================================
   Location & Map
   ========================================================================== */
.location-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.loc-card-body {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}

.loc-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.loc-icon-pill {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.loc-val {
  font-size: 14px;
  color: var(--slate-700);
  line-height: 1.6;
  word-break: keep-all;
}

.map-card-wrapper {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.map-placeholder-graphic {
  height: 200px;
  background: linear-gradient(135deg, #0A192F, #102A4E);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.map-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.btn-map-action {
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0A1628;
  color: #94A3B8;
  padding: 56px 0 100px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info-row {
  margin-bottom: 6px;
  line-height: 1.6;
  word-break: keep-all;
}

.footer-inner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.jjlab-badge {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

/* ==========================================================================
   Sticky Mobile Bottom Bar
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  z-index: 999;
  padding: 8px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
  height: 100%;
}

.btn-mobile-tel {
  background: var(--navy-100);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--slate-300);
}

.btn-mobile-consult {
  background: var(--navy-900);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal-sheet {
  background: var(--white);
  color: var(--slate-800);
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  padding: clamp(24px, 4vw, 36px);
}

.btn-sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-quick-card {
    max-width: 540px;
    margin: 0 auto;
  }
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid-3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .lawyers-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .practice-2col-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .location-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .btn-header-tel {
    display: none;
  }
  .btn-header-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  .situation-grid {
    grid-template-columns: 1fr;
  }
  .category-radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sticky-mobile-bar {
    display: block;
  }
  .site-footer {
    padding-bottom: 100px;
  }
  .map-btn-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }
  .category-radio-grid {
    grid-template-columns: 1fr;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .brand-logo {
    gap: 9px;
  }
  .brand-emblem {
    width: 36px;
    height: 36px;
  }
  .brand-main {
    font-size: 16.5px;
  }
  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding-left: 3px;
  }
}
