/* ==========================================================================
   Online Trust Attorney — v44
   Design system ported from the "Lawyer Firm" Webflow Ecommerce template:
   same dark palette, type scale, spacing, outline-gold pill buttons, circular
   badge icons and hover-reveal cards, applied to new markup and content.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;500;600&display=swap');

/* ---------- tokens ---------- */
:root {
  --black: #060e19;
  --white: #f5f5f5;
  --primary: #b2823a;
  --primary-light: #e0b96c;
  --light-gray: #d7d7d8;
  --gray: #9c9ca7;
  --matte: #0c1624;
  --lighter-black: #09121f;
  --border-radius: 2rem;

  --font-display: 'Gilda Display', Georgia, serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --font-label: 'Barlow Condensed', Arial, sans-serif;

  --container: 1440px;
  --pad: 4.5rem;
  --section-y: 7rem;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 1024px) {
  :root { --pad: 2.25rem; --section-y: 5rem; }
}
@media (max-width: 640px) {
  :root { --pad: 1.25rem; --section-y: 3.5rem; }
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

body {
  background: var(--black);
  color: var(--light-gray);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 3.75rem); line-height: 1; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8125rem); line-height: 1.08; }
h3 { font-size: 1.75rem; line-height: 1.15; }
h4 { font-size: 1.5rem; line-height: 1.3; }
h5 { font-size: 1.3125rem; line-height: 1.35; }

h6, .eyebrow {
  font-family: var(--font-label);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .375rem;
  text-transform: uppercase;
  color: var(--primary);
}

p { color: var(--light-gray); }
p.lede { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: var(--gray); line-height: 1.6; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container.narrow { max-width: 1180px; }

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; }

.has-photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-photo);
  background-size: cover;
  background-position: center;
  opacity: .1;
  pointer-events: none;
}
.gradient-up { background-image: linear-gradient(180deg, var(--black), var(--matte)); }
.gradient-down { background-image: linear-gradient(180deg, var(--matte), var(--black)); }
.bg-matte { background: var(--matte); }

/* ---------- section header ---------- */
.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: .75rem; }
.section-head p { margin-top: 1.5rem; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.horizontal-line { width: 4rem; height: 1px; background: var(--primary); margin-top: 1.25rem; }
.center .horizontal-line { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  overflow: hidden;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  background: rgba(178, 130, 58, .1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9375rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 1rem 2rem;
  transition: color .3s var(--ease);
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateX(-105%);
  transition: transform .35s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--white); }
.btn:hover::before { transform: translateX(0); }

.btn-solid { background: var(--white); border-color: var(--white); color: var(--black); }
.btn-solid::before { background: var(--gray); }
.btn-solid:hover { color: var(--black); }

.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--black); }
.btn-primary::before { background: var(--primary-light); }
.btn-primary:hover { color: var(--black); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-label);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  transition: color .25s var(--ease);
}
.text-link .arrow { display: flex; flex: none; transition: transform .25s var(--ease); }
.text-link .arrow svg { width: 14px; height: 14px; stroke: currentColor; }
.text-link:hover { color: var(--primary-light); }
.text-link:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad);
  background: transparent;
  box-shadow: none;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.navbar.is-scrolled {
  background: var(--lighter-black);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.logo-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--matte);
  border: 1px solid rgba(178, 130, 58, .35);
}
.logo-brand svg { width: 1.75rem; height: 1.75rem; }

.nav-menu-desktop { display: none; align-items: center; gap: 1.75rem; }
.nav-link-desktop {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav-link-desktop:hover, .nav-link-desktop.is-current { color: var(--primary); }

.navbar-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop-cta { display: none; padding: .55rem 1.25rem; font-size: .75rem; }

.menu-burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid rgba(178, 130, 58, .35);
  transition: border-color .25s var(--ease);
}
.menu-burger:hover { border-color: var(--primary); }
.menu-burger span { width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.navbar.is-open .menu-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar.is-open .menu-burger span:nth-child(2) { opacity: 0; }
.navbar.is-open .menu-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--lighter-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.navbar.is-open .nav-menu { opacity: 1; visibility: visible; transform: none; }
.nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: color .25s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link.is-current { color: var(--primary); }
.nav-menu-cta { margin-top: 1rem; }

@media (min-width: 1025px) {
  .nav-menu-desktop { display: flex; }
  .nav-desktop-cta { display: inline-flex; }
  .menu-burger { display: none; }
  .nav-menu { display: none; }
}

/* ---------- hero ---------- */
.hero-section {
  background-image: linear-gradient(180deg, var(--matte), var(--black));
  padding-top: 0;
}
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 5rem;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; opacity: .05; }
.hero-wrapper .container { position: relative; z-index: 2; width: 100%; }

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }

