/* Online Trust Attorney — v35
   Typography: Frank Ruhl Libre (headings), Satoshi (body), Montserrat (labels/buttons)
   Palette + shape tokens lifted from the Jurri Webflow style guide: pill buttons (500px),
   sharp 0-radius cards, ink/navy on cream with a warm gold accent. */

:root {
  /* color */
  --ink: #102847;
  --ink-muted: rgba(16, 40, 71, 0.62);
  --ink-faint: rgba(16, 40, 71, 0.4);
  --cream: #fdfbf8;
  --paper: #ffffff;
  --muted-bg: #f7f5f1;
  --muted-bg-hover: #f1ede6;
  --muted-bg-blue: #eef2f6;
  --border: #e6e1d8;
  --border-strong: #d8d1c3;
  --navy: #102847;
  --navy-light: #193458;
  --navy-lighter: #223f66;
  --gold: #b2823a;
  --gold-soft: #e0b96c;
  --gold-soft-hover: #d5a54f;
  --on-navy: #f4efe7;
  --on-navy-muted: rgba(244, 239, 231, 0.7);
  --danger: #b3573f;
  --good: #4f6d54;

  /* type */
  --font-heading: "Frank Ruhl Libre", "Georgia", serif;
  --font-body: "Satoshi", "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
  --font-label: "Montserrat", "Segoe UI", sans-serif;

  /* shape */
  --radius-card: 0px;
  --radius-pill: 500px;
  --radius-soft: 2px;
  --border-w: 1px;

  /* layout */
  --container: 1400px;
  --container-wide: 1600px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 8vw, 7rem);

  --shadow-card: 0 1px 2px rgba(13, 28, 41, 0.04);
  --shadow-lift: 0 30px 60px -20px rgba(13, 28, 41, 0.35);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-heading); font-weight: 400; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-pad) 0; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.on-navy .eyebrow, .eyebrow--inverse { color: var(--gold-soft); }

.h-display {
  font-size: clamp(2.9rem, 5.4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(2.4rem, 3.8vw, 3.25rem);
  font-weight: 300;
  line-height: 1.14;
}
.h-card { font-size: 1.375rem; font-weight: 500; line-height: 1.3; }

.accent-gold { color: var(--gold); font-weight: 600; }
.brand-name .accent-gold { font-weight: 700; }

.lede {
  font-size: 1.125rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 40ch;
}
.on-navy .lede, .lede--inverse { color: var(--on-navy-muted); }

.label-tag {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.text-link {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}
.text-link:hover { opacity: 0.6; }

.arrow-link {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease, color 0.2s ease;
}
.arrow-link:hover { border-color: currentColor; gap: 0.75rem; }
.arrow-link--inverse { color: var(--on-navy); border-color: rgba(244,239,231,0.35); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--gold-soft); color: var(--ink); }
.btn-primary:hover { background: var(--gold-soft-hover); transform: translateY(-1px); }
.btn-dark { background: var(--navy); color: var(--on-navy); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--muted-bg); }
.btn-outline-inverse { background: transparent; color: var(--on-navy); border-color: rgba(244,239,231,0.3); }
.btn-outline-inverse:hover { background: rgba(244,239,231,0.08); }
.btn-block { width: 100%; }

