/*
Theme Name: Kevin Tsai Lawyer
Theme URI: https://cailongqiu.com
Description: 蔡龙秋律师个人网站 - 中英双语专业律师网站
Author: Kevin Tsai
Version: 1.0
*/

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

:root {
  --navy:        #1a3a6b;
  --navy-dark:   #0f2445;
  --navy-deeper: #091a33;
  --gold:        #c9a84c;
  --gold-light:  #e5c97a;
  --white:       #ffffff;
  --light-bg:    #f4f6f9;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      #e2e8f0;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --transition:  0.28s ease;
  --container:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 88px 0; }
.bg-light { background: var(--light-bg); }
.bg-navy  { background: var(--navy-dark); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-header h2 {
  font-family: 'Playfair Display', 'Noto Serif SC', 'STSong', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.section-header p { font-size: 15px; color: var(--text-mid); max-width: 540px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.65); }

/* ===== TOP BAR ===== */
#topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  padding: 0 32px;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar-link { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.topbar-link:hover { color: var(--gold); }

.lang-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: border-color var(--transition), color var(--transition);
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.lang-toggle .active { color: var(--gold); font-weight: 700; }
.lang-sep { opacity: 0.4; }

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 68px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: 24px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif SC', 'STSong', serif;
  font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.logo-mark.small { width: 36px; height: 36px; font-size: 18px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-zh { font-family: 'Noto Serif SC', 'STSong', serif; font-size: 16px; font-weight: 700; color: var(--navy-dark); }
.logo-en { font-size: 10.5px; color: var(--text-light); letter-spacing: 0.5px; }

.nav-links { display: flex; list-style: none; gap: 0; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  padding: 8px 14px; border-radius: var(--radius);
  transition: color var(--transition); height: 68px;
}
.nav-links > li > a:hover { color: var(--navy); }
.nav-links > li.has-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.5; margin-left: 2px; }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px 0; list-style: none; z-index: 200;
}
.nav-links > li.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 13.5px; color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--navy); background: var(--light-bg); }
.dropdown li a::before { content: '— '; color: var(--gold); font-size: 11px; }

.btn-nav-cta {
  flex-shrink: 0; margin-left: 16px;
  background: var(--navy); color: var(--white);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 22px; border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-cta:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #091a33 0%, #1a3a6b 50%, #1e4a80 100%);
}
.hero-bg-gradient::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(9,26,51,0.85) 0%, rgba(9,26,51,0.5) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  margin: 0 auto; padding: 0 32px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.hero-heading {
  font-family: 'Playfair Display', 'Noto Serif SC', 'STSong', serif;
  font-size: clamp(42px, 7vw, 76px);
  color: var(--white); line-height: 1.15; margin-bottom: 20px; font-weight: 700;
}
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 40px; letter-spacing: 0.5px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--gold); color: #091a33;
  font-weight: 700; font-size: 15px; padding: 14px 36px; border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-hero-secondary {
  border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
  font-size: 15px; font-weight: 500; padding: 14px 36px; border-radius: 4px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-hero-secondary:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-dot {
  display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(12px);opacity:0.4} }

/* ===== STATS ===== */
#stats { padding: 0; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px,5vw,54px);
  color: var(--gold); line-height: 1; margin-bottom: 10px; font-weight: 700;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 1px; }

