/* ==========================================================================
   Online Trust Attorney — v46
   Design system ported 1:1 from the Optimo Webflow template
   (colors, type scale, spacing, radii, button/card/nav treatment),
   with section composition referencing the Howard template's layout grammar.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root{
  /* --- Optimo color tokens --- */
  --bg:#f7f7f4;
  --ink:#03030f;
  --ink-70:rgba(3,3,15,.7);
  --ink-55:rgba(3,3,15,.55);
  --primary:#242427;
  --primary-fill:#242427;
  --primary-dark:#161618;
  --gold:#b2823a;
  --gold-dark:#8f682e;
  --gold-tint:#f0e4d1;
  --white:#ffffff;
  --white-02:#f4f4f2;
  --gray-3:#ededea;
  --stroke-1:rgba(255,255,255,.1);
  --stroke-2:#d6d5d1;
  --stroke-3:rgba(255,255,255,.4);
  --tint:#ececea;
  --muted-2:#5c5c60;
  --bad:#6b6b70;

  /* --- radii --- */
  --r-chip:8px;
  --r-card:24px;
  --r-panel:24px;
  --r-pill:100px;

  /* --- shadows --- */
  --shadow-nav:0 4px 60px rgba(3,3,15,.12);
  --shadow-dropdown:17px 19px 80px rgba(168,168,169,.25);
  --shadow-card:0 1px 2px rgba(3,3,15,.04);

  /* --- layout --- */
  --container:1440px;
  --gutter:24px;

  /* --- fonts --- */
  --font-heading:'Inter Tight', Arial, sans-serif;
  --font-nav:'DM Sans', Arial, sans-serif;
  --font-accent:'Playfair Display', Georgia, serif;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-heading);
  font-size:16px;
  line-height:24px;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4,h5,h6,p{ margin:0; }

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

section{ position:relative; }
[id]{ scroll-margin-top:112px; }

/* ---------- Typography scale (Optimo) ---------- */
.h1{ font-size:58px; line-height:68px; font-weight:600; letter-spacing:-0.01em; }
.h2{ font-size:52px; line-height:62px; font-weight:500; letter-spacing:-0.01em; }
.h3{ font-size:40px; line-height:48px; font-weight:500; }
.h4{ font-size:28px; line-height:36px; font-weight:600; }
.display-s{ font-size:24px; line-height:32px; font-weight:600; }
.normal-l{ font-size:20px; line-height:28px; font-weight:500; }
.normal{ font-size:18px; line-height:28px; font-weight:500; }
.normal-reg{ font-size:18px; line-height:26px; font-weight:400; }
.body-s{ font-size:14px; line-height:22px; font-weight:400; }
.text-70{ color:var(--ink-70); }
.text-muted{ color:var(--muted-2); }

.accent{
  font-family:var(--font-accent);
  font-weight:600;
  color:var(--gold);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-nav);
  font-size:14px;
  line-height:20px;
  font-weight:500;
  color:var(--gold);
  margin:0 0 16px;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  flex:none;
}

.section-head{
  max-width:720px;
  margin:0 0 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ margin:0 0 16px; }
.section-head.wide{ max-width:860px; }

@media (max-width:991px){
  .h1{ font-size:48px; line-height:56px; }
  .h2{ font-size:36px; line-height:44px; }
  .h3{ font-size:28px; line-height:36px; }
}
@media (max-width:479px){
  .h1{ font-size:36px; line-height:44px; }
  .h2{ font-size:28px; line-height:36px; }
}

