/* ==========================================================================
   Lakeshore Asset Recovery LLC — Design System
   Palette: deep navy, slate, warm gold accent, off-white, success green
   Type: Lora (serif headings) + Inter (sans body)
   ========================================================================== */

:root {
  --navy: #0F2A43;
  --navy-700: #16344f;
  --navy-600: #1d4063;
  --slate: #475569;
  --slate-light: #64748b;
  --gold: #C8A24B;
  --gold-dark: #a9863a;
  --green: #1F7A55;
  --bg: #F7F9FB;
  --white: #ffffff;
  --line: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15, 42, 67, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 42, 67, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 42, 67, 0.16);
  --radius: 12px;
  --radius-lg: 18px;
  --maxw: 1140px;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .6em; }
h3 { font-size: 1.3rem; margin-bottom: .4em; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.2rem; color: var(--slate); }
.eyebrow { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; font-weight: 700; color: var(--gold-dark); margin-bottom: .6rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--navy { background: var(--navy); color: #cdd7e2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--alt { background: var(--white); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.narrow { max-width: 760px; }
.grid { display: grid; gap: 28px; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent; cursor: pointer; transition: all .18s ease; text-align: center; }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--gold); color: var(--navy); }
.btn--lg { padding: 16px 32px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: saturate(180%) blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-serif); font-weight: 600; color: var(--navy); font-size: 1.12rem; }
.brand-sub { font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.nav-links { display: none; align-items: center; gap: 6px; list-style: none; }
.nav-links a { font-weight: 500; color: var(--navy); font-size: .92rem; padding: 6px 14px; border-radius: 8px; white-space: nowrap; transition: background .15s ease, color .15s ease; }
.nav-links a:hover { background: rgba(15,42,67,0.07); color: var(--navy); }
.nav-links a.active { background: rgba(200,162,75,0.12); color: var(--gold-dark); }
.nav-cta { display: none; align-items: center; gap: 14px; }
.nav-phone { font-weight: 700; color: var(--navy); white-space: nowrap; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .2s; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 0; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 12px; }

@media (min-width: 940px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, #0b2138 100%); color: #e7eef5; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,162,75,0.18), transparent 70%); }
.hero-inner { position: relative; z-index: 2; padding: 84px 0; max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lead { color: #c7d4e1; margin: 18px 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .92rem; color: #aebfd0; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.check { color: var(--gold); font-weight: 700; }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; }
.card h3 { margin-top: 6px; }
.card .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; margin-bottom: 14px; }
.icon-badge { width: 52px; height: 52px; border-radius: 12px; background: rgba(200,162,75,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--gold-dark); }

/* trust strip */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .grid { gap: 18px; align-items: center; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item strong { color: var(--navy); display: block; font-size: 1.02rem; }
.trust-item small { color: var(--slate-light); }

/* steps */
.step { position: relative; padding-left: 0; }
.step .num { background: var(--gold); color: var(--navy); }

/* testimonial */
.quote { background: #fff; border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); font-style: italic; color: var(--navy-700); }
.quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 600; color: var(--slate-light); font-size: .9rem; }
.placeholder-note { font-size: .8rem; color: var(--gold-dark); font-style: normal; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--navy-600)); color: #fff; border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #c7d4e1; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--gold-dark); }
.faq-q .plus { font-family: var(--font-sans); font-size: 1.6rem; color: var(--gold-dark); flex: none; transition: transform .2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 600px; }

/* forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 1rem; color: var(--navy); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,75,0.18); }
.field .hint { font-size: .82rem; color: var(--slate-light); margin-top: 4px; }
.required { color: var(--green); }
.field-split { display: grid; gap: 14px; }
@media (min-width: 620px) { .field-split { grid-template-columns: repeat(2, 1fr); } }
.check-field { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin: 18px 0; font-size: .86rem; line-height: 1.45; color: var(--slate); }
.check-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.form-intro { font-size: .94rem; color: var(--slate-light); margin-top: -4px; }

/* paid traffic landing page */
.landing-hero .container { padding-top: 64px; padding-bottom: 64px; }
.landing-grid { position: relative; z-index: 2; display: grid; gap: 36px; align-items: start; }
.landing-copy { max-width: 660px; }
.landing-form { color: var(--slate); }
.landing-form h2 { margin-bottom: 8px; }
@media (min-width: 980px) {
  .landing-grid { grid-template-columns: minmax(0, 1fr) 460px; }
  .landing-form { margin-top: 0; }
}

/* calendly placeholder */
.calendly-embed { min-height: 360px; border: 2px dashed var(--gold); border-radius: var(--radius-lg); background: #fff; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; color: var(--slate); }

/* disclaimer / notes */
.disclaimer { background: #fffdf5; border: 1px solid #ecdcae; border-radius: var(--radius); padding: 18px 22px; font-size: .9rem; color: var(--slate); }
.disclaimer strong { color: var(--navy); }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(31,122,85,0.08); color: var(--green); border: 1px solid rgba(31,122,85,0.25); padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; }

/* fee callout */
.fee-box { background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 30px; text-align: center; }
.fee-box .pct { font-family: var(--font-serif); font-size: 3rem; color: var(--navy); font-weight: 700; }

/* footer */
.site-footer { background: var(--navy); color: #aebfd0; padding: 56px 0 28px; font-size: .94rem; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.site-footer a { color: #c7d4e1; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { display: inline-block; padding: 8px 18px; border: 1px solid rgba(200,162,75,0.35); border-radius: 6px; color: #c7d4e1; text-decoration: none; transition: all 0.2s ease; font-size: .9rem; }
.footer-links a:hover { background: rgba(200,162,75,0.15); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; font-size: .82rem; color: #8499ad; }
.footer-bottom p { margin-bottom: .6rem; }

/* sticky mobile CTA */
.mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.97); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(15,42,67,0.08); }
.mobile-sticky-cta .btn { flex: 1; padding: 12px; font-size: .95rem; }
@media (min-width: 940px) { .mobile-sticky-cta { display: none; } body { padding-bottom: 0 !important; } }
@media (max-width: 939px) { body { padding-bottom: 68px; } }

/* utilities */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-gold { color: var(--gold-dark); }
.list-clean { list-style: none; }
.list-check { list-style: none; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }

/* Resource Library / guides */
.byline { font-size: .9rem; color: var(--slate-light); margin-bottom: 18px; }
.takeaways { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 20px 24px; margin: 8px 0 28px; }
.takeaways h3 { margin-bottom: 10px; }
.article h2 { margin-top: 38px; }
.guide-card h3 { line-height: 1.35; }
.guide-card h3 a { color: var(--navy); }
.guide-card h3 a:hover { color: var(--gold-dark); }
