/* ===== THOMPSON & WALKER FAMILY LAW ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --sage: #4a90a4;
  --sage-mid: #5fa8bc;
  --sage-light: #7dc0d0;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --gold-pale: rgba(200,169,110,0.12);
  --gold-border: rgba(200,169,110,0.25);
  --white: #ffffff;
  --cream: #f9f6f0;
  --warm-gray: #f2ede6;
  --text: #1e2d3d;
  --text-mid: #3a4a5c;
  --text-light: #6b7a8d;
  --border: rgba(74,144,164,0.12);
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #eef7fa;
  color: var(--text-mid); border-bottom: 1px solid rgba(74,144,164,0.15);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
.top-bar a { color: var(--sage); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700;
  background: var(--sage); color: var(--white);
  border: 2px solid var(--sage);
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  letter-spacing: 0.3px; position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif; min-height: 48px;
}
.btn-primary::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer { 0%{left:-100%} 60%,100%{left:160%} }
.btn-primary:hover { background: var(--sage-mid); border-color: var(--sage-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(28,56,41,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600;
  background: transparent; color: var(--sage);
  border: 2px solid var(--sage);
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  font-family: 'Inter', sans-serif; min-height: 48px;
}
.btn-outline:hover { background: var(--sage); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700;
  background: var(--gold); color: var(--sage);
  border: 2px solid var(--gold);
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  font-family: 'Inter', sans-serif; min-height: 48px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,110,0.4); }

/* ===== NAV ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
  padding: 0 48px;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--sage); letter-spacing: -0.2px;
  line-height: 1.2; flex-shrink: 0;
  margin-right: auto;
}
.nav-logo span { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-family: 'Inter', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin-right: 24px; }
.nav-links > li > a {
  padding: 8px 16px; font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
  border-radius: 8px; transition: all 0.2s; display: block; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--sage); background: var(--gold-pale); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px;
  min-width: 220px; z-index: 100;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 0.875rem; color: var(--text-mid);
  border-radius: 8px; transition: all 0.15s; font-weight: 400;
}
.nav-links .dropdown-menu a:hover { background: var(--cream); color: var(--sage); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--sage); margin-right: 16px; white-space: nowrap; }
.nav-phone::before { content: '📞'; animation: shake 2.5s infinite; }
@keyframes shake {
  0%,72%,100% { transform: rotate(0deg); }
  74% { transform: rotate(-12deg); }
  76% { transform: rotate(12deg); }
  78% { transform: rotate(-8deg); }
  80% { transform: rotate(0deg); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--sage); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; flex-direction: column;
  padding: 100px 32px 40px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 16px 0; font-size: 1.15rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border-light); }
.mobile-nav a:hover { color: var(--sage); }
.mobile-nav .mobile-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-close { position: absolute; top: 24px; right: 24px; cursor: pointer; font-size: 1.5rem; color: var(--text-mid); padding: 8px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 88px; /* nav height + top bar */
}
.hero-left {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--sage);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.12;
  color: var(--text); letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--sage); font-style: italic; display: block; }
.hero-sub {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 40px;
  max-width: 440px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-light);
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-right { position: relative; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(249,246,240,0.1) 0%, rgba(30,45,61,0.3) 100%);
}
.hero-badge {
  position: absolute; bottom: 40px; left: 32px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.hero-badge-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--sage); line-height: 1; }
.hero-badge-label { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ===== MARQUEE ===== */
.trust-marquee { background: #eef7fa; border-top: 1px solid rgba(74,144,164,0.15); border-bottom: 1px solid rgba(74,144,164,0.15); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 28s linear infinite; width: max-content; gap: 0; }
.marquee-item { display: flex; align-items: center; gap: 20px; padding: 0 32px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); white-space: nowrap; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--sage);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.2; color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-mid); max-width: 580px; line-height: 1.75; margin-bottom: 56px;
}

/* ===== STATS ===== */
.stats-section { background: var(--white); padding: 0 0 100px; }
.stats-float {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: -60px;
  background: var(--white);
  position: relative; z-index: 10;
}
.stat-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border-light);
  text-align: center;
  transition: background 0.2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--cream); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--sage);
  line-height: 1; display: block;
  letter-spacing: -1px;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; font-weight: 500; line-height: 1.4; }