/* ---------- Buttons (Optimo pill style) ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--gold);
  color:var(--white);
  font-family:var(--font-heading);
  font-size:16px;
  line-height:24px;
  font-weight:500;
  letter-spacing:-0.02em;
  padding:16px 26px;
  border-radius:var(--r-pill);
  border:none;
  white-space:nowrap;
  transition:background .2s ease, transform .2s ease;
}
.btn:hover{ background:var(--gold-dark); transform:translateY(-1px); }
.btn .btn-icon{
  flex:none;
  width:18px; height:18px;
  display:flex; align-items:center; justify-content:center;
}
.btn .btn-icon svg{ width:18px; height:18px; }

.btn-secondary{
  background:var(--white);
  color:var(--ink);
  border:1px solid var(--stroke-2);
}
.btn-secondary:hover{ background:var(--white); border-color:var(--gold); }

.btn-on-dark{
  background:var(--gold);
  color:var(--white);
}
.btn-on-dark:hover{ background:var(--gold-dark); }

.btn.small{ padding:12px 20px; gap:8px; font-size:14px; }
.btn.small .btn-icon{ width:14px; height:14px; }
.btn.small .btn-icon svg{ width:14px; height:14px; }

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:500;
  font-size:16px;
  color:var(--ink);
  border-bottom:1px solid var(--stroke-2);
  padding-bottom:2px;
  transition:color .2s ease, border-color .2s ease, gap .2s ease;
}
.text-link:hover{ color:var(--gold); border-color:var(--gold); gap:12px; }
.text-link svg{ width:16px; height:16px; flex:none; }
.text-link.on-dark{ color:var(--white); border-color:var(--stroke-3); }
.text-link.on-dark:hover{ color:var(--white-02); border-color:var(--white); }

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--ink);
  color:var(--white-02);
}
.topbar .container{
  display:flex;
  justify-content:flex-end;
  gap:28px;
  padding-top:8px;
  padding-bottom:8px;
  font-family:var(--font-nav);
  font-size:13px;
}
.topbar a{ display:inline-flex; align-items:center; gap:6px; opacity:.85; }
.topbar a:hover{ opacity:1; }
.topbar svg{ width:14px; height:14px; }

/* ---------- Nav (Optimo floating pill) ---------- */
.nav-wrap{
  position:sticky;
  top:0;
  z-index:60;
  padding:20px 0 0;
}
.navbar{
  max-width:var(--container);
  margin:0 auto;
  background:var(--white);
  border-radius:var(--r-pill);
  box-shadow:var(--shadow-nav);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px 12px 24px;
}
.logo-brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex:none;
}
.logo-brand svg{ width:32px; height:32px; }
.logo-brand .brand-name{
  font-weight:600;
  font-size:16px;
  line-height:20px;
  color:var(--ink);
}
.logo-brand .brand-name small{
  display:block;
  font-family:var(--font-nav);
  font-weight:400;
  font-size:11px;
  color:var(--muted-2);
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:2px;
}
.nav-link{
  font-family:var(--font-nav);
  font-size:15px;
  font-weight:400;
  color:var(--ink-70);
  padding:10px 14px;
  border-radius:var(--r-pill);
  transition:background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link.is-current{
  background:var(--tint);
  color:var(--gold);
}
.nav-menu-cta{ margin-left:12px; }

.menu-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.menu-burger span{
  width:22px; height:2px; background:var(--ink); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-burger.is-open span:nth-child(2){ opacity:0; }
.menu-burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:991px){
  .nav-menu{
    position:fixed;
    inset:96px 20px auto 20px;
    background:var(--white);
    border-radius:var(--r-panel);
    box-shadow:var(--shadow-dropdown);
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    gap:4px;
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .nav-menu.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-link{ padding:14px 16px; }
  .nav-menu-cta{ margin:8px 4px 4px; justify-content:center; }
  .menu-burger{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  margin:16px auto 0;
  max-width:var(--container);
  border-radius:24px;
  overflow:hidden;
  min-height:88vh;
  display:flex;
  align-items:flex-end;
}
.hero-media{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center 20%;
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(3,3,15,.35) 0%, rgba(3,3,15,.15) 35%, rgba(3,3,15,.75) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:120px var(--gutter) 96px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
}
.hero-copy{ max-width:640px; }
.hero-copy .eyebrow{ color:var(--white-02); }
.hero-copy .eyebrow::before{ background:var(--white-02); }
.hero-copy h1{ color:var(--white); margin:0 0 20px; }
.hero-copy h1 .accent{ color:var(--gold); }
.hero-copy p{ color:var(--white-02); max-width:52ch; margin:0 0 32px; }
.hero-cta-row{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }

.hero-video-badge{
  flex:none;
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--r-pill);
  padding:10px 22px 10px 10px;
  cursor:pointer;
  transition:background .2s ease;
}
.hero-video-badge:hover{ background:rgba(255,255,255,.2); }
.play-btn{
  flex:none;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--white);
  display:flex; align-items:center; justify-content:center;
}
.play-btn::after{
  content:"";
  width:0; height:0;
  margin-left:3px;
  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:13px solid var(--primary-fill);
}
.hero-video-caption{
  color:var(--white);
  font-size:14px;
  font-weight:500;
  max-width:150px;
  line-height:19px;
}

@media (max-width:767px){
  .hero{ min-height:auto; border-radius:16px; }
  .hero-inner{ flex-direction:column; align-items:flex-start; padding:72px 20px 40px; gap:28px; }
}

/* ---------- Feature strip ---------- */
.feature-strip{ padding:64px 0; }
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.feature-card{
  background:var(--white);
  border:1px solid var(--stroke-2);
  border-radius:var(--r-card);
  padding:28px 24px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.icon-chip{
  flex:none;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--tint);
  display:flex; align-items:center; justify-content:center;
}
.icon-chip svg{ width:22px; height:22px; stroke:var(--gold); }
.feature-card h4{ font-size:18px; line-height:24px; font-weight:600; margin:0 0 6px; }
.feature-card p{ font-size:14px; line-height:21px; color:var(--muted-2); }

@media (max-width:767px){
  .feature-grid{ grid-template-columns:1fr; }
}

/* ---------- Generic section paddings ---------- */
.section{ padding:120px 0; }
.section.tight{ padding:80px 0; }
.section.on-tint{ background:var(--white); }
@media (max-width:991px){
  .section{ padding:80px 0; }
  .section.tight{ padding:56px 0; }
}

/* ---------- Why It Matters ---------- */
.why-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;
  margin-bottom:64px;
}
.why-media{
  border-radius:var(--r-panel);
  overflow:hidden;
  aspect-ratio:4/4.4;
}
.why-media img{ width:100%; height:100%; object-fit:cover; }
.why-copy .section-head{ margin-bottom:24px; max-width:none; }
.why-copy p.lead{ font-size:18px; line-height:28px; color:var(--ink-70); }