.hero-text-wrapper { max-width: 620px; }
.logo-icon-wrapper { margin-bottom: 1.5rem; }
.logo-icon-wrapper svg { width: 2.5rem; height: 2.5rem; }
.hero-text-wrapper h6 { display: block; margin-bottom: .75rem; }
.hero-text-wrapper h1 { margin-bottom: 1.5rem; }
.hero-text-wrapper h4 { color: var(--gray); font-family: var(--font-body); font-weight: 300; font-size: 1.125rem; line-height: 1.6; max-width: 480px; margin-bottom: 2.25rem; }

.hero-media {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.6);
  cursor: pointer;
}
.hero-media-image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.hero-media-overlay {
  position: absolute; inset: 0;
  background: rgba(6,14,25,.3);
  transition: background .4s var(--ease);
}
.hero-media:hover .hero-media-image { transform: scale(1.04); }
.hero-media:hover .hero-media-overlay { background: rgba(6,14,25,.15); }

.play-btn {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 2;
  flex: none;
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease);
}
.play-btn::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--black);
  margin-left: 3px;
}
.hero-media:hover .play-btn { transform: scale(1.08); }

.hero-media-caption {
  position: absolute;
  bottom: 1.75rem; left: 1.75rem;
  z-index: 2;
  max-width: 9rem;
  font-family: var(--font-label);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--white);
}

/* ---------- awards / feature strip ---------- */
.awards-flex { display: flex; flex-wrap: wrap; justify-content: center; }
.awards-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 300px;
  flex: 1 1 300px;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(178, 130, 58, .35);
  text-align: left;
}
.awards-card:last-child { border-right: none; }
.icon-badge {
  flex: none;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.icon-badge svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); }
.awards-text h6 { margin-bottom: .6rem; }
.awards-text p { font-size: .9375rem; color: var(--gray); }

/* ---------- who / why-it-matters ---------- */
.who-flex { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5rem; align-items: center; }
.who-feature-flex { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 3rem; }
.who-card { display: flex; align-items: flex-start; gap: 1.25rem; }
.who-icon-wrapper {
  flex: none;
  width: 1.375rem; height: 1.375rem;
  display: flex; align-items: center; justify-content: center;
}
.who-icon-wrapper svg { width: 1.375rem; height: 1.375rem; stroke: var(--primary); }
.who-text-wrapper h6 { margin-bottom: .5rem; letter-spacing: .2rem; }
.who-text-wrapper p { font-size: .9375rem; }

.who-image-wrapper { position: relative; border-radius: var(--border-radius); overflow: hidden; aspect-ratio: 4/5; }
.who-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.who-image-overlay { position: absolute; inset: 0; background: rgba(17,17,17,.35); transition: opacity .5s var(--ease); }
.who-image-wrapper:hover img { transform: scale(1.04); }
.who-image-wrapper:hover .who-image-overlay { opacity: 0; }

/* ---------- attorney ---------- */
.attorney-flex { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4.5rem; align-items: center; }
.attorney-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,.6);
}
.attorney-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.attorney-credential-line { display: flex; align-items: center; gap: .75rem; margin: 1rem 0 1.75rem; font-family: var(--font-label); letter-spacing: .08em; text-transform: uppercase; font-size: .875rem; color: var(--gray); }
.attorney-credential-line::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.attorney-flex p.bio { max-width: 58ch; margin-bottom: 1.75rem; }