.stat-card.featured { background: var(--sage); }
.stat-card.featured .stat-num { color: var(--gold-light); }
.stat-card.featured .stat-label { color: rgba(255,255,255,0.7); }
.stat-card.featured:hover { background: var(--sage-mid); }

/* ===== PRACTICE AREAS ===== */
.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.practice-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all 0.3s; cursor: pointer; display: block; color: inherit;
  position: relative; overflow: hidden;
}
.practice-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon { display: flex; align-items: center; margin-bottom: 20px; }
.practice-icon svg { color: var(--sage); }
.practice-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.practice-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }
.practice-link { display: inline-flex; align-items: center; gap: 6px; color: var(--sage); font-size: 0.8rem; font-weight: 700; margin-top: 18px; }
.practice-link::after { content: '→'; transition: transform 0.2s; }
.practice-card:hover .practice-link::after { transform: translateX(4px); }

/* ===== ATTORNEYS ===== */
.attorneys-section { background: var(--cream); }
.attorneys-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.attorney-card {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start;
  background: var(--white); border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
  transition: all 0.3s;
}
.attorney-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.attorney-photo img {
  width: 200px; height: 240px; object-fit: cover; object-position: top;
  border-radius: var(--radius-lg);
}
.attorney-info h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--text);
  margin-bottom: 6px; font-family: 'Playfair Display', serif;
}
.attorney-rule { width: 32px; height: 2px; background: var(--gold); margin: 10px 0 12px; }
.attorney-role { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); font-weight: 700; }
.attorney-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin-top: 14px; }
.attorney-creds-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.attorney-creds-list li {
  font-size: 0.78rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.attorney-creds-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border);
}
.process-step { text-align: center; padding: 0 20px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  color: var(--sage); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Playfair Display', serif;
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-mark { font-family: 'Playfair Display', serif; font-size: 6rem; line-height: 0.5; color: var(--gold); opacity: 0.3; display: block; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; font-size: 0.875rem; color: var(--text); }
.testimonial-case { font-size: 0.75rem; color: var(--sage); font-weight: 600; margin-top: 2px; }
.stars { color: #f5a623; font-size: 0.85rem; margin-bottom: 12px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cta-section p { color: var(--text-mid); font-size: 1.05rem; max-width: 540px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border-light); transition: all 0.3s; display: block; color: inherit; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--sage); }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 8px 0 10px; line-height: 1.4; font-family: 'Playfair Display', serif; }
.blog-meta { font-size: 0.78rem; color: var(--text-light); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== SIDEBAR ===== */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.sidebar-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border-light); position: sticky; top: 100px;
}
.sidebar-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px; display: block;
}
.footer-logo span { display: block; font-size: 0.65rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream);
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 16px; }
.page-hero p { color: var(--text-mid); max-width: 580px; font-size: 1.1rem; line-height: 1.75; }
.page-hero .section-label { margin-bottom: 12px; }