.reason-list{
  display:flex;
  flex-direction:column;
  gap:28px;
  margin-top:32px;
}
.reason-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.reason-icon{
  flex:none;
  width:22px; height:22px;
  margin-top:4px;
  stroke:var(--gold);
}
.reason-row h4{ font-size:18px; line-height:25px; font-weight:600; margin:0 0 6px; }
.reason-row p{ font-size:15px; line-height:23px; color:var(--muted-2); }

@media (max-width:991px){
  .why-grid{ grid-template-columns:1fr; gap:32px; }
  .why-media{ aspect-ratio:16/9; order:-1; }
}

/* ---------- Process (Optimo vertical timeline) ---------- */
.process-wrap{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:64px;
  align-items:start;
}
.process-steps{ display:flex; flex-direction:column; }
.process-step{
  position:relative;
  display:flex;
  gap:24px;
  padding-bottom:48px;
}
.process-step:last-child{ padding-bottom:0; }
.process-track{
  flex:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:48px;
}
.process-num{
  width:48px; height:48px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--stroke-2);
  display:flex; align-items:center; justify-content:center;
  font-weight:600;
  color:var(--primary);
  flex:none;
  z-index:1;
}
.process-step.is-active .process-num{ background:var(--primary-fill); border-color:var(--primary-fill); color:var(--white); }
.process-line{
  flex:1;
  width:2px;
  background:var(--stroke-2);
  margin-top:4px;
}
.process-step:last-child .process-line{ display:none; }
.process-card{
  background:var(--white);
  border-radius:var(--r-card);
  padding:32px;
  flex:1;
}
.process-card h3{ font-size:24px; line-height:32px; font-weight:600; margin:0 0 12px; }
.process-card p{ color:var(--muted-2); font-size:16px; line-height:25px; }

.process-media{
  position:sticky;
  top:120px;
  border-radius:var(--r-panel);
  overflow:hidden;
  aspect-ratio:3/3.4;
}
.process-media img{ width:100%; height:100%; object-fit:cover; }

