/* ═══════════════════════════════════════════════════
   THALER LAW — Production CSS
   Design System + Components + Responsive
   Brand: Charcoal / Gold / Warm Cream
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors (Thaler palette) */
  --charcoal: #1C1C1E;
  --charcoal-light: #2E2E30;
  --charcoal-dark: #0F0F10;
  --graphite: #3A3A3C;
  --light-gray: #6C6C70;
  --gold: #B89B5E;
  --gold-light: #D1B77A;
  --gold-dark: #8B7240;
  --cream: #F7F5F0;
  --linen: #F0EDE6;
  --ivory: #FBFAF6;
  --white: #FFFFFF;

  /* Legacy aliases to match existing components structure */
  --navy: var(--charcoal);
  --navy-light: var(--charcoal-light);
  --navy-dark: var(--charcoal-dark);
  --parchment: var(--linen);
  --slate: var(--graphite);
  --warm-gray: #A0937D;

  /* Semantic */
  --text-primary: var(--charcoal);
  --text-secondary: var(--graphite);
  --text-tertiary: var(--light-gray);
  --text-inverse: var(--white);
  --bg-primary: var(--cream);
  --bg-secondary: var(--ivory);
  --bg-tertiary: var(--linen);
  --bg-white: var(--white);
  --bg-dark: var(--charcoal);
  --bg-darkest: var(--charcoal-dark);
  --border-light: rgba(28, 28, 30, 0.08);
  --border-medium: rgba(28, 28, 30, 0.16);

  /* Typography */
  --font-serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px; --space-24: 96px;

  /* Layout */
  --max-width: 1280px;
  --content-width: 680px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(28, 28, 30, 0.06);
  --shadow-lg: 0 12px 40px rgba(28, 28, 30, 0.1);
  --shadow-xl: 0 20px 60px rgba(28, 28, 30, 0.14);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-sans); color: var(--text-primary); background: var(--bg-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── UTILITIES ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 48px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 28, 30, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(28, 28, 30, 0.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 24px; color: var(--charcoal); letter-spacing: 0.02em;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo svg { display: none; }
.nav-logo .logo-accent { color: var(--gold); margin-left: 0; }
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; }
.nav-link {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color var(--transition-fast); position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--charcoal); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--transition-base);
}
.nav-link:hover::after { width: 100%; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--charcoal);
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-cta {
  background: var(--charcoal); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius-md);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all var(--transition-fast);
}
.nav-cta:hover { background: var(--charcoal-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; width: 24px; height: 24px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--charcoal); transition: all 0.3s ease;
}

/* Mobile overlay */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 200; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  color: var(--charcoal); transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile-close svg { width: 24px; height: 24px; color: var(--charcoal); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600;
  letter-spacing: 0.03em; border-radius: var(--radius-md);
  transition: all var(--transition-base); border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-md { padding: 12px 24px; font-size: 13px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

.btn-primary {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-light); border-color: var(--charcoal-light);
  transform: translateY(-1px); box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent; color: var(--charcoal); border-color: rgba(28, 28, 30, 0.18);
}
.btn-secondary:hover {
  border-color: var(--charcoal); background: rgba(28, 28, 30, 0.03);
}

.btn-gold {
  background: var(--gold); color: var(--charcoal); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184, 155, 94, 0.25);
}

.btn-white {
  background: var(--white); color: var(--charcoal); border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream); border-color: var(--cream);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent; color: var(--charcoal); border-color: transparent;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: var(--warm-gray);
}
.btn-ghost:hover { text-decoration-color: var(--charcoal); }