/* ===== PROSE ===== */
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--text); }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--text); }
.prose p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 20px; }
.prose li { color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.quick-answer {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-bottom: 32px;
}
.quick-answer strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sage); font-weight: 700; margin-bottom: 8px; }
.quick-answer p { color: var(--text); font-size: 0.95rem; margin: 0; }
.law-citation { background: var(--cream); border-radius: var(--radius); padding: 16px 20px; font-size: 0.82rem; color: var(--text-light); margin: 32px 0; line-height: 1.6; }
.faq-item { border: 1.5px solid var(--border-light); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-weight: 600; cursor: pointer; font-size: 0.9rem; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 4px 20px 20px; font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
.faq-chevron { font-size: 0.7rem; color: var(--text-light); transition: transform 0.2s; }
details[open] .faq-chevron { transform: rotate(180deg); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; }
.contact-val { font-size: 0.95rem; color: var(--text); font-weight: 500; }

/* ===== BLOG POST ===== */
.blog-post-content { font-size: 0.95rem; }
.blog-featured-img { width: 100%; max-width: 780px; margin: 0 auto 40px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-author { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sage); color: var(--white); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.author-title { font-size: 0.78rem; color: var(--text-light); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESULTS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
  background: var(--white); border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.result-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--sage)); }
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.result-outcome { font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.result-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1; }
.result-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--sage); padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-bottom-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; color: var(--white); font-weight: 700; font-size: 0.95rem; padding: 10px;
  background: var(--gold); border-radius: 10px; color: var(--sage);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .container { padding: 0 32px; }
  .hero-left { padding: 60px 48px; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width:768px) {
  .container { padding: 0 20px; }
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 20px 40px; }
  .hero-right { height: 300px; }
  .hero h1 { font-size: 2.2rem; }
  .stats-float { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); margin-top: -30px; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stat-card:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .practice-grid { grid-template-columns: 1fr; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .attorney-card { grid-template-columns: 1fr; gap: 20px; }
  .attorney-photo img { width: 100%; height: 260px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 70px; }
  /* Timeline */
  .tl-phase { grid-template-columns: 56px 1fr; }
  .tl-num { width: 36px; height: 36px; font-size: 0.8rem; }
  .tl-content { padding: 0 0 28px 16px; }
  .tl-title { font-size: 1rem; }
  /* News section */
  .news-section { padding: 56px 0; }
  /* Compare table */
  .compare-table-wrap { border-radius: var(--radius-lg); }
  /* Content grid */
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Sidebar not sticky on mobile */
  .sidebar-card { position: static; }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  /* Fee calc */
  .fee-calc-card { border-radius: var(--radius-lg); }
  /* Section padding */
  .news-section { padding: 48px 0; }
  .fee-calc-section .section-sub { margin-bottom: 32px; }
  .compare-section .section-sub { margin-bottom: 32px; }
  .timeline-section .section-sub { margin-bottom: 32px; }
}
@media(max-width:480px) {
  .hero h1 { font-size: 1.9rem; }
  .stats-float { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .stat-card:nth-child(odd) { border-right: none; }
  .process-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .tl-phase { grid-template-columns: 48px 1fr; }
  .stats-float { grid-template-columns: 1fr; }
  .stat-card:nth-child(odd) { border-right: none; }
  .hero h1 { font-size: 1.8rem; }
  .compare-th-label { font-size: 0.9rem; }
  .news-pullquote { font-size: 1.1rem; }
}


/* ===== IN THE NEWS ===== */
.news-section {
  background: #1a2640;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.news-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,164,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.news-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  text-align: center;
}
.news-pub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.news-pub {
  text-align: center;
  padding: 0 36px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  letter-spacing: 0.3px;
}
.news-pub strong { display: block; color: rgba(255,255,255,0.75); font-size: 0.9rem; font-family: 'Playfair Display', serif; margin-top: 2px; }
.news-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.news-featured {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
  position: relative;
}
.news-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.4;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 12px;
}
.news-pullquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.news-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.news-source-pub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.news-source-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.news-source::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: block;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.news-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.news-card:hover::before { opacity: 1; }
.news-card-pub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin-bottom: 14px;
}
.news-card-excerpt {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.news-card-date { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.news-card-link { font-size: 0.78rem; font-weight: 700; color: var(--gold); opacity: 0.8; }
.news-card:hover .news-card-link { opacity: 1; }

@media(max-width:768px) {
  .news-pub-row { gap: 12px; }
  .news-pub { padding: 8px 16px; }
  .news-divider { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-pullquote { font-size: 1.3rem; }
  .news-quote-mark { font-size: 6rem; }
}


/* ===== FEE CALCULATOR ===== */
.fee-calc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.fee-calc-inputs { padding: 48px; }
.fee-input-group { margin-bottom: 36px; }
.fee-input-group:last-child { margin-bottom: 0; }
.fee-label {
  display: block; font-weight: 700; font-size: 0.9rem;
  color: var(--text); margin-bottom: 14px;
}
.fee-options { display: flex; gap: 10px; flex-wrap: wrap; }
.fee-btn {
  padding: 12px 20px; border-radius: var(--radius); border: 1.5px solid var(--border-light);
  background: var(--white); color: var(--text-mid); cursor: pointer;
  font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
  font-family: 'Inter', sans-serif; text-align: left;
}
.fee-btn .fee-btn-title { display: block; font-weight: 700; font-size: 0.875rem; color: var(--text); }
.fee-btn .fee-btn-sub { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.fee-btn:hover { border-color: var(--sage); color: var(--sage); }
.fee-btn.active { background: var(--sage); border-color: var(--sage); color: var(--white); }
.fee-btn.active .fee-btn-title { color: var(--white); }
.fee-btn.active .fee-btn-sub { color: rgba(255,255,255,0.7); }
.fee-calc-result {
  background: var(--text);
  padding: 40px 48px;
  transition: all 0.4s;
}
.fee-result-row {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 24px;
}
.fee-result-item { flex: 1; text-align: center; }
.fee-result-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 8px; }
.fee-result-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: var(--gold-light);
  transition: all 0.3s;
}
.fee-result-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; margin: 0 32px; }
.fee-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 20px; }
.fee-result-inner { display: flex; flex-direction: column; align-items: center; }
@media(max-width:768px) {
  .fee-calc-inputs { padding: 28px 20px; }
  .fee-calc-result { padding: 28px 20px; }
  .fee-result-row { flex-direction: column; gap: 24px; }
  .fee-result-divider { width: 40px; height: 1px; margin: 0; }
  .fee-options { flex-direction: column; }
  .fee-btn { width: 100%; }
}