.section-foot-link{ margin-top:40px; }

@media (max-width:991px){
  .process-wrap{ grid-template-columns:1fr; gap:32px; }
  .process-media{ position:static; aspect-ratio:16/9; }
}

/* ---------- Comparison ---------- */
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.compare-card{
  background:var(--white);
  border-radius:var(--r-panel);
  padding:36px 32px;
  border:2px solid var(--stroke-2);
}
.compare-card.is-recommended{
  border-color:var(--gold);
  box-shadow:0 20px 60px rgba(178,130,58,.25);
}
.compare-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:8px;
}
.compare-card h3{ font-size:24px; line-height:31px; font-weight:600; }
.badge{
  flex:none;
  display:inline-flex;
  align-items:center;
  background:var(--tint);
  color:var(--primary);
  font-size:12px;
  font-weight:600;
  letter-spacing:.02em;
  text-transform:uppercase;
  padding:6px 12px;
  border-radius:var(--r-pill);
}
.compare-card.is-recommended .badge{ background:var(--gold); color:var(--white); }
.compare-card > p.compare-intro{ color:var(--muted-2); font-size:15px; line-height:23px; margin-bottom:28px; }

.compare-rows{ display:flex; flex-direction:column; }
.compare-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:16px 0;
  border-top:1px solid var(--stroke-2);
}
.compare-row:first-child{ border-top:none; padding-top:0; }
.compare-row-icon{
  flex:none;
  width:22px; height:22px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.compare-card:not(.is-recommended) .compare-row-icon{ background:var(--gray-3); }
.compare-card:not(.is-recommended) .compare-row-icon svg{ width:10px; height:10px; stroke:var(--bad); }
.compare-card.is-recommended .compare-row-icon{ background:var(--gold-tint); }
.compare-card.is-recommended .compare-row-icon svg{ width:11px; height:11px; stroke:var(--gold); }
.compare-row-text label{
  display:block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:var(--muted-2);
  margin-bottom:4px;
}
.compare-row-text p{ font-size:15px; line-height:22px; font-weight:500; }

@media (max-width:900px){
  .compare-grid{ grid-template-columns:1fr; }
}

/* ---------- Attorney bio ---------- */
.attorney-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.attorney-media{
  position:relative;
  border-radius:var(--r-panel);
  overflow:hidden;
  aspect-ratio:4/5;
}
.attorney-media img{ width:100%; height:100%; object-fit:cover; }
.attorney-copy .eyebrow{ margin-bottom:12px; }
.attorney-copy h3{ font-size:32px; line-height:40px; font-weight:600; margin:0 0 8px; }
.attorney-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 24px;
  color:var(--muted-2);
  font-size:14px;
  margin-bottom:24px;
  padding-bottom:24px;
  border-bottom:1px solid var(--stroke-2);
}
.attorney-copy p.bio{ font-size:17px; line-height:27px; color:var(--ink-70); margin-bottom:24px; }

@media (max-width:900px){
  .attorney-grid{ grid-template-columns:1fr; gap:32px; }
  .attorney-media{ max-width:360px; aspect-ratio:4/5; }
}