/* ---------- process ---------- */
.process-flex { display: flex; flex-wrap: wrap; }
.process-card {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(178, 130, 58, .35);
}
.process-card:last-child { border-right: none; }
.process-num-badge {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.process-card h3 { margin-bottom: .75rem; }
.process-card p { font-size: .9375rem; margin-bottom: 1.5rem; }

/* ---------- comparison ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.compare-card { position: relative; }
.compare-media { position: relative; border-radius: var(--border-radius); overflow: hidden; aspect-ratio: 16/10; margin-bottom: -3rem; z-index: 1; }
.compare-media img { width: 100%; height: 100%; object-fit: cover; }
.compare-media::after { content: ''; position: absolute; inset: 0; background: rgba(17,17,17,.45); }
.compare-badge-chip {
  position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2;
  font-family: var(--font-label);
  font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: var(--border-radius);
}
.compare-badge-chip.is-no { background: var(--black); color: var(--gray); border: 1px solid rgba(255,255,255,.15); }
.compare-badge-chip.is-yes { background: var(--primary); color: var(--white); }
.compare-panel { position: relative; z-index: 2; background: var(--matte); border-radius: var(--border-radius); padding: 3rem 2.5rem 2.5rem; margin: 0 1.5rem; }
.compare-panel h3 { margin-bottom: 1rem; }
.compare-panel > p { font-size: .9375rem; margin-bottom: 1.75rem; }
.compare-rows { display: flex; flex-direction: column; }
.compare-row { display: grid; grid-template-columns: 28px 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.compare-row:first-child { border-top: none; padding-top: 0; }
.compare-row-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.compare-row-icon.is-no { border: 1px solid rgba(255,255,255,.2); }
.compare-row-icon.is-yes { background: var(--primary); }
.compare-row-icon svg { width: 12px; height: 12px; }
.compare-row-label { font-family: var(--font-label); font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: .2rem; }
.compare-row-value { font-size: .9375rem; color: var(--white); }
.compare-panel .btn { margin-top: 1.75rem; width: 100%; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.price-card {
  position: relative;
  background: var(--matte);
  border: 1px solid rgba(178, 130, 58, .18);
  border-radius: var(--border-radius);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}
.price-card.is-popular { border-color: var(--primary); }
.price-ribbon {
  position: absolute; top: -.9rem; left: 2.25rem;
  background: var(--primary); color: var(--white);
  font-family: var(--font-label); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: .4rem 1.1rem; border-radius: var(--border-radius);
}
.price-kicker { margin-bottom: .75rem; }
.price-card h3 { margin-bottom: .5rem; }
.price-fit { font-size: .875rem; color: var(--gray); margin-bottom: 1.25rem; }
.price-fit strong { color: var(--white); font-weight: 600; }
.price-desc { font-size: .9375rem; margin-bottom: 1.75rem; }
.price-amounts { display: flex; gap: 1.75rem; padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-amount .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--primary); display: block; }
.price-amount .label { font-family: var(--font-label); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.price-features { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; flex: 1; }
.price-features li { display: flex; gap: .75rem; font-size: .9375rem; color: var(--light-gray); }
.price-features li svg { flex: none; width: 16px; height: 16px; margin-top: .2rem; stroke: var(--primary); }
.price-card .btn { width: 100%; }

/* ---------- flat fee / quote ---------- */
.flatfee-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 5rem; }
.flatfee-col h4 { margin-bottom: 1.75rem; }
.flatfee-list { display: flex; flex-direction: column; gap: 1.1rem; }
.flatfee-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: .9375rem; }
.flatfee-icon { flex: none; width: 1.75rem; height: 1.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: .1rem; }
.flatfee-icon.is-no { border: 1px solid rgba(255,255,255,.25); }
.flatfee-icon.is-yes { background: var(--primary); }
.flatfee-icon svg { width: 11px; height: 11px; }

.quote-block { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-mark { width: 2.75rem; height: 2.75rem; margin: 0 auto 1.5rem; stroke: var(--primary); }
.quote-block p.quote-text { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--white); line-height: 1.4; margin-bottom: 1.5rem; }
.quote-attribution { font-family: var(--font-label); letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; color: var(--primary); }
.flatfee-fine { max-width: 760px; margin: 3rem auto 0; text-align: center; font-size: .875rem; color: var(--gray); }

/* ---------- discovery cta ---------- */
.discovery-flex { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; gap: 0; border-radius: var(--border-radius); overflow: hidden; }
.discovery-copy { background: var(--matte); padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.discovery-copy p { margin: 1.25rem 0 2rem; }
.discovery-media { position: relative; min-height: 320px; }
.discovery-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.discovery-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--matte), transparent 60%); }

