/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0D1B36;
  --navy-mid:   #172847;
  --navy-light: #1E3358;
  --gold:       #C9991A;
  --gold-light: #E2B340;
  --gold-pale:  rgba(201,153,26,0.11);
  --off-white:  #F6F4EF;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-mid:   #3D3D3D;
  --text-light: #6B7280;
  --border:     #E4E0D8;
  --radius-sm:  4px;
  --radius:     10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h4, h5, label { font-family: 'Inter', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.22s; border: none; white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(201,153,26,0.38);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,153,26,0.48); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,0.14); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-outline-gold { background: transparent; color: var(--gold-light); border: 2px solid rgba(201,153,26,0.7); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* ── Topbar ── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.65);
  font-size: 0.8rem; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar .available {
  background: rgba(201,153,26,0.14); border: 1px solid rgba(201,153,26,0.3);
  color: var(--gold-light); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.1em; padding: 3px 10px; border-radius: 100px;
}
.topbar a { color: var(--white); font-weight: 600; transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy); box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; max-width: 1160px; margin: 0 auto;
  height: 72px; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.nav-logo-img { height: 60px; width: auto; object-fit: contain; display: block; }
.nav-brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; }
.nav-brand-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.nav-brand-sub { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; flex: 1; justify-content: center; }
.nav-links a { color: rgba(255,255,255,0.72); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; transition: color 0.2s; }
.nav-phone svg { fill: var(--gold); width: 17px; height: 17px; }
.nav-phone:hover { color: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; }

/* ── Hero ── */
.hero {
  position: relative; background: var(--navy); overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(13,27,54,0.98) 45%, rgba(13,27,54,0.55) 100%),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80') center/cover no-repeat;
}
.hero-glow {
  position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 72px; align-items: center;
}
.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.14); border: 1px solid rgba(192,57,43,0.38);
  color: #E74C3C; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero-urgency .dot {
  width: 6px; height: 6px; background: #E74C3C; border-radius: 50%;
  animation: pulse-red 1.6s ease-in-out infinite;
}
@keyframes pulse-red { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  color: var(--white); margin-bottom: 20px; font-weight: 700;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 540px; margin-bottom: 14px; line-height: 1.8; }
.hero-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-weight: 700; font-size: 0.88rem; margin-bottom: 32px;
}
.hero-guarantee svg { width: 17px; height: 17px; fill: var(--gold); flex-shrink: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
}
.hero-trust-item .num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--gold-light); display: block; line-height: 1;
}
.hero-trust-item .lbl {
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.09em; margin-top: 5px; display: block;
}

/* Hero right — attorney photo card */
.hero-photo-card {
  position: relative;
}
.hero-photo-frame {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,153,26,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; position: relative;
}
.hero-photo-frame::before {
  content: ''; position: absolute; top: 0; left: 0;
  right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.hero-photo-frame svg { width: 80px; height: 80px; fill: rgba(201,153,26,0.2); }
.hero-photo-frame .ph-label {
  color: rgba(255,255,255,0.4); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.06em; text-align: center; padding: 0 20px;
}
.hero-photo-frame .ph-sub { color: rgba(255,255,255,0.22); font-size: 0.72rem; text-align: center; }
/* Gold corner accents */
.hero-photo-frame::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 50px; height: 50px;
  border-bottom: 2px solid rgba(201,153,26,0.5);
  border-right: 2px solid rgba(201,153,26,0.5);
  border-radius: 0 0 var(--radius) 0;
}
/* availability/result badge removed — simplified hero */

/* ── Pain bar ── */
/* Empathy bridge — immediately after credibility bar. Acknowledges the
   visitor's pain before pushing them to act. Empathy → trust → action. */
.pain-bar { background: var(--navy); padding: 32px 0; }
.pain-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pain-bar p { font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,0.85); max-width: 680px; line-height: 1.7; }
.pain-bar p span { color: var(--gold-light); font-weight: 700; }