/* ---------- Pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  align-items:stretch;
}
.price-card{
  background:var(--white);
  border:2px solid var(--stroke-2);
  border-radius:var(--r-panel);
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  transition:border-color .2s ease, transform .2s ease;
}
.price-card:hover{ transform:translateY(-4px); }
.price-card.is-featured{
  border-color:var(--primary-fill);
  background:var(--ink);
  color:var(--white);
  box-shadow:0 24px 60px rgba(3,3,15,.25);
}
.price-card .badge{ align-self:flex-start; margin-bottom:20px; }
.price-card.is-featured .badge{ background:var(--gold); color:var(--white); }
.price-card h3{ font-size:24px; line-height:30px; font-weight:600; margin-bottom:4px; }
.price-card .plan-kicker{ font-size:14px; font-weight:500; color:var(--gold); margin-bottom:16px; }
.price-card.is-featured .plan-kicker{ color:var(--white-02); }
.price-card .best-for{ font-size:13px; color:var(--muted-2); margin-bottom:12px; }
.price-card.is-featured .best-for{ color:rgba(244,244,242,.7); }
.price-card .plan-desc{ font-size:15px; line-height:23px; color:var(--ink-70); margin-bottom:24px; }
.price-card.is-featured .plan-desc{ color:rgba(244,244,242,.85); }

.price-tiles{
  display:flex;
  gap:12px;
  margin-bottom:24px;
}
.price-tile{
  flex:1;
  background:var(--bg);
  border-radius:var(--r-chip);
  padding:16px;
}
.price-card.is-featured .price-tile{ background:rgba(255,255,255,.08); }
.price-tile .amount{ font-size:26px; font-weight:600; line-height:32px; }
.price-tile .label{ font-size:12px; text-transform:uppercase; letter-spacing:.03em; color:var(--muted-2); }
.price-card.is-featured .price-tile .label{ color:rgba(244,244,242,.7); }

.price-tile.single-price{ margin-bottom:24px; }
.price-tile.single-price .amount{ font-size:32px; }

.plan-features{ display:flex; flex-direction:column; gap:12px; margin-bottom:28px; flex:1; }
.plan-features li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; line-height:21px; }
.plan-features li svg{ flex:none; width:16px; height:16px; margin-top:3px; stroke:var(--gold); }
.price-card.is-featured .plan-features li svg{ stroke:var(--white); }
.plan-features .trigger-note{
  font-size:13px;
  color:var(--muted-2);
  margin:-4px 0 4px;
}

.price-card .btn{ justify-content:center; align-self:stretch; }
.price-card.is-featured .btn{ background:var(--white); color:var(--ink); }
.price-card.is-featured .btn:hover{ background:var(--white-02); }

@media (max-width:991px){
  .pricing-grid{ grid-template-columns:1fr; }
  .price-card.is-featured{ order:-1; }
}

/* ---------- Flat fee comparison ---------- */
.flatfee-intro{ max-width:820px; margin:0 0 56px; font-size:18px; line-height:28px; color:var(--ink-70); }
.flatfee-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-bottom:48px;
}
.flatfee-col{
  border-radius:var(--r-panel);
  padding:32px;
}
.flatfee-col.bad{ background:var(--white); border:1px solid var(--stroke-2); }
.flatfee-col.good{ background:var(--ink); color:var(--white); }
.flatfee-col h4{ font-size:18px; font-weight:600; margin-bottom:20px; }
.flatfee-col ul{ display:flex; flex-direction:column; gap:14px; }
.flatfee-col li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; line-height:22px; }
.flatfee-col li svg{ flex:none; width:16px; height:16px; margin-top:3px; }
.flatfee-col.bad li svg{ stroke:var(--bad); }
.flatfee-col.good li svg{ stroke:var(--white); }

.flatfee-quote{
  background:var(--tint);
  border-radius:var(--r-panel);
  padding:40px;
  margin-bottom:32px;
}
.flatfee-quote p{
  font-family:var(--font-accent);
  font-weight:600;
  font-size:26px;
  line-height:36px;
  color:var(--ink);
}
.flatfee-note{ font-size:15px; line-height:24px; color:var(--muted-2); max-width:900px; }
.flatfee-note a{ color:var(--primary); border-bottom:1px solid currentColor; }

@media (max-width:900px){
  .flatfee-grid{ grid-template-columns:1fr; }
  .flatfee-quote p{ font-size:21px; line-height:30px; }
}

/* ---------- Discovery CTA band ---------- */
.discovery-band{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  background:var(--ink);
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:stretch;
}
.discovery-copy{
  padding:72px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.discovery-copy h2{ color:var(--white); margin-bottom:20px; }
.discovery-copy p{ color:var(--white-02); font-size:17px; line-height:27px; margin-bottom:32px; max-width:52ch; }
.discovery-media{ position:relative; min-height:280px; }
.discovery-media img{ width:100%; height:100%; object-fit:cover; opacity:.85; }
.discovery-media::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, var(--ink) 0%, rgba(3,3,15,0) 30%);
}

