/* CDF Law — Design System v1.0 */
/* Smart · Aggressive · Personal */


/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --black:   #0D0F14;
  --navy:    #0D1B3E;
  --gold:    #C9A84C;
  --gold-light: #E2C06A;
  --cream:   #F5F1E8;
  --white:   #FFFFFF;
  --gray:    #9A9A9A;
  --burgundy:#5C2A6B;
  --green:   #1E7B34;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inter', sans-serif;
  --font-stats:   'Bebas Neue', sans-serif;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ui); background: var(--cream); color: #222; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: var(--black);
  padding: 14px 60px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 54px; width: 300px;
  object-fit: contain; object-position: left center;
  display: block;
  filter: brightness(1.08);
  transition: opacity 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.9; }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex; align-items: center; gap: 20px;
}
.nav-phone {
  font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.05em;
}
.btn-nav {
  background: var(--gold); color: var(--black);
  padding: 10px 22px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,27,62,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 60px 80px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(52px, 6vw, 88px);
  line-height: 1.05; color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 28px; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.7); line-height: 1.6;
  max-width: 480px; margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; margin-bottom: 64px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 16px 36px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; display: inline-block;
  transition: all 0.25s; box-shadow: 0 0 0 rgba(201,168,76,0);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  padding: 16px 36px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-block;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-trust {
  display: flex; gap: 32px; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-val {
  font-family: var(--font-stats);
  font-size: 28px; color: var(--gold); letter-spacing: 0.05em;
}
.trust-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo-zone {
  position: absolute; inset: 0;
  background: #000;
  overflow: hidden;
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Blend the black background of the photo seamlessly */
  mix-blend-mode: normal;
}
/* Left-side fade so hero text flows naturally over the photo */
.hero-photo-zone::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,15,20,0.85) 0%,
    rgba(13,15,20,0.4) 30%,
    rgba(13,15,20,0.05) 60%,
    transparent 100%
  );
  pointer-events: none;
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none; z-index: 1;
}

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 56px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-stats);
  font-size: clamp(48px, 5vw, 72px); color: var(--gold);
  letter-spacing: 0.02em; line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.stat-sub {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ─── PRACTICE SPLIT ────────────────────────────────────────── */
.practice-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.practice-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 80px;
  min-height: 500px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.practice-panel:hover { transform: scale(1.01); }
.practice-panel-bg {
  position: absolute; inset: 0; z-index: 0;
}
.practice-panel-pi .practice-panel-bg {
  background:
    linear-gradient(180deg, rgba(13,27,62,0.5) 0%, rgba(13,15,20,0.9) 100%),
    linear-gradient(135deg, #0d1b3e 0%, #0a0c12 100%);
}
.practice-panel-ins .practice-panel-bg {
  background:
    linear-gradient(180deg, rgba(92,42,107,0.3) 0%, rgba(13,15,20,0.92) 100%),
    linear-gradient(135deg, #1a0d2e 0%, #0a0c12 100%);
}
.practice-panel-content { position: relative; z-index: 2; }
.practice-panel-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.practice-panel-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.practice-panel-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15; color: var(--white); margin-bottom: 20px;
}
.practice-panel-title em { font-style: italic; color: var(--gold); }
.practice-panel-body {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 380px; margin-bottom: 32px;
}
.practice-panel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  transition: gap 0.2s;
}
.practice-panel:hover .practice-panel-cta { gap: 16px; }
.practice-panel-cta::after { content: '→'; font-size: 16px; }
.practice-border { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.practice-panel:hover .practice-border { transform: scaleX(1); }

/* ─── PHILOSOPHY SECTION ────────────────────────────────────── */
.philosophy {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.philosophy-left {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.philosophy-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.philosophy-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.philosophy-quote {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.45; color: #1a1a1a;
  margin-bottom: 32px;
}
.philosophy-quote-mark {
  font-family: var(--font-display);
  font-size: 80px; line-height: 0.5; color: var(--gold);
  display: block; margin-bottom: 16px; opacity: 0.6;
}
.philosophy-attribution {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--navy); text-transform: uppercase;
}
.philosophy-credentials {
  display: flex; gap: 40px; margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1); padding-top: 32px;
}
.cred-item { display: flex; flex-direction: column; gap: 4px; }
.cred-val { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; }
.cred-label { font-size: 11px; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }
.philosophy-right {
  background: linear-gradient(135deg, #1c2435 0%, #0d0f14 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 480px;
}
.philosophy-photo-zone {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0;
}
.philosophy-photo-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 16px; color: rgba(201,168,76,0.3);
  text-align: center; padding: 40px;
}

/* ─── THREE PILLARS ─────────────────────────────────────────── */
.pillars {
  background: var(--navy); padding: 100px 80px;
}
.section-eyebrow {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(36px, 4vw, 56px);
  text-align: center; color: var(--white);
  margin-bottom: 72px; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.pillar {
  padding: 48px 52px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--font-stats);
  font-size: 64px; color: rgba(201,168,76,0.15);
  line-height: 1; margin-bottom: 8px;
}
.pillar-rule { width: 36px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 32px; color: var(--white);
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.pillar-body {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ─── RESULTS ───────────────────────────────────────────────── */
.results { background: var(--black); padding: 100px 80px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.result-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  padding: 48px 40px; transition: background 0.3s, transform 0.3s;
}
.result-card:hover { background: rgba(201,168,76,0.05); transform: translateY(-4px); }
.result-amount {
  font-family: var(--font-stats);
  font-size: clamp(40px, 4vw, 60px);
  color: var(--gold); letter-spacing: 0.02em;
  line-height: 1; margin-bottom: 16px;
}
.result-type {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 12px;
}
.result-desc {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65;
}
.results-cta { text-align: center; margin-top: 60px; }

/* ─── VIDEO ─────────────────────────────────────────────────── */
.video-section { background: var(--cream); padding: 100px 80px; }
.video-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.section-title-dark {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(36px, 4vw, 56px);
  color: #1a1a1a; line-height: 1.2; margin-bottom: 16px;
}
.section-title-dark em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 17px; color: #666; line-height: 1.7;
  margin-bottom: 48px;
}
.video-wrapper {
  aspect-ratio: 16/9;
  background: var(--black);
  position: relative; overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d1b3e 0%, #0d0f14 100%);
}
.play-btn {
  width: 72px; height: 72px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0 0 0 rgba(201,168,76,0);
}
.play-btn:hover {
  background: var(--gold);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.play-btn svg { margin-left: 4px; }
.video-caption {
  font-family: var(--font-display); font-style: italic;
  font-size: 20px; color: rgba(255,255,255,0.5);
}
.video-trust-row {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.vtrust {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444; font-weight: 500;
}
.vtrust-check {
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--black); font-weight: 700; flex-shrink: 0;
}

/* ─── REVIEWS ───────────────────────────────────────────────── */
.reviews-section { background: var(--navy); padding: 100px 80px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 36px; transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.65; margin-bottom: 24px;
}
.review-author { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.review-platform { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.reviews-badge {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 56px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.badge-rating { font-family: var(--font-stats); font-size: 64px; color: var(--gold); line-height: 1; }
.badge-info { display: flex; flex-direction: column; }
.badge-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; }
.badge-count { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ─── TDI PROMO ─────────────────────────────────────────────── */
.tdi-promo {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.tdi-left {
  background: var(--black);
  padding: 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.tdi-right {
  background: var(--navy);
  padding: 60px;
  display: flex; align-items: center; justify-content: center;
}
.tdi-mock {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 32px; border-radius: 2px;
}
.tdi-mock-header {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tdi-search {
  display: flex; gap: 0; margin-bottom: 24px;
}
.tdi-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-right: none; padding: 12px 16px; color: rgba(255,255,255,0.7);
  font-size: 13px; outline: none; font-family: var(--font-ui);
}
.tdi-btn {
  background: var(--gold); color: var(--black); border: none;
  padding: 12px 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap;
}
.tdi-result {
  background: rgba(255,255,255,0.03); padding: 20px;
  border-left: 3px solid #e74c3c;
}
.tdi-result-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tdi-result-rating {
  display: inline-block; padding: 4px 12px;
  background: rgba(231,76,60,0.2); color: #e74c3c;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.tdi-result-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tdi-stat { display: flex; flex-direction: column; gap: 3px; }
.tdi-stat-val { font-size: 18px; font-weight: 700; color: var(--gold); }
.tdi-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── BLOG ──────────────────────────────────────────────────── */
.blog-section { background: var(--cream); padding: 100px 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card {
  background: var(--white); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img-1 { background: linear-gradient(135deg, #0d1b3e 0%, #0a0c12 100%); }
.blog-card-img-2 { background: linear-gradient(135deg, #1a0d2e 0%, #0a0c12 100%); }
.blog-card-img-3 { background: linear-gradient(135deg, #0d2e1b 0%, #0a0c12 100%); }
.blog-card-img-label {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: rgba(255,255,255,0.2); text-align: center; padding: 20px;
}
.blog-card-body { padding: 28px; }
.blog-tag {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; margin-bottom: 14px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  color: #1a1a1a; line-height: 1.35; margin-bottom: 12px;
}
.blog-card-excerpt { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 20px; }
.blog-read-more {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 14px; }

/* ─── SERVICE AREA ──────────────────────────────────────────── */
.service-area { background: var(--white); padding: 80px; }
.service-area-inner { max-width: 1200px; margin: 0 auto; }
.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, #0d1b3e 0%, #0d0f14 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 48px 0; position: relative; overflow: hidden;
}
.map-placeholder::after {
  content: 'GOOGLE MAPS — DARK GOLD THEME';
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; color: rgba(201,168,76,0.3);
}
.cities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
}
.city-item {
  font-size: 14px; color: #555;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 8px;
}
.city-item::before { content: ''; width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer-top { background: var(--black); padding: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { }
.footer-logo-name {
  font-family: var(--font-ui); font-weight: 700; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.footer-logo-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--gold); margin-bottom: 24px;
}
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 16px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: all 0.2s; cursor: pointer;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-phone {
  font-family: var(--font-stats); font-size: 32px;
  color: var(--gold); letter-spacing: 0.03em; margin-bottom: 12px;
}
.footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.footer-bottom {
  background: #08090d; padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bar-text { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bar-links { display: flex; gap: 24px; }
.footer-bar-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bar-links a:hover { color: var(--gold); }

/* ─── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.announcement {
  background: var(--gold); padding: 12px 80px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.announcement-text {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black);
}
.announcement-cta {
  font-size: 12px; font-weight: 800; color: var(--black);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ─── SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); z-index: 9999;
  transition: width 0.1s;
}

/* ─── FADE-IN ANIMATIONS ────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links { gap: 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 40px 60px; }
  .hero-right { height: 50vh; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 48px 40px; gap: 40px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .practice-split { grid-template-columns: 1fr; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-right { min-height: 300px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .results-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .tdi-promo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .announcement { padding: 12px 32px; }
  .footer-top { padding: 60px 40px; }
  .footer-bottom { padding: 20px 40px; flex-direction: column; gap: 12px; text-align: center; }
  .blog-section, .results, .video-section, .reviews-section, .pillars, .philosophy-left, .tdi-left, .service-area { padding: 72px 40px; }
  .stats-bar { padding: 48px 40px; }
}