/* ---------- top utility bar + header ---------- */
.sticky-header-group {
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar {
  background: var(--navy);
  color: var(--on-navy-muted);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding-top: 0.55rem; padding-bottom: 0.55rem; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.04em; }
.topbar-contact { display: flex; align-items: center; gap: 2rem; }
.topbar a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--on-navy-muted); transition: color 0.2s ease; }
.topbar a:hover { color: var(--on-navy); }
.topbar svg { width: 13px; height: 13px; flex: none; }
.topbar .btn { padding: 0.45rem 1.1rem; font-size: 0.64rem; flex: none; }
.topbar .btn-primary { color: #000; }

header.site-header {
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
header.site-header.is-scrolled {
  box-shadow: 0 8px 24px -16px rgba(13, 28, 41, 0.25);
  border-bottom-color: var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.15rem 0; }

.brand { display: flex; align-items: center; gap: 0.75rem; padding-left: 1.5rem; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-size: 1.15rem; }
.brand-name b { font-weight: 600; }
.brand-tagline { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.04em; color: var(--ink-faint); text-transform: uppercase; }
.brand-tagline-gold { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 2.25rem; margin-left: auto; }
.main-nav a.nav-link {
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a.nav-link:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 18px; height: 18px; }

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h, 0);
  background: var(--paper);
  z-index: 49;
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer .nav-link { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-family: var(--font-label); font-size: 0.95rem; }
.mobile-drawer .btn { margin-top: 1.5rem; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); overflow: hidden; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-copy .h-display { margin-bottom: 1.5rem; }
.hero-copy .lede { max-width: 46ch; margin-bottom: 2.25rem; font-size: 1.15rem; }
.hero-ctas { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

.hero-video-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lift);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-video-card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -20px rgba(13, 28, 41, 0.45); }
.hero-video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-video-card:hover img { transform: scale(1.05); }
.hero-video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,40,71,0) 40%, rgba(16,40,71,0.85) 100%);
}
.hero-video-caption {
  position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 2;
  color: var(--on-navy);
}
.hero-video-caption .label-tag {
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
.hero-video-caption p { font-family: var(--font-heading); font-size: 1.05rem; }
.play-btn {
  position: absolute; right: 1.25rem; bottom: 1.25rem;
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(224, 185, 108, 0.35);
  border: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-video-card:hover .play-btn { transform: scale(1.08); background: rgba(224, 185, 108, 0.55); }
.play-btn:hover { background: rgba(224, 185, 108, 1); }
.play-btn svg { width: 20px; height: 20px; color: var(--navy); }

.hero-banner {
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: 70px;
  position: relative;
  height: clamp(220px, 32vw, 380px);
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-banner-chip {
  position: absolute; left: clamp(1.25rem, 6vw, 4.5rem); bottom: 0; transform: translateY(50%);
  background: var(--paper);
  padding: 1.6rem 1.9rem;
  max-width: 260px;
  box-shadow: var(--shadow-lift);
  z-index: 3;
}
.hero-banner-chip .label-tag { color: var(--gold); margin-bottom: 0.5rem; }
.hero-banner-chip p { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.35; }

/* quick facts trio */
.facts-strip { background: var(--navy); }
.facts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fact {
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(244, 239, 231, 0.12);
  color: var(--on-navy);
}
.fact:last-child { border-right: none; }
.fact h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--gold-soft); }
.fact p { color: var(--on-navy-muted); font-size: 0.95rem; line-height: 1.55; }

/* ---------- two-col intro (why it matters / about pattern) ---------- */
.intro-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.intro-split .lede { max-width: 46ch; }

.reason-list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.reason-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.reason-icon { flex: none; width: 34px; height: 34px; color: var(--gold); }
.reason-icon svg { width: 100%; height: 100%; }
.reason-item-text h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.5rem; }
.reason-item-text p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.65; }

/* ---------- process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.process-card { position: relative; }
.process-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 1.5rem; }
.process-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.process-card:hover .process-media img { transform: scale(1.05); }
.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(9, 20, 35, 0.75) 0%, rgba(9, 20, 35, 0.35) 30%, rgba(9, 20, 35, 0) 55%),
    linear-gradient(180deg, rgba(16, 40, 71, 0) 55%, rgba(16, 40, 71, 0.55) 100%);
}
.process-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
}
.process-card h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.75rem; }
.process-card p { color: var(--ink-muted); line-height: 1.65; }
.process-foot { margin-top: clamp(2.5rem, 4vw, 3rem); text-align: center; }
#process .h-section,
#process .process-card h3 { color: var(--on-navy); }
#process .process-card h3 { border-top-color: rgba(244, 239, 231, 0.22); }
#process .process-card p { color: var(--on-navy-muted); }

/* ---------- comparison ---------- */
.comparison-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.comp-card { padding: clamp(2rem, 3vw, 2.75rem); }
.comp-card.is-muted { background: var(--muted-bg); }
.comp-card.is-featured {
  background: var(--navy);
  color: var(--on-navy);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comp-card.is-featured:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(16, 40, 71, 0.28); }