/* ---------- faq ---------- */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  transition: transform .25s var(--ease);
}
.faq-list .faq-row:first-child { border-top: none; }
.faq-list a.faq-row:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.faq-row:hover { transform: translateX(.4rem); }
.faq-row h4 { font-size: 1.1875rem; }
.faq-arrow { flex: none; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--primary); display: flex; align-items: center; justify-content: center; }
.faq-arrow svg { width: 14px; height: 14px; stroke: var(--primary); }
.faq-side-card { background: var(--matte); border-radius: var(--border-radius); padding: 2.25rem; margin-top: 2.5rem; }
.faq-side-card h5 { margin-bottom: 1rem; }

/* ---------- resources ---------- */
.resource-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.resource-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.resource-media { position: relative; border-radius: var(--border-radius); overflow: hidden; aspect-ratio: 4/3; }
.resource-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.resource-media::after { content: ''; position: absolute; inset: 0; background: rgba(17,17,17,.35); transition: opacity .4s var(--ease); }
.resource-row:hover .resource-media img { transform: scale(1.06); }
.resource-row:hover .resource-media::after { opacity: 0; }
.resource-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--font-label); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--black); color: var(--white);
  padding: .4rem 1rem; border-radius: var(--border-radius);
}
.resource-text h4 { margin-bottom: .6rem; }
.resource-text p { font-size: .9375rem; margin-bottom: 1.1rem; }

/* ---------- final cta ---------- */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 720px; margin: 1rem auto 0; }
.final-cta p.lede { max-width: 620px; margin: 1.25rem auto 0; }
.final-cta .cta-row { justify-content: center; margin-top: 2.5rem; }

/* ---------- footer ---------- */
.footer { background: var(--matte); padding-top: 6rem; }
.footer-flex { display: grid; grid-template-columns: 1.3fr .9fr .9fr 1fr; gap: 3rem; padding-bottom: 4rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-brand .logo-brand { width: 3rem; height: 3rem; }
.footer-brand .logo-brand svg { width: 1.25rem; height: 1.25rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.375rem; color: var(--white); }
.footer-about p { font-size: .9375rem; max-width: 34ch; }
.footer-col h6 { display: block; margin-bottom: 1.25rem; color: var(--light-gray); font-family: var(--font-label); letter-spacing: .15rem; font-size: 1.05rem; }
.footer-col a { display: block; color: var(--gray); font-size: .9375rem; padding: .35rem 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--primary-light); }
.footer-contact p { color: var(--gray); font-size: .9375rem; margin-bottom: .4rem; }
.footer-contact a { color: var(--gray); }
.footer-contact a:hover { color: var(--primary-light); }

.disclaimer { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .75rem; line-height: 1.7; color: rgba(255,255,255,.35); }

.footer-bottom { background: var(--lighter-black); }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding: 1.75rem 0; }
.footer-bottom-text { color: var(--gray); font-size: .875rem; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a { color: var(--gray); font-size: .875rem; text-decoration: underline; }
.footer-legal-links a:hover { color: var(--primary-light); }

/* ---------- utilities ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

.hero-grid > *, .who-flex > *, .attorney-flex > *, .compare-grid > *, .pricing-grid > *,
.flatfee-columns > *, .footer-flex > *, .discovery-flex > *, .faq-layout > *, .resource-row {
  min-width: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .who-flex, .attorney-flex, .compare-grid, .discovery-flex, .faq-layout { grid-template-columns: 1fr; }
  .who-image-wrapper { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .discovery-media { min-height: 220px; }
  .pricing-grid, .flatfee-columns { grid-template-columns: 1fr; }
  .footer-flex { grid-template-columns: 1fr 1fr; }
  .resource-list { grid-template-columns: 1fr; }
  .resource-media { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .awards-card { border-right: none; border-bottom: 1px solid rgba(178,130,58,.35); }
  .awards-card:last-child { border-bottom: none; }
  .process-card { border-right: none; border-bottom: 1px solid rgba(178,130,58,.35); }
  .process-card:last-child { border-bottom: none; }
  .footer-flex { grid-template-columns: 1fr; }
  .discovery-copy { padding: 2.5rem; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { justify-content: center; }
  .hero-wrapper { padding: 8rem 0 3rem; }
}