/* ── SECTION SCAFFOLDING ── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold);
}
.section-header--center .section-eyebrow::before { display: none; }
.section-header--center .section-eyebrow {
  display: block;
}
.section-title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 44px; color: var(--charcoal); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.75; max-width: 620px;
}

.gold-accent {
  width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px;
}

/* ── HERO ── */
.hero {
  padding: 100px 0 90px;
  background: linear-gradient(168deg, var(--cream) 0%, var(--ivory) 50%, var(--linen) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 94, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -300px; left: -300px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 28, 30, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28, 28, 30, 0.05); border: 1px solid rgba(28, 28, 30, 0.1);
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.hero-badge span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal);
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 58px; line-height: 1.08; color: var(--charcoal);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal; position: relative;
  background: linear-gradient(180deg, transparent 60%, rgba(184, 155, 94, 0.22) 60%);
}
.hero p {
  font-size: 18px; line-height: 1.75; color: var(--text-secondary);
  margin-bottom: 40px; max-width: 540px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.hero-proof { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: 8px; }
.hero-proof-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(28, 28, 30, 0.06);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-proof-icon svg { width: 14px; height: 14px; color: var(--charcoal); }
.hero-proof-text { font-size: 13px; color: var(--text-secondary); }
.hero-proof-text strong { color: var(--text-primary); }

/* Hero Form Card */
.hero-card {
  background: var(--white); border-radius: 16px;
  padding: 44px 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(28, 28, 30, 0.06);
  position: relative; z-index: 2;
}
.hero-card-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-card h3 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 20px; line-height: 1.3;
}
.hero-float {
  position: absolute; top: -16px; right: -16px;
  background: var(--charcoal); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(28, 28, 30, 0.25); z-index: 3;
}
.hero-float-label {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero-float-value {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: var(--white);
}

/* ── FORMS ── */
.form-field {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-field:focus {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.15);
}
.form-field.error { border-color: #C53030; }
.form-field::placeholder { color: var(--text-tertiary); }
select.form-field {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236C6C70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
textarea.form-field { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--charcoal); color: var(--white);
  border: none; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  cursor: pointer; transition: background var(--transition-fast);
  margin-top: 4px;
}
.form-submit:hover { background: var(--charcoal-light); }
.form-note {
  text-align: center; font-size: 11px; color: var(--text-tertiary);
  margin-top: 12px; display: flex; align-items: center;
  justify-content: center; gap: 6px;
}
.form-note svg { width: 12px; height: 12px; flex-shrink: 0; }
.form-group { margin-bottom: 12px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--charcoal); }
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: 600px; margin: 0 auto;
  padding: 28px 0;
}
.trust-item {
  text-align: center; padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 36px; height: 36px; border-radius: 50%;
  margin: 0 auto 10px; background: rgba(184, 155, 94, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.trust-item-icon svg { width: 16px; height: 16px; color: var(--gold-light); }
.trust-num {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 26px; color: var(--white); margin-bottom: 4px;
}
.trust-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* ── PRACTICE AREA CARDS ── */
.practice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 20px;
}
.practice-grid-bottom {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 66.666%;
}
.practice-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 36px 28px;
  transition: all 0.3s ease; cursor: pointer; position: relative;
  overflow: hidden; display: block;
}
.practice-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.practice-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.practice-card-icon svg { width: 24px; height: 24px; color: var(--charcoal); }
.practice-card h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 22px; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3;
}
.practice-card p {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 20px;
}
.practice-card-link {
  font-size: 12.5px; font-weight: 600; color: var(--charcoal);
  letter-spacing: 0.03em; display: inline-flex;
  align-items: center; gap: 6px; transition: all 0.2s;
}
.practice-card:hover .practice-card-link { gap: 10px; color: var(--gold); }
.practice-card-link svg { width: 14px; height: 14px; }
.practice-card-new {
  position: absolute; top: 16px; right: 16px;
  background: rgba(184, 155, 94, 0.12); color: var(--gold-dark);
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PROCESS STEPS ── */
.process { background: var(--ivory); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.666% + 20px); right: calc(16.666% + 20px);
  height: 2px; background: var(--linen);
}
.step { text-align: center; position: relative; padding: 0 24px; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 30px; color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.08);
}
.step h3 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 24px; color: var(--charcoal); margin-bottom: 12px;
}
.step p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; max-width: 300px; margin: 0 auto;
}