/* ── Credibility Bar ── */
/* Single unified trust row. Placed directly under hero to catch the
   "can I trust this?" moment before the visitor scrolls. Four facts only —
   Hick's Law: more choices/stimuli = slower decisions. Four is the sweet spot. */
.cred-bar {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.cred-bar .container {
  display: flex; align-items: stretch;
  justify-content: center; flex-wrap: wrap;
}
.cred-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 40px; flex: 1; min-width: 200px;
}
.cred-item svg { width: 22px; height: 22px; fill: var(--gold); flex-shrink: 0; }
.cred-item strong {
  display: block; font-size: 0.86rem; font-weight: 700;
  color: var(--navy); margin-bottom: 2px;
}
.cred-item span { font-size: 0.75rem; color: var(--text-light); }
.cred-divider { width: 1px; background: var(--border); margin: 16px 0; align-self: stretch; }

/* ── Practice Areas ── */
.practice { padding: 120px 0; background: var(--white); }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 14px; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.75; }

.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.28s; background: var(--white);
  border: 1px solid var(--border);
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold); }
.pcard-top { background: var(--navy); padding: 32px 28px 26px; position: relative; overflow: hidden; }
.pcard-top::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pcard-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale); border: 1px solid rgba(201,153,26,0.22);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pcard-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.pcard-top h3 { color: var(--white); font-size: 1.25rem; }
.pcard-pain { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 7px; font-style: italic; }
.pcard-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.pcard-body p { color: var(--text-mid); margin-bottom: 18px; font-size: 0.93rem; line-height: 1.7; }
.pcard-list { list-style: none; margin-bottom: 22px; flex: 1; }
.pcard-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 0.88rem;
}
.pcard-list li:last-child { border-bottom: none; }
.pcard-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pcard-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: 0.83rem; letter-spacing: 0.06em; text-transform: uppercase; transition: gap 0.2s; }
.pcard-cta:hover { gap: 10px; }

/* ── Process ── */
.process { padding: 120px 0; background: var(--off-white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(100%/6); right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
}
.process-step { text-align: center; padding: 0 32px; position: relative; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,153,26,0.08);
}
.process-step h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ── Why Us ── */
.why { padding: 120px 0; background: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-label { color: var(--gold-light); }
.why-text h2 { font-size: clamp(2rem, 3.5vw, 2.7rem); color: var(--white); margin-bottom: 16px; }
.why-text > p { color: rgba(255,255,255,0.62); margin-bottom: 36px; font-size: 1rem; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid rgba(201,153,26,0.22);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.why-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.why-item h4 { color: var(--white); font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.6; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: background 0.2s;
}
.why-stat:hover { background: rgba(255,255,255,0.07); }
.why-stat .big {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--gold-light); display: block; line-height: 1; margin-bottom: 8px;
}
.why-stat p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ── About / Attorney ── */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 460px 1fr; gap: 72px; align-items: start; }

.about-photo { position: relative; }
.photo-box {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy-light), var(--navy));
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  border: 2px dashed rgba(201,153,26,0.3); position: relative; overflow: hidden;
}
.photo-box svg { width: 80px; height: 80px; fill: rgba(201,153,26,0.2); }
.photo-box .photo-label { color: rgba(255,255,255,0.45); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-align: center; padding: 0 24px; }
.photo-box .photo-sub { color: rgba(255,255,255,0.22); font-size: 0.72rem; text-align: center; padding: 0 24px; }
.photo-box::before { content: ''; position: absolute; top: 0; left: 0; width: 56px; height: 56px; border-top: 2px solid rgba(201,153,26,0.5); border-left: 2px solid rgba(201,153,26,0.5); border-radius: var(--radius) 0 0 0; }
.photo-box::after { content: ''; position: absolute; bottom: 0; right: 0; width: 56px; height: 56px; border-bottom: 2px solid rgba(201,153,26,0.5); border-right: 2px solid rgba(201,153,26,0.5); border-radius: 0 0 var(--radius) 0; }
.credentials-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--white);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.credentials-badge strong { display: block; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.credentials-badge span { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

.about-content { padding-top: 8px; }
.about-content h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 18px; }
.about-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.credentials-list { list-style: none; margin: 22px 0 30px; }
.credentials-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text);
}
.credentials-list li svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; }

