/* ===== Design tokens ===== */
:root {
  --navy: #12141c;
  --navy-deep: #0a0d12;
  --navy-footer: #0d0e13;
  --brass: #b89461;
  --brass-dim: rgba(184,148,97,0.35);
  --warm-white: #f5f2eb;
  --cream: #f7f5f0;
  --card-white: #fcfaf7;
  --red: #b8423d;
  --text-on-dark: #d9d9db;
  --text-on-dark-muted: #999aa1;
  --text-on-dark-dim: #737378;
  --text-body: #6b6b70;
  --text-muted: #808084;
  --text-faint: #8c8c91;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
  --radius: 4px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--card-white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--navy); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
.eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.eyebrow-brass { color: var(--brass); }
.sep { color: rgba(255,255,255,0.25); margin: 0 4px; }
.client-experience .sep, .footer-bottom .sep { color: rgba(0,0,0,0.15); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: opacity 0.15s ease, transform 0.15s ease; }
.btn:hover { opacity: 0.88; }
.btn:active { transform: translateY(1px); }
.btn-brass { background: var(--brass); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--warm-white); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid rgba(18,20,28,0.3); }
.btn-lg { padding: 15px 32px; font-size: 15.5px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.text-link, .text-link-brass { font-size: 14.5px; font-weight: 600; color: var(--navy); }
.text-link-brass { color: var(--brass); font-size: 14px; }
.microcopy { font-size: 13px; color: var(--text-muted); }
.microcopy-center { text-align: center; }
.demo-banner { background: var(--red); color: #fff; padding: 12px 40px; text-align: center; font-size: 13px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.demo-banner span { opacity: 0.92; }
.top-bar { background: #08090c; border-bottom: 1px solid rgba(184,148,97,0.25); }
.top-bar-inner { max-width: var(--container); margin: 0 auto; padding: 12px 40px; display: flex; flex-direction: column; gap: 6px; }
.top-bar-row1 { display: flex; justify-content: space-between; align-items: center; }
.top-bar-row2 { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 10px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #66d980; flex-shrink: 0; }
.top-bar-urgent { font-size: 15px; font-weight: 600; color: var(--warm-white); }
.top-bar-sub { font-size: 12px; color: var(--text-faint); }
.phone-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--brass); color: var(--navy); font-weight: 600; font-size: 14.5px; padding: 8px 14px; border-radius: var(--radius); }
.phone-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-reach { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-faint); }
.top-bar-reach a { color: var(--brass); font-weight: 600; }
.top-bar-reach .sep { color: rgba(184,148,97,0.3); margin: 0; }
.channels-row { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.channel-badge { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.channel-badge .circle { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(184,148,97,0.3); display: flex; align-items: center; justify-content: center; transition: background 0.15s ease, border-color 0.15s ease; }
.channel-badge:hover .circle { background: rgba(184,148,97,0.12); border-color: rgba(184,148,97,0.6); }
.channel-badge .circle svg { width: 18px; height: 18px; }
.channel-badge .circle .f-mark { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--brass); }
.channel-badge span.label { font-size: 12px; color: var(--text-faint); font-weight: 500; }
.stat-badges-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.stat-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; border: 1px solid rgba(184,148,97,0.3); background: rgba(255,255,255,0.03); font-size: 13px; font-weight: 500; color: #d9d9d9; }
.stat-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }
.nav { background: var(--navy); position: relative; }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 26px 40px; display: flex; justify-content: space-between; align-items: center; }
.wordmark { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: 0.03em; color: var(--warm-white); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 14.5px; color: var(--text-on-dark); }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--warm-white); display: block; }
.nav-links-mobile { display: none; }
.hero { background: var(--navy); padding: 110px 120px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.hero h1 { font-size: 54px; line-height: 1.16; color: var(--warm-white); max-width: 820px; }
.hero-body { font-size: 17px; color: var(--text-on-dark-muted); max-width: 600px; }
.callout { background: var(--cream); border-top: 1px solid var(--brass-dim); padding: 90px 120px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.callout h2 { font-size: 34px; max-width: 760px; }
.callout-body { font-size: 16px; max-width: 600px; }
.practice-areas { background: #fff; padding: 100px 120px; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.section-head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.section-head h2 { font-size: 36px; }
.section-body { font-size: 15.5px; max-width: 620px; }
.area-grid { display: flex; flex-wrap: wrap; gap: 24px; max-width: var(--container); width: 100%; }
.area-card { background: var(--card-white); border: 1px solid #e6e4de; border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1 1 calc(25% - 18px); min-width: 240px; }
.area-num { color: var(--brass); font-weight: 600; font-size: 13px; }
.area-card h3 { font-size: 17px; font-weight: 500; }
.area-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.5; }
.client-experience { background: var(--cream); padding: 100px 120px; display: flex; flex-direction: column; align-items: center; gap: 44px; }
.client-experience h2 { font-size: 34px; max-width: 680px; }
.client-experience .section-body { max-width: 620px; }
.contact-grid { display: flex; flex-wrap: wrap; gap: 20px; max-width: var(--container); width: 100%; }
.contact-card { background: #fff; border: 1px solid var(--brass-dim); border-radius: var(--radius); padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1 1 calc(25% - 15px); min-width: 240px; }
.contact-card h3 { font-size: 19px; font-weight: 500; }
.contact-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.chat-widget-placeholder { width: 100%; max-width: var(--container); min-height: 1px; }
.next-steps { background: var(--navy); padding: 100px 120px; display: flex; flex-direction: column; align-items: center; gap: 44px; }
.next-steps h2 { color: var(--warm-white); font-size: 34px; }
.steps-list { width: 100%; max-width: 720px; }
.steps-list li { display: flex; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 16px; color: var(--text-on-dark); }
.steps-list li:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); color: var(--brass); font-size: 20px; width: 30px; flex-shrink: 0; }
.next-steps .microcopy { color: var(--text-faint); max-width: 600px; }
.final-cta { background: var(--cream); padding: 100px 120px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.final-cta h2 { font-size: 40px; }
.final-cta .section-body { font-size: 16px; }
.footer { background: var(--navy-footer); padding: 64px 120px 36px; }
.footer-top { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 24px; }
.footer-wordmark { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: 0.03em; color: var(--warm-white); }
.footer-sub { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-links, .footer-contacts { display: flex; gap: 24px; }
.footer-links a { font-size: 13.5px; color: var(--text-faint); }
.footer-contacts a { font-size: 13.5px; color: var(--brass); font-weight: 500; }
.footer-disclosure { max-width: var(--container); margin: 0 auto; padding-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.footer-disclosure p { font-size: 12.5px; color: var(--text-muted); max-width: 900px; line-height: 1.5; }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding-top: 20px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: var(--text-faint); }
.footer-bottom .sep { color: rgba(255,255,255,0.15); }
.mobile-contact-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); z-index: 100; padding: 10px 0; padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
.mobile-contact-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 11.5px; color: var(--text-on-dark); font-weight: 500; }
.mcb-icon { font-size: 16px; }
.contact-hero { background: var(--navy); padding: 90px 120px 60px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.contact-hero h1 { font-size: 44px; line-height: 1.16; color: var(--warm-white); max-width: 700px; }
.widget-page-area { background: var(--cream); padding: 60px 120px 100px; min-height: 400px; display: flex; justify-content: center; }
#chat-widget-inline { width: 100%; max-width: 800px; }
@media (max-width: 900px) { .hero, .callout, .practice-areas, .client-experience, .next-steps, .final-cta, .contact-hero, .widget-page-area { padding-left: 24px; padding-right: 24px; } .nav-inner, .top-bar-inner, .footer-top, .footer-disclosure, .footer-bottom { padding-left: 24px; padding-right: 24px; } .footer { padding-left: 0; padding-right: 0; } .area-card, .contact-card { flex-basis: calc(50% - 12px); } .hero h1 { font-size: 38px; } .callout h2, .final-cta h2 { font-size: 28px; } .section-head h2, .client-experience h2, .next-steps h2 { font-size: 28px; } }
@media (max-width: 640px) { .demo-banner { flex-direction: column; gap: 4px; padding: 10px 16px; text-align: center; } .top-bar-inner { padding: 12px 16px; gap: 8px; } .top-bar-row1, .top-bar-row2 { flex-direction: column; align-items: flex-start; gap: 8px; } .top-bar-urgent { font-size: 13.5px; } .top-bar-reach { flex-wrap: wrap; } .nav-links, .nav-inner .btn-brass { display: none; } .nav-toggle { display: flex; } .nav-inner { padding: 20px 24px; } .nav-links-mobile.open { display: flex; flex-direction: column; gap: 20px; padding: 20px 24px 28px; border-top: 1px solid rgba(255,255,255,0.08); } .nav-links-mobile a { font-size: 15px; color: var(--text-on-dark); } .nav-links-mobile .btn { width: fit-content; margin-top: 6px; } .hero, .callout, .practice-areas, .client-experience, .next-steps, .final-cta, .contact-hero, .widget-page-area { padding-top: 60px; padding-bottom: 60px; } .hero h1 { font-size: 30px; } .contact-hero h1 { font-size: 26px; } .section-head h2, .client-experience h2, .next-steps h2 { font-size: 24px; } .callout h2, .final-cta h2 { font-size: 24px; } .area-card, .contact-card { flex-basis: 100%; } .btn-row { flex-direction: column; width: 100%; } .btn-row .btn { width: 100%; } .footer-top { flex-direction: column; } .footer-nav-col { align-items: flex-start; } .footer-links, .footer-contacts { flex-wrap: wrap; gap: 16px; } .mobile-contact-bar { display: flex; } body { padding-bottom: 64px; } }