/* ── DIFFERENTIATOR ── */
.diff-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start;
}
.diff-content h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 40px; color: var(--charcoal); margin-bottom: 20px; line-height: 1.15;
}
.diff-content p {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 16px;
}
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 20px 0 20px 24px; margin-top: 32px;
}
.quote-block p {
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: 22px; color: var(--charcoal); line-height: 1.5; margin: 0;
}

/* Comparison Table */
.comparison-wrapper {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  background: var(--charcoal); color: var(--white);
  padding: 16px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-align: left;
}
.comparison-table th:first-child { width: 35%; }
.comparison-table td {
  padding: 14px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table td:nth-child(1) { color: var(--text-primary); font-weight: 600; }
.comparison-table td:nth-child(2) { color: var(--text-tertiary); }
.comparison-table td:nth-child(3) { color: var(--charcoal); font-weight: 600; }
.diff-check { color: var(--gold); margin-right: 4px; }

/* ── SOCIAL PROOF ── */
.social-proof { background: var(--ivory); }
.sp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.sp-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px 28px; border: 1px solid var(--border-light);
  text-align: left; position: relative;
}
.sp-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.sp-card p {
  font-size: 14.5px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 16px; font-style: italic;
  font-family: var(--font-serif); font-size: 17px;
}
.sp-card-author { font-size: 13px; color: var(--text-primary); font-weight: 600; }
.sp-card-role { font-size: 12px; color: var(--text-tertiary); }

/* ── CTA ── */
.cta {
  padding: 100px 0; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 46, 48, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--content-width); margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.cta-inner .section-eyebrow { color: var(--gold-light); }