.comp-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 0.75rem 1rem; margin-bottom: 1rem; }
.comp-head-title { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.comp-logo { width: 32px; height: 32px; flex: none; }
.comp-icon { width: 32px; height: 32px; flex: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(179, 87, 63, 0.1); color: var(--danger); }
.comp-icon svg { width: 15px; height: 15px; }
.comp-icon--x { background: none; color: var(--ink-faint); }
.comp-card h3 { overflow-wrap: break-word; word-break: break-word; }
.comp-card h3 { font-size: 1.4rem; font-weight: 500; }
.badge-pill {
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); background: var(--gold-soft); color: var(--ink); flex: none;
}
.comp-card.is-featured h3 { color: var(--on-navy); }
.comp-card.is-featured .comp-desc { color: var(--on-navy-muted); }
.comp-desc { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.75rem; }
.comp-rows { border-top: 1px solid var(--border); }
.comp-card.is-featured .comp-rows { border-top-color: rgba(244,239,231,0.14); }
.comp-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.comp-row:last-child { border-bottom: none; }
.comp-card.is-featured .comp-row { border-bottom-color: rgba(244,239,231,0.14); }
.comp-row dt { font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin: 0; }
.comp-card.is-featured .comp-row dt { color: var(--gold-soft); }
.comp-row dd { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.comp-card .btn { margin-top: 2rem; }
.comp-card.is-featured .btn { margin-top: auto; }
.comparison-foot { text-align: center; margin-top: 2.5rem; }

/* ---------- attorney ---------- */
.attorney-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.attorney-photo { position: relative; min-width: 0; }
.attorney-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.attorney-badge {
  position: absolute; left: 0; bottom: 0; background: var(--navy); color: var(--on-navy);
  padding: 0.75rem 1.25rem; font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.attorney-name { font-size: clamp(1.8rem, 2.6vw, 2.3rem); font-weight: 400; margin-bottom: 0.5rem; }
.attorney-role { color: var(--gold); font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.03em; margin-bottom: 0.35rem; }
.attorney-meta { color: var(--ink-faint); font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.03em; margin-bottom: 1.75rem; }
.attorney-bio { color: var(--ink-muted); line-height: 1.75; margin-bottom: 1.75rem; max-width: 54ch; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); align-items: stretch; }
.price-card {
  background: var(--muted-bg);
  padding: clamp(2rem, 3vw, 2.5rem);
  padding-top: clamp(3.25rem, 4.5vw, 4rem);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(16, 40, 71, 0.12);
}
.price-card.is-featured {
  background: var(--navy);
  color: var(--on-navy);
}
.price-card.is-featured:hover {
  box-shadow: 0 16px 32px rgba(16, 40, 71, 0.28);
}
.price-card.is-featured h3 { color: var(--on-navy); }
.price-card.is-featured .price-sub { color: var(--gold-soft); }
.price-card.is-featured .price-best,
.price-card.is-featured .price-note,
.price-card.is-featured .price-value .label-tag { color: var(--on-navy-muted); }
.price-card.is-featured .price-desc { color: var(--on-navy-muted); border-bottom-color: rgba(244, 239, 231, 0.14); }
.price-card.is-featured .price-services-label { color: var(--gold-soft); }
.price-card.is-featured .services-line { background: rgba(244, 239, 231, 0.14); }
.price-card.is-featured .price-features svg { color: var(--gold-soft); }
.price-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--on-navy);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tag svg { width: 13px; height: 13px; flex: none; }
.price-tag--navy { background: var(--navy); color: var(--on-navy); }
.price-card h3 { font-size: 1.65rem; font-weight: 500; margin-bottom: 0.3rem; }
.price-sub { font-family: var(--font-label); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.price-best { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 1rem; line-height: 1.5; }
.price-desc { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.price-values { display: flex; gap: 1.75rem; margin-bottom: 1.5rem; }
.price-values:has(.price-value:only-child) { justify-content: center; }
.price-value .amount { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 600; color: var(--gold); display: block; }
.price-card.is-featured .price-value .amount { color: var(--gold-soft); }
.price-value .label-tag { margin-top: 0.25rem; color: var(--ink-faint); }
.price-value:only-child { width: 50%; text-align: center; }
.price-note { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 1.5rem; line-height: 1.5; }
.price-services-label { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.services-line { flex: 1; height: 1px; background: var(--border); }
.price-features { margin-bottom: 1.75rem; flex: 1; }
.price-features li { display: flex; gap: 0.65rem; padding: 0.55rem 0; font-size: 0.92rem; line-height: 1.5; }
.price-features svg { width: 16px; height: 16px; flex: none; margin-top: 0.2rem; color: var(--gold); }

/* ---------- flat fee comparison ---------- */
.flatfee-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0; margin-top: clamp(2.5rem, 5vw, 3.5rem); align-items: stretch; }
.flatfee-col { position: relative; padding: clamp(3rem, 4.5vw, 4.25rem); background: var(--paper); box-shadow: var(--shadow-card); overflow: hidden; }
.flatfee-col.is-good {
  background: var(--navy);
  color: var(--on-navy);
  box-shadow: var(--shadow-lift);
}

.flatfee-tag { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-label); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.1rem; }
.flatfee-tag::before { content: ""; width: 16px; height: 1px; background: currentColor; }
.flatfee-col.is-good .flatfee-tag { color: var(--gold-soft); }

.flatfee-col h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500; line-height: 1.3; margin-bottom: 1.85rem; }
.flatfee-col.is-good h3 { color: var(--on-navy); }