@media (max-width:900px){
  .discovery-band{ grid-template-columns:1fr; }
  .discovery-copy{ padding:48px 32px; }
  .discovery-media{ min-height:220px; order:-1; }
  .discovery-media::before{ background:linear-gradient(0deg, var(--ink) 0%, rgba(3,3,15,0) 40%); }
}

/* ---------- FAQ ---------- */
.faq-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.faq-list{ display:flex; flex-direction:column; }
.faq-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  border-top:1px solid var(--stroke-2);
  font-size:18px;
  font-weight:500;
  transition:color .2s ease;
}
.faq-list a.faq-row:hover{ color:var(--primary); }
.faq-row:first-child{ border-top:none; }
.faq-row svg{ flex:none; width:18px; height:18px; }
.faq-more{ margin-top:28px; }

.advisor-callout{
  background:var(--white);
  border:1px solid var(--stroke-2);
  border-radius:var(--r-panel);
  padding:32px;
  margin-top:12px;
}
.advisor-callout h4{ font-size:20px; font-weight:600; margin-bottom:12px; }

.faq-media{
  border-radius:var(--r-panel);
  overflow:hidden;
  aspect-ratio:4/5;
}
.faq-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){
  .faq-wrap{ grid-template-columns:1fr; gap:32px; }
  .faq-media{ display:none; }
}

/* ---------- Resources ---------- */
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.resource-card{
  background:var(--white);
  border-radius:var(--r-card);
  overflow:hidden;
  border:1px solid var(--stroke-2);
  transition:transform .2s ease, box-shadow .2s ease;
}
.resource-card:hover{ transform:translateY(-4px); box-shadow:0 20px 40px rgba(3,3,15,.08); }
.resource-media{ aspect-ratio:4/3; overflow:hidden; }
.resource-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.resource-card:hover .resource-media img{ transform:scale(1.05); }
.resource-body{ padding:24px; }
.resource-body h4{ font-size:20px; font-weight:600; margin-bottom:8px; }
.resource-body p{ font-size:14px; color:var(--muted-2); margin-bottom:18px; }
.resource-body .text-link{ font-size:14px; }

@media (max-width:900px){
  .resource-grid{ grid-template-columns:1fr; }
}

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; }
.final-cta .section-head{ margin-left:auto; margin-right:auto; }
.final-cta p{ font-size:18px; color:var(--ink-70); max-width:56ch; margin:0 auto 36px; }
.final-cta-row{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--gray-3);
  padding:72px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1.1fr 2fr;
  gap:56px;
  padding-bottom:56px;
}
.footer-brand .logo-brand{ margin-bottom:20px; }
.footer-brand p{ font-size:15px; line-height:23px; color:var(--muted-2); max-width:38ch; }

.footer-cols{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
}
.footer-col h5{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--muted-2);
  margin-bottom:18px;
  font-weight:600;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col p{ font-size:15px; color:var(--ink); }
.footer-col a:hover{ color:var(--primary); }
.footer-col p.addr{ color:var(--muted-2); line-height:22px; }

.footer-bottom{
  border-top:1px solid rgba(3,3,15,.12);
  padding:28px 0;
}
.footer-firmline{
  font-size:13px;
  color:var(--muted-2);
  margin-bottom:18px;
  line-height:20px;
}
.footer-disclaimer{
  font-size:12px;
  line-height:19px;
  color:var(--muted-2);
  max-width:1180px;
  margin-bottom:24px;
}
.footer-legal-row{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted-2);
}
.footer-legal-row a:hover{ color:var(--primary); }
.footer-legal-row .dot{
  width:4px; height:4px; border-radius:50%;
  background:currentColor; opacity:.5;
}

@media (max-width:900px){
  .footer-top{ grid-template-columns:1fr; gap:32px; }
  .footer-cols{ grid-template-columns:1fr 1fr; }
}
@media (max-width:479px){
  .footer-cols{ grid-template-columns:1fr; }
}

/* ---------- Reveal-on-scroll (progressive enhancement only —
   content is visible by default; JS opts elements into the animation
   so a slow/blocked script never hides content) ---------- */
.reveal{ opacity:1; transform:none; }
html.js .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- Utility ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .grid-2{ grid-template-columns:1fr; } }