.cta-inner h2 {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 44px; color: var(--white); margin-bottom: 16px; line-height: 1.15;
}
.cta-inner p {
  font-size: 17px; color: rgba(255,255,255,0.68);
  line-height: 1.75; margin-bottom: 36px;
}
.cta-phone {
  margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-phone a {
  color: var(--gold-light);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── FOOTER ── */
.footer { background: var(--charcoal-dark); padding: 72px 0 40px; }
.footer-inner {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 24px; color: var(--white); letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer-brand .logo-accent { color: var(--gold); margin-left: 0; }
.footer-desc {
  font-size: 14px; color: rgba(255,255,255,0.48);
  line-height: 1.7; max-width: 320px;
}
.footer-heading {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 14px; height: 14px; color: var(--gold-light); flex-shrink: 0;
}
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── SCROLL ANIMATIONS ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .nav-links { gap: 18px; }
  .nav-link { font-size: 11.5px; }
  .nav-phone { font-size: 12px; }
  .nav-cta { padding: 10px 18px; font-size: 11px; }
  .nav-logo { font-size: 19px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 44px; }
  .diff-inner { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid-bottom { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .hero-float { display: none; }
  .section { padding: 64px 0; }
  .section-title { font-size: 32px; }
  .practice-grid, .practice-grid-bottom { grid-template-columns: 1fr; }
  .practice-grid-bottom { max-width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sp-cards { grid-template-columns: 1fr; }
  .cta-inner h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   GOD-TIER POLISH — Gold accents, micro-interactions,
   refined details, luxury finishes
   ════════════════════════════════════════════════════════ */

/* Selection — gold highlight */
::selection { background: rgba(184, 155, 94, 0.28); color: var(--charcoal); }
::-moz-selection { background: rgba(184, 155, 94, 0.28); color: var(--charcoal); }

/* Focus states — subtle gold ring */
a:focus-visible, button:focus-visible, .form-field:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Refined nav shadow on scroll */
.nav.scrolled {
  box-shadow: 0 1px 0 rgba(184, 155, 94, 0.12), 0 8px 32px rgba(28, 28, 30, 0.06);
  background: rgba(247, 245, 240, 0.98);
}

/* Elegant gold top rule on hover for practice cards */
.practice-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.practice-card:hover::after { opacity: 1; }

/* Gold serif drop-cap flourish for section titles */
.section-title {
  position: relative;
}

/* Gold numerals for trust bar */
.trust-num {
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-light) 180%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Refined hero h1 — gold underline-highlight */
.hero h1 em {
  background: linear-gradient(180deg, transparent 58%, rgba(184, 155, 94, 0.32) 58%, rgba(184, 155, 94, 0.32) 92%, transparent 92%);
}

/* Gold rule above section-title */
.section-header--center .section-title::before {
  content: ''; display: block; width: 40px; height: 1.5px;
  background: var(--gold); margin: 0 auto 18px;
}

/* Gold corner accent on hero card */
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-top-left-radius: 16px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 48px; height: 48px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom-right-radius: 16px;
  pointer-events: none;
  opacity: 0.6;
}

/* Quote block — upgraded */
.quote-block {
  position: relative;
  background: linear-gradient(90deg, rgba(184, 155, 94, 0.05) 0%, transparent 100%);
  border-left: 3px solid var(--gold);
  padding: 24px 0 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block::before {
  content: '"';
  position: absolute; top: 0; left: 12px;
  font-family: var(--font-serif); font-size: 72px;
  color: var(--gold); opacity: 0.2; line-height: 1;
}

/* Nav link — refined underline */
.nav-link::after {
  height: 2px;
  background: var(--gold);
  bottom: -6px;
}
.nav-link[style*="charcoal"]::after {
  width: 100%;
}

/* CTA section — gold frame accent */
.cta::before {
  background: radial-gradient(circle, rgba(184, 155, 94, 0.18) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
}
.cta-inner::before, .cta-inner::after {
  content: ''; position: absolute;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-inner::before { top: -24px; left: 50%; transform: translateX(-50%); }

/* Footer — gold accent line */
.footer {
  position: relative;
  border-top: 1px solid rgba(184, 155, 94, 0.15);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 80px; height: 2px; background: var(--gold);
  transform: translateX(-50%);
}

/* Process step numbers — gold ring on hover */
.step { transition: transform 0.3s ease; }
.step:hover { transform: translateY(-4px); }
.step-num {
  transition: all 0.3s ease;
  position: relative;
}
.step-num::before {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.3s ease;
}
.step:hover .step-num::before { border-color: var(--gold); }
.step:hover .step-num { color: var(--gold-dark); border-color: var(--gold); }

/* Comparison table — gold row highlight */
.comparison-table td:last-child { position: relative; }
.comparison-table td:last-child::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold); opacity: 0;
  transition: opacity 0.3s ease;
}
.comparison-table tr:hover td:last-child::before { opacity: 1; }
.comparison-table tr:hover td { background: rgba(184, 155, 94, 0.04) !important; }

/* Button — subtle gold shimmer on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }

/* Refined hero badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(184, 155, 94, 0.35);
  box-shadow: 0 2px 12px rgba(28, 28, 30, 0.04);
}

/* Social proof cards — gold top border on hover */
.sp-card {
  position: relative;
  transition: all 0.3s ease;
}
.sp-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  width: 0; height: 2px; background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.sp-card:hover::before { width: 60%; }
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Gold-accented section dividers */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto; max-width: 200px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.4;
}
.section-divider-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* Page hero gold flourish */
.page-hero h1::after {
  content: ''; display: block;
  width: 56px; height: 2px;
  background: var(--gold);
  margin-top: 24px;
}

/* Hover states for feature cards */
.practice-card {
  position: relative;
}

/* Gold accent for hero CTAs on hover */
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(28, 28, 30, 0.2), 0 0 0 1px var(--gold);
}

/* Refined trust bar */
.trust-item { transition: transform 0.3s ease; }
.trust-item:hover { transform: translateY(-2px); }
.trust-item-icon {
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 155, 94, 0.2);
}
.trust-item:hover .trust-item-icon {
  background: rgba(184, 155, 94, 0.2);
  border-color: var(--gold);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