.flatfee-list li { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.6rem 0; font-size: 0.95rem; line-height: 1.5; transition: transform 0.25s ease, color 0.25s ease; }
.flatfee-col:not(.is-good) .flatfee-list li { color: var(--ink-muted); }
.flatfee-col:not(.is-good) .flatfee-list li:hover { color: var(--ink); transform: translateX(4px); }
.flatfee-col.is-good .flatfee-list li:hover { transform: translateX(4px); }

.flatfee-icon { width: 20px; height: 20px; flex: none; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }
.flatfee-icon svg { width: 14px; height: 14px; }
.flatfee-col:not(.is-good) .flatfee-icon { color: var(--ink-faint); }
.flatfee-col.is-good .flatfee-icon { color: var(--gold-soft); }

.flatfee-vs {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
}
.flatfee-vs span { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

.quote-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-areas: "body media" "banner banner";
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 5vw, 4rem);
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.quote-media { grid-area: media; position: relative; width: 100%; aspect-ratio: 4 / 5; min-height: 0; max-width: 280px; margin-left: auto; box-shadow: var(--shadow-lift); }
.quote-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.quote-body { grid-area: body; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { font-family: var(--font-heading); font-size: 6rem; color: var(--gold-soft); line-height: 1; margin-bottom: -0.75rem; }
.quote-body blockquote { font-family: var(--font-heading); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; line-height: 1.4; margin: 0 0 1.5rem; max-width: 32ch; }
.quote-fine { color: var(--on-navy-muted); font-size: 0.88rem; line-height: 1.65; max-width: 48ch; }

/* ---------- discovery banner ---------- */
.discovery-banner {
  grid-area: banner;
  position: relative;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}
.discovery-content { max-width: 52ch; }
.discovery-content .eyebrow { color: var(--ink); }
.discovery-content .eyebrow::before { background: var(--ink); }
.discovery-content h2 { color: var(--ink); font-size: clamp(1.5rem, 2.1vw, 1.85rem); font-weight: 700; margin: 0.6rem 0 0.65rem; }
.discovery-content p { color: rgba(16, 40, 71, 0.72); line-height: 1.65; margin: 0; }
.discovery-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: none;
}
.discovery-action .btn-dark:hover { background: var(--navy-light); }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4rem); }
.faq-list { margin-top: clamp(2.25rem, 4vw, 2.75rem); }
.faq-side .h-section { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.faq-see-all { display: inline-flex; margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.advisor-note p { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.6rem; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-heading); font-size: 1.1rem; color: var(--ink);
}
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.25s ease; }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--ink-muted); line-height: 1.7; padding-bottom: 1.4rem; max-width: 60ch; }
.faq-item.is-open .faq-a { max-height: 220px; }