/* ── Results ── */
.results { padding: 120px 0; background: var(--navy); overflow: hidden; position: relative; }
.results::before {
  content: ''; position: absolute; left: -200px; top: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,153,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.results .section-header h2 { color: var(--white); }
.results .section-header p { color: rgba(255,255,255,0.55); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden; transition: all 0.25s;
}
.result-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.result-amount {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--gold-light); display: block; margin-bottom: 6px; line-height: 1;
}
.result-type {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 12px;
}
.result-desc { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.65; }

/* ── Testimonials ── */
.testimonials { padding: 120px 0; background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px; position: relative;
  transition: box-shadow 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-card::before {
  content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem;
  color: var(--gold); opacity: 0.15; position: absolute; top: 0; left: 20px; line-height: 1;
}
.stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card blockquote { color: var(--text-mid); font-style: italic; font-size: 0.92rem; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.86rem; color: var(--navy); }
.testi-author span { font-size: 0.74rem; color: var(--text-light); }

/* ── FAQ ── */
.faq { padding: 120px 0; background: var(--navy); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 52px; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; color: var(--white);
  font-weight: 600; font-size: 0.92rem; gap: 12px; transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid rgba(201,153,26,0.45); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; line-height: 1; transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 24px 20px;
  color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }

/* ── Contact ── */
.contact { padding: 120px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-left h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 14px; }
.contact-left > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.98rem; line-height: 1.78; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--off-white); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.cd-icon svg { width: 17px; height: 17px; fill: var(--navy); }
.cd-item strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.cd-item a, .cd-item span { color: var(--navy); font-weight: 600; font-size: 0.93rem; }
.cd-item a:hover { color: var(--gold); }
.no-fee-box {
  background: var(--gold-pale); border: 1px solid rgba(201,153,26,0.25);
  border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
  padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start;
}
.no-fee-box svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.no-fee-box p { font-size: 0.86rem; color: var(--text); line-height: 1.65; }
.no-fee-box strong { color: var(--navy); }

/* Form */
.contact-form-wrap { background: var(--navy); border-radius: var(--radius); padding: 44px 40px; box-shadow: var(--shadow-lg); }
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.contact-form-wrap > p { color: rgba(255,255,255,0.5); font-size: 0.86rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 13px 15px; font-size: 0.93rem;
  font-family: inherit; color: var(--white); transition: all 0.2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { color: rgba(255,255,255,0.65); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-submit-wrap { margin-top: 6px; }
.form-submit-wrap .btn { width: 100%; font-size: 0.98rem; padding: 18px; }
.form-note { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; }
.form-note a { color: rgba(255,255,255,0.5); }

/* ── Footer ── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand .fb-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col h5 { color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.48); font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
footer hr { border: none; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 20px 0; font-size: 0.74rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating Mobile CTA ── */
.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--gold); color: var(--white);
  padding: 16px 24px; text-align: center;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  text-transform: uppercase;
}
.floating-cta svg { width: 18px; height: 18px; fill: var(--white); vertical-align: middle; margin-right: 8px; }

/* ── Placeholders ── */
.ph { color: rgba(201,153,26,0.75); font-style: italic; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 360px 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-card { display: none; }
  .practice-grid, .results-grid, .testi-grid { grid-template-columns: 1fr; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .about-photo { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px 28px; gap: 16px; z-index: 300; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-main { grid-template-columns: 1fr; }
  .proof-strip .container { flex-direction: column; gap: 14px; }
  .proof-divider { display: none; }
  .cred-item { padding: 16px 24px; min-width: 100%; border-bottom: 1px solid var(--border); }
  .cred-divider { display: none; }
  .floating-cta { display: flex; align-items: center; justify-content: center; }
  body { padding-bottom: 60px; }
}