/* ===== ABOUT ===== */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--navy); box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.placeholder-char { font-family: 'Noto Serif SC', serif; font-size: 80px; color: rgba(201,168,76,0.3); }
.placeholder-hint { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; padding: 0 20px; }
.about-card {
  margin-top: 20px; background: var(--navy); border-radius: var(--radius-lg);
  padding: 20px 24px; display: flex; flex-direction: column; gap: 12px;
}
.about-card-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.85);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-card-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-card-label { color: var(--gold); font-weight: 600; font-size: 12px; letter-spacing: 0.5px; }
.about-text-col { padding-top: 8px; }
.about-text-col h2 { font-family: 'Playfair Display','Noto Serif SC',serif; font-size: 36px; color: var(--navy-dark); margin-bottom: 4px; }
.about-title-en { font-size: 14px; color: var(--gold); letter-spacing: 1px; margin-bottom: 20px; }
.divider-gold { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.about-text-col p { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.about-tags span {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: rgba(26,58,107,0.08); border: 1px solid rgba(26,58,107,0.2);
  padding: 5px 14px; border-radius: 20px; letter-spacing: 0.5px;
}
.btn-outline {
  display: inline-block; border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 14px; font-weight: 600; padding: 11px 28px; border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ===== PRACTICE ===== */
#practice { background: var(--light-bg); }
.practice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.practice-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.practice-img { position: relative; height: 180px; overflow: hidden; }
.practice-img-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.practice-icon-lg { font-size: 48px; }
.practice-body { padding: 24px 26px 28px; border-top: 3px solid var(--gold); }
.practice-body h3 { font-family: 'Playfair Display','Noto Serif SC',serif; font-size: 17px; color: var(--navy-dark); margin-bottom: 10px; }
.practice-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.card-link { font-size: 13px; font-weight: 700; color: var(--navy); transition: color var(--transition), letter-spacing var(--transition); }
.card-link:hover { color: var(--gold); letter-spacing: 1px; }

/* ===== CASES ===== */
#cases { background: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-img-wrap { position: relative; height: 160px; overflow: hidden; }
.case-img-bg { position: absolute; inset: 0; }
.case-bg-1 { background: linear-gradient(135deg,#1a3a6b 0%,#0f2445 100%); }
.case-bg-2 { background: linear-gradient(135deg,#0f2d54 0%,#091a33 100%); }
.case-bg-3 { background: linear-gradient(135deg,#162a4a 0%,#0f2445 100%); }
.case-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy-dark); background: var(--gold); padding: 4px 12px; border-radius: 3px;
}
.case-body { padding: 22px 24px 26px; }
.case-body h4 { font-family: 'Playfair Display','Noto Serif SC',serif; font-size: 16px; color: var(--navy-dark); margin-bottom: 10px; }
.case-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.case-result { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #16a34a; }
.result-dot { width: 8px; height: 8px; background: #16a34a; border-radius: 50%; flex-shrink: 0; }

/* ===== ARTICLES ===== */
#articles { background: var(--light-bg); }
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-img { position: relative; height: 180px; overflow: hidden; }
.article-thumb { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.article-img-bg { position: absolute; inset: 0; }
.art-bg-1 { background: linear-gradient(135deg,#1a3a6b 0%,#2a5298 100%); }
.art-bg-2 { background: linear-gradient(135deg,#0f2d54 0%,#1a3a6b 100%); }
.art-bg-3 { background: linear-gradient(135deg,#162a4a 0%,#0f2d54 100%); }
.article-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy-dark); background: var(--gold); padding: 3px 10px; border-radius: 3px;
}
.article-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.article-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; display: block; }
.article-body h3 { font-family: 'Playfair Display','Noto Serif SC',serif; font-size: 16px; color: var(--navy-dark); margin-bottom: 10px; line-height: 1.5; }
.article-body h3 a { color: inherit; transition: color var(--transition); }
.article-body h3 a:hover { color: var(--navy); }
.article-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; flex: 1; margin-bottom: 16px; }
.article-more { font-size: 13px; font-weight: 700; color: var(--navy); transition: color var(--transition); }
.article-more:hover { color: var(--gold); }
.articles-all-link { text-align: center; margin-top: 40px; }

/* ===== SINGLE POST ===== */
.post-header {
  background: var(--navy-dark); padding: 80px 0 60px;
  text-align: center;
}
.post-header .post-cat {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--navy-dark); background: var(--gold);
  padding: 4px 14px; border-radius: 3px; margin-bottom: 20px;
}
.post-header h1 {
  font-family: 'Playfair Display','Noto Serif SC',serif;
  font-size: clamp(26px,4vw,42px); color: var(--white); max-width: 800px;
  margin: 0 auto 20px; line-height: 1.3;
}
.post-meta { font-size: 13px; color: rgba(255,255,255,0.6); }
.post-content-wrap { max-width: 800px; margin: 0 auto; padding: 64px 32px; }
.post-content { font-size: 16px; line-height: 1.9; color: var(--text-mid); }
.post-content h2,.post-content h3 { font-family:'Playfair Display','Noto Serif SC',serif; color:var(--navy-dark); margin:32px 0 16px; }
.post-content p { margin-bottom: 20px; }
.post-content ul,.post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--gold); padding: 16px 24px;
  background: var(--light-bg); margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0;
}
.post-back { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-back a { font-size: 14px; font-weight: 600; color: var(--navy); }
.post-back a:hover { color: var(--gold); }

/* ===== ARCHIVE ===== */
.archive-header { background: var(--navy-dark); padding: 80px 0 60px; text-align: center; }
.archive-header h1 { font-family:'Playfair Display','Noto Serif SC',serif; font-size: clamp(28px,4vw,44px); color: var(--white); margin-bottom: 12px; }
.archive-header p { color: rgba(255,255,255,0.65); font-size: 15px; }
.archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.wp-pagenavi,.navigation.pagination {
  text-align: center; margin-top: 48px;
}
.wp-pagenavi a,.wp-pagenavi span,
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
  display: inline-block; padding: 8px 14px; margin: 0 3px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text-mid); transition: all var(--transition);
}
.wp-pagenavi a:hover,
.navigation.pagination .nav-links a:hover { border-color: var(--navy); color: var(--navy); }
.wp-pagenavi span.current,
.navigation.pagination .nav-links .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== CONTACT ===== */
#contact { background: var(--navy-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family:'Playfair Display','Noto Serif SC',serif; font-size: 22px; color: var(--white); margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon-box {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.contact-item span, .contact-item a { font-size: 14px; color: rgba(255,255,255,0.8); }
.contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px 44px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--text-mid); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,.form-group select,.form-group textarea,.wpcf7-form input,.wpcf7-form select,.wpcf7-form textarea {
  background: var(--light-bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; color: var(--text-dark); font-size: 14px; font-family: inherit;
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus,
.wpcf7-form input:focus,.wpcf7-form select:focus,.wpcf7-form textarea:focus {
  border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-group textarea,.wpcf7-form textarea { resize: vertical; min-height: 96px; }
.btn-submit,.wpcf7-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 15px; padding: 14px; border-radius: 4px;
  border: none; cursor: pointer; transition: background var(--transition), transform var(--transition);
  margin-bottom: 12px; letter-spacing: 0.5px;
}
.btn-submit:hover,.wpcf7-submit:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; }
.wpcf7-response-output { font-size: 13px; padding: 10px 16px !important; border-radius: var(--radius) !important; margin-top: 12px !important; }

/* ===== FOOTER ===== */
#footer { background: var(--navy-deeper); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-name-zh { font-family:'Noto Serif SC',serif; font-size: 16px; color: var(--white); font-weight: 700; }
.footer-name-en { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a,.footer-col span { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 300px 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .practice-grid,.cases-grid,.articles-grid,.archive-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-links { display:none; position:absolute; top:68px; left:0; right:0; background:var(--white); flex-direction:column; padding:12px 0 16px; border-bottom:1px solid var(--border); box-shadow:var(--shadow-md); gap:0; z-index:999; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { height:auto; padding:12px 24px; }
  .dropdown { position:static; box-shadow:none; border:none; padding:0 0 0 16px; }
  .nav-links > li.has-dropdown:hover .dropdown { display:none; }
  .nav-links > li.has-dropdown.open .dropdown { display:block; }
  .btn-nav-cta { display: none; }
  .nav-inner { position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 280px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  #topbar { display: none; }
}
@media (max-width: 560px) {
  .practice-grid,.cases-grid,.articles-grid,.archive-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}