/* ---------- resources ---------- */
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.resource-card { display: block; }
.resource-media { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.25rem; }
.resource-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.resource-card:hover .resource-media img { transform: scale(1.05); }
.resource-card h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; transition: color 0.25s ease; }
.resource-card p { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 0.9rem; }
.resource-card:hover h3 { color: var(--gold); }
.resource-card:hover .text-link { opacity: 0.6; }

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.final-cta-bg { position: absolute; inset: 0; opacity: 0.16; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--navy) 0%, rgba(13,28,41,0.75) 100%); }
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); font-weight: 300; margin-bottom: 1.1rem; color: var(--on-navy); }
.final-cta p { color: var(--on-navy-muted); line-height: 1.7; margin-bottom: 2.25rem; }
.final-cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site-footer { background: var(--navy); color: var(--on-navy); }
.footer-top { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
.footer-brand .brand-name, .footer-brand .brand-name b { color: var(--on-navy); }
.footer-brand .brand-tagline { color: var(--on-navy-muted); }
.footer-lede { color: var(--on-navy-muted); margin-top: 1.25rem; line-height: 1.7; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(244,239,231,0.14);
}
.footer-col a, .footer-col p { display: block; color: var(--on-navy-muted); font-size: 0.92rem; padding: 0.5rem 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--on-navy); }
.footer-col address { font-style: normal; }

.footer-legal { padding: 2rem 0; border-top: 1px solid rgba(244,239,231,0.12); }
.footer-disclaimer { color: rgba(244,239,231,0.55); font-size: 0.78rem; line-height: 1.7; max-width: 100%; margin-bottom: 1.5rem; }
.footer-legal-line { color: rgba(244,239,231,0.55); font-size: 0.78rem; margin-bottom: 1.5rem; }

.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(244,239,231,0.12); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { color: var(--on-navy-muted); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--on-navy-muted); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--on-navy); }

/* ---------- video modal ---------- */
.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.video-modal.is-open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(13, 28, 41, 0.82); }
.video-modal-panel { position: relative; background: var(--navy); color: var(--on-navy); max-width: 420px; width: 100%; padding: 2.5rem 2rem; text-align: center; z-index: 1; }
.video-modal-body img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.video-modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(244,239,231,0.08); border: none; color: var(--on-navy); display: flex; align-items: center; justify-content: center; }
.video-modal-close svg { width: 16px; height: 16px; }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .attorney-grid { grid-template-columns: minmax(0, 1fr); }
  .attorney-photo { max-width: 380px; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 1150px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-video-card { max-width: 380px; aspect-ratio: 4/5; }
  .facts-grid { grid-template-columns: minmax(0, 1fr); }
  .fact { border-right: none; border-bottom: 1px solid rgba(244,239,231,0.12); }
  .fact:last-child { border-bottom: none; }
  .intro-split { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 1.25rem; }
  .process-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .comparison-grid { grid-template-columns: minmax(0, 1fr); }
  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .price-card.is-featured { transform: none; order: -1; }
  .flatfee-grid { grid-template-columns: minmax(0, 1fr); }
  .flatfee-vs { position: static; transform: none; margin: -0.9rem auto; }
  .quote-split { grid-template-columns: minmax(0, 1fr); grid-template-areas: "body" "media" "banner"; }
  .quote-media { min-height: 240px; }
  .discovery-banner { grid-template-columns: minmax(0, 1fr); }
  .discovery-content { max-width: none; }
  .discovery-action { justify-content: flex-start; margin-top: 0.5rem; }
  .resource-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-banner-chip { position: static; transform: none; margin-top: 1px; max-width: none; }
  .hero-banner { margin-bottom: 2rem; }
}

@media (max-width: 640px) {
  .topbar .container { justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
  .h-display { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}