/* ===== TIMELINE ===== */
.timeline-tabs {
  display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap;
}
.tl-tab {
  padding: 10px 24px; border-radius: 100px;
  border: 1.5px solid var(--border-light);
  background: var(--white); color: var(--text-mid);
  cursor: pointer; font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.tl-tab:hover { border-color: var(--sage); color: var(--sage); }
.tl-tab.active { background: var(--sage); border-color: var(--sage); color: var(--white); }
.timeline-track { display: flex; flex-direction: column; gap: 0; }
.timeline-track.hidden { display: none; }
.tl-phase {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0; cursor: pointer;
}
.tl-node {
  display: flex; flex-direction: column; align-items: center; padding-top: 4px;
}
.tl-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border-light);
  color: var(--text-light); font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.25s; z-index: 1;
  font-family: 'Playfair Display', serif;
}
.tl-phase.active .tl-num,
.tl-phase:hover .tl-num { background: var(--sage); border-color: var(--sage); color: var(--white); }
.tl-connector { width: 2px; flex: 1; background: var(--border-light); margin: 4px 0; min-height: 32px; }
.tl-content {
  padding: 0 0 36px 24px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.tl-phase:hover .tl-content,
.tl-phase.active .tl-content { background: transparent; }
.tl-duration { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--sage); font-weight: 700; margin-bottom: 6px; }
.tl-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.tl-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.tl-detail {
  font-size: 0.82rem; color: var(--text-light); line-height: 1.7;
  margin-top: 10px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0; border-left: 2px solid var(--gold); padding-left: 14px;
}
.tl-phase.active .tl-detail { max-height: 200px; opacity: 1; }

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; min-width: 640px;
}
.compare-table thead tr { background: var(--white); border-bottom: 2px solid var(--border-light); }
.compare-table th { padding: 28px 24px; text-align: left; vertical-align: top; }
.compare-metric { width: 32%; color: var(--text-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.compare-alone { width: 30%; }
.compare-firm { width: 38%; background: rgba(74,144,164,0.04); border-left: 2px solid var(--sage); }
.compare-th-badge {
  display: inline-block; background: var(--sage); color: var(--white);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 8px;
}
.compare-th-label { font-size: 1rem; font-weight: 800; color: var(--text); font-family: 'Playfair Display', serif; }
.compare-th-sub { font-size: 0.75rem; color: var(--text-light); margin-top: 3px; }
.compare-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background 0.15s; }
.compare-table tbody tr:hover { background: var(--cream); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td { padding: 20px 24px; vertical-align: top; font-size: 0.875rem; }
.compare-metric { color: var(--text); font-weight: 600; font-size: 0.875rem; }
.compare-alone-cell { color: var(--text-mid); }
.compare-firm-cell { background: rgba(74,144,164,0.03); border-left: 2px solid rgba(74,144,164,0.15); }
.compare-bad { display: block; font-weight: 700; color: #dc6b6b; font-size: 0.875rem; margin-bottom: 4px; }
.compare-good { display: block; font-weight: 700; color: var(--sage); font-size: 0.875rem; margin-bottom: 4px; }
.compare-note { font-size: 0.75rem; color: var(--text-light); line-height: 1.4; }

/* Results stat grid */
.results-stat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 64px; box-shadow: var(--shadow);
}
.attorneys-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
}
@media(max-width:768px) {
  .results-stat-grid { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); }
  .attorneys-stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .results-stat-grid > div { border-right: none !important; border-bottom: 1px solid var(--border-light); }
}
@media(max-width:480px) {
  .results-stat-grid { grid-template-columns: 1fr; }
}
