/* ==========================================================================
   Online Trust Attorney — Avento option
   Design system: near-black plum ground (#13111d) with a slightly lighter
   alt surface (#151423) and a bluer card surface (#201e30), light-gray body
   copy (#bfbfbf), and the Jurry gold pairing in place of the old cream ink —
   Gold Soft (#e0b96c) for headings/text, Gold (#b2823a) for interactive
   accents/borders (see jurry-colors.md). The display H1 stays quiet — large,
   sentence-case, tightly tracked — while every other heading, the eyebrow
   labels, nav links, and buttons shout in small tracked uppercase
   (Founders Grotesk substitute: Space Grotesk; Inter for body/labels).
   Avento's real signature is FLAT, not boxy: full-bleed sharp-cornered
   photography (no rounded frames), rectangular buttons with a curtain-wipe
   hover, and hairline 1px dividers used in place of card borders for list
   rows. All cards are square-cornered (no radius) per direct request — even
   pricing/comparison panels, which the real Avento template rounds but this
   build keeps sharp. Motion runs on an ease-out-cubic (.215,.61,.355,1)
   curve. Content and section order follow the OTA content brief.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg:#13111d;
  --surface-1:#151423;
  --surface-2:#201e30;
  --surface-3:#282539;
  --ink:#c9b083;
  --muted:#bfbfbf;
  --white:#ffffff;
  --accent:#9c7a4d;
  --accent-2:#7a5f3c;
  --accent-tint:rgba(201,176,131,.14);
  --border:rgba(201,176,131,.2);
  --border-soft:rgba(201,176,131,.12);
  --good:#9c7a4d;
  --good-tint:rgba(201,176,131,.14);
  --bad:#c9684f;
  --bad-tint:rgba(201,104,79,.16);

  --r-chip:0px;
  --r-card:0px;
  --r-image:0px;
  --r-pill:100px;

  --shadow-card:0 8px 60px rgba(0,0,0,.28);
  --shadow-hero:none;
  --shadow-ambient:0 20px 100px rgba(0,0,0,.3);

  --container:1320px;
  --container-large:1630px;
  --gutter:24px;

  --ease-avento:cubic-bezier(.215,.61,.355,1);

  --font-heading:'Space Grotesk', Arial, sans-serif;
  --font-body:'Inter', Arial, sans-serif;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  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); }
.container-large{ max-width:var(--container-large); margin:0 auto; padding:0 var(--gutter); }
section{ position:relative; }
[id]{ scroll-margin-top:96px; }

/* ---------- Typography scale (Avento — uppercase grotesque headings) ---------- */
.h1{ font-family:var(--font-heading); font-size:64px; line-height:1.08; font-weight:500; letter-spacing:-1.4px; text-transform:none; }
.h2{ font-family:var(--font-heading); font-size:45px; line-height:1.15; font-weight:500; letter-spacing:0; text-transform:uppercase; }
.h3{ font-family:var(--font-heading); font-size:30px; line-height:1.33; font-weight:400; letter-spacing:0; text-transform:uppercase; }
.h4{ font-family:var(--font-heading); font-size:25px; line-height:1.4; font-weight:400; letter-spacing:0; text-transform:uppercase; }
.h5{ font-family:var(--font-heading); font-size:20px; line-height:1.5; font-weight:400; letter-spacing:0; text-transform:uppercase; }
.lead{ font-size:18px; line-height:1.6; color:var(--muted); }
.body-s{ font-size:14px; line-height:1.5; color:var(--muted); }
.text-muted{ color:var(--muted); }
.accent{ color:var(--accent); }

@media (max-width:991px){
  .h1{ font-size:42px; }
  .h2{ font-size:32px; }
  .h3{ font-size:24px; }
}
@media (max-width:479px){ .h1{ font-size:33px; } .h2{ font-size:26px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  font-size:14px; font-weight:500; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--accent);
  margin:0 0 18px;
}
.eyebrow::before{ content:""; width:7px; height:7px; transform:rotate(45deg); background:var(--accent); flex:none; }

.section-head{ max-width:680px; margin:0 0 56px; }
.section-head h2{ margin:0 0 18px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.wide{ max-width:840px; }

/* ---------- Buttons (Avento rectangular, underline-draw hover) ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:16px;
  background:var(--accent);
  color:var(--bg);
  font-family:var(--font-heading);
  font-size:15px; font-weight:500; letter-spacing:.8px; text-transform:uppercase;
  padding:18px 22px 15px;
  border-radius:0;
  border:none;
  overflow:hidden;
  white-space:nowrap;
  isolation:isolate;
}
.btn::before{
  content:"";
  position:absolute; inset:0;
  background:var(--ink);
  transform:translateY(101%);
  transition:transform .4s var(--ease-avento);
  z-index:-1;
}
.btn:hover::before{ transform:translateY(0); }
.btn > *{ position:relative; z-index:1; }
.btn .btn-icon{ flex:none; width:34px; height:34px; border-radius:50%; background:var(--bg); display:flex; align-items:center; justify-content:center; transition:transform .35s var(--ease-avento); }
.btn .btn-icon svg{ width:14px; height:14px; color:var(--accent); }
.btn:hover .btn-icon{ transform:rotate(45deg); }

.btn-outline{
  background:transparent; color:var(--ink); border:1px solid var(--border);
}
.btn-outline::before{ background:var(--accent); }
.btn-outline .btn-icon{ background:var(--accent-tint); }
.btn-outline .btn-icon svg{ color:var(--accent); }
.btn-outline:hover{ color:var(--bg); border-color:var(--accent); }
.btn-outline:hover .btn-icon svg{ color:var(--bg); }

.btn.small{ padding:12px 16px 10px; font-size:13px; gap:10px; }
.btn.small .btn-icon{ width:28px; height:28px; }
.btn.small .btn-icon svg{ width:12px; height:12px; }

.text-link{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-heading); font-weight:500; letter-spacing:.4px; text-transform:uppercase; font-size:14px; color:var(--accent);
  position:relative; padding-bottom:6px;
}
.text-link:hover{ color:var(--accent-2); }
.text-link svg{ width:14px; height:14px; flex:none; }

/* ---------- Top utility bar ---------- */
.topbar{ background:var(--surface-1); border-bottom:1px solid var(--border-soft); }
.topbar .container{ display:flex; justify-content:flex-end; gap:28px; padding-top:10px; padding-bottom:10px; font-size:13px; color:var(--muted); }
.topbar a{ display:inline-flex; align-items:center; gap:7px; transition:color .2s ease; }
.topbar a:hover{ color:var(--accent); }
.topbar svg{ width:14px; height:14px; }

/* ---------- Nav (Avento transparent-over-hero) ---------- */
.nav-wrap{ position:sticky; top:0; z-index:60; }
.navbar{
  max-width:var(--container-large);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:28px var(--gutter);
  background:transparent;
  transition:background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.navbar.is-scrolled{ background:rgba(19,17,29,.9); backdrop-filter:blur(14px); box-shadow:var(--shadow-ambient); padding:16px var(--gutter); border-bottom:1px solid var(--border-soft); }
.logo-brand{ display:flex; align-items:center; gap:12px; flex:none; }
.logo-brand svg{ width:34px; height:34px; }
.logo-brand .brand-name{ font-family:var(--font-heading); font-weight:500; font-size:15px; letter-spacing:.4px; text-transform:uppercase; line-height:20px; color:var(--ink); }
.logo-brand .brand-name small{ display:block; font-family:var(--font-body); font-weight:400; letter-spacing:0; text-transform:none; font-size:11px; color:var(--muted); }

.nav-menu{ display:flex; align-items:center; gap:28px; }
.nav-link{ font-size:14px; font-weight:500; letter-spacing:.2px; color:var(--muted); transition:color .3s ease; position:relative; }
.nav-link::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--accent); transition:width .35s var(--ease-avento); }
.nav-link:hover{ color:var(--ink); }
.nav-link:hover::after{ width:100%; }
.nav-menu-cta{ margin-left:8px; }

.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:88px 20px auto 20px;
    background:var(--surface-2); border:1px solid var(--border-soft);
    border-radius:var(--r-card); box-shadow:var(--shadow-ambient);
    flex-direction:column; align-items:stretch; padding:14px; gap:2px;
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:opacity .3s ease, transform .3s ease;
  }
  .nav-menu.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .nav-link{ padding:14px 12px; }
  .nav-link::after{ display:none; }
  .nav-menu-cta{ margin:10px 4px 4px; justify-content:center; }
  .menu-burger{ display:flex; }
}

/* ---------- Hero (full-bleed, no card frame — matches home-three-hero) ---------- */
.hero{ position:relative; }
.hero-frame{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  display:flex; align-items:flex-end;
}
.hero-media{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 22%; }
.hero-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(19,17,29,.35) 0%, rgba(19,17,29,.12) 32%, rgba(19,17,29,.92) 100%); }
.hero-inner{
  position:relative; z-index:2; width:100%;
  padding:0 56px 88px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
}
.hero-copy{ max-width:660px; }
.hero-copy .eyebrow{ color:var(--accent); }
.hero-copy h1{ color:var(--white); margin:0 0 22px; }
.hero-copy p{ color:rgba(255,255,255,.82); max-width:52ch; margin:0 0 32px; font-size:18px; }
.hero-cta-row{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.hero-cta-row .text-link:hover{ color:var(--white); }

.hero-video-badge{
  flex:none; display:flex; align-items:center; gap:18px;
  background:rgba(19,17,29,.35);
  border:1px solid rgba(255,255,255,.25);
  border-radius:0;
  padding:18px 26px 18px 18px;
  cursor:pointer;
  transition:background .3s ease, border-color .3s ease;
}
.hero-video-badge:hover{ background:rgba(19,17,29,.55); border-color:var(--accent); }
.play-btn{ flex:none; width:48px; height:48px; border-radius:50%; background:var(--accent); 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(--bg); }
.hero-video-caption{ color:var(--white); font-size:14px; font-weight:500; max-width:150px; line-height:1.4; }

@media (max-width:767px){
  .hero-frame{ min-height:100vh; }
  .hero-inner{ flex-direction:column; align-items:flex-start; padding:0 24px 48px; gap:28px; }
}

/* ---------- Feature strip (hairline-divided row grid, no cards) ---------- */
.feature-strip{ padding:64px 0; }
.feature-grid{
  display:grid; grid-template-columns:repeat(3, 1fr);
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
}
.feature-card{
  position:relative;
  background:none; border:none; border-radius:0; box-shadow:none;
  padding:40px 32px;
  display:flex; gap:18px; align-items:flex-start;
  transition:background .3s ease;
}
.feature-card:not(:last-child)::after{
  content:""; position:absolute; top:18%; bottom:18%; right:0; width:1px;
  background:var(--border-soft);
}
.feature-card:hover{ background:var(--accent-tint); }
.icon-chip{ flex:none; width:48px; height:48px; border-radius:50%; border:1px solid var(--border); background:none; display:flex; align-items:center; justify-content:center; }
.icon-chip svg{ width:20px; height:20px; stroke:var(--accent); }
.feature-card h4{ margin:0 0 8px; }
.feature-card p{ font-size:14px; line-height:1.6; color:var(--muted); }

@media (max-width:767px){
  .feature-grid{ grid-template-columns:1fr; }
  .feature-card:not(:last-child)::after{ display:none; }
  .feature-card:not(:last-child){ border-bottom:1px solid var(--border-soft); }
}

/* ---------- Generic section rhythm ---------- */
.section{ padding:128px 0; }
.section.tight{ padding:88px 0; }
.section.on-surface{ background:var(--surface-1); }
@media (max-width:991px){ .section{ padding:84px 0; } .section.tight{ padding:56px 0; } }

/* ---------- Why It Matters ---------- */
.why-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:start; }
.why-media{ border-radius:0; overflow:hidden; aspect-ratio:4/5; }
.why-media img{ width:100%; height:100%; object-fit:cover; }
.why-copy .section-head{ margin-bottom:24px; max-width:none; }

.reason-list{ display:flex; flex-direction:column; gap:28px; margin-top:32px; }
.reason-item{ display:flex; gap:16px; align-items:flex-start; }
.reason-item .icon-chip{ margin-top:2px; }
.reason-item-text h4{ margin:0 0 6px; }
.reason-item-text p{ font-size:15px; line-height:1.6; color:var(--muted); }

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

/* ---------- Process ---------- */
.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:26px; padding-bottom:48px; }
.process-step:last-child{ padding-bottom:0; }
.process-track{ flex:none; display:flex; flex-direction:column; align-items:center; width:52px; }
.process-num{
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-heading); font-weight:500; font-size:16px;
  background:var(--surface-2); color:var(--muted);
  border:1px solid var(--border-soft);
}
.process-step.is-active .process-num{ background:var(--accent); color:var(--bg); border-color:var(--accent); }
.process-line{ width:1px; flex:1; background:var(--border); margin-top:10px; }
.process-card h3{ margin:0 0 10px; }
.process-card p{ color:var(--muted); font-size:15px; line-height:1.6; max-width:44ch; }
.process-media{ border-radius:0; overflow:hidden; aspect-ratio:4/5; }
.process-media img{ width:100%; height:100%; object-fit:cover; }
.section-foot-link{ margin-top:8px; display:inline-flex; }

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

/* ---------- Comparison ---------- */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.compare-card{ background:var(--surface-2); border:1px solid var(--border-soft); border-radius:var(--r-card); box-shadow:var(--shadow-card); padding:40px; display:flex; flex-direction:column; }
.compare-card.is-recommended{ background:var(--surface-3); border-color:var(--accent); }
.compare-card-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.compare-card-head h3{ font-size:22px; }
.badge{
  display:inline-flex; align-items:center; font-family:var(--font-heading);
  font-size:12px; font-weight:500; letter-spacing:.6px; text-transform:uppercase;
  color:var(--bg); background:var(--accent); padding:7px 14px; border-radius:var(--r-pill);
  white-space:nowrap;
}
.compare-intro{ color:var(--muted); font-size:15px; line-height:1.6; margin-bottom:28px; }
.compare-rows{ display:flex; flex-direction:column; gap:20px; }
.compare-row{ display:flex; gap:16px; align-items:flex-start; padding-top:20px; border-top:1px solid var(--border-soft); }
.compare-rows .compare-row:first-child{ padding-top:0; border-top:none; }
.compare-row-icon{ flex:none; width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.compare-card:not(.is-recommended) .compare-row-icon{ background:var(--bad-tint); color:var(--bad); }
.compare-card.is-recommended .compare-row-icon{ background:var(--good-tint); color:var(--good); }
.compare-row-icon svg{ width:14px; height:14px; }
.compare-row-text label{ display:block; font-family:var(--font-heading); font-weight:500; letter-spacing:.2px; text-transform:uppercase; font-size:13px; margin-bottom:4px; }
.compare-row-text p{ font-size:14px; color:var(--muted); line-height:1.5; }

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

/* ---------- Your Attorney ---------- */
.attorney-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:center; }
.attorney-media{ border-radius:0; overflow:hidden; aspect-ratio:4/5; }
.attorney-media img{ width:100%; height:100%; object-fit:cover; }
.attorney-meta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:14px; margin-bottom:22px; }
.attorney-copy .bio{ color:var(--muted); font-size:16px; line-height:1.7; margin-bottom:24px; max-width:56ch; }

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

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.price-card{
  background:var(--surface-2);
  border:none;
  border-radius:var(--r-card);
  box-shadow:var(--shadow-card);
  padding:36px 32px 44px;
  display:flex; flex-direction:column;
  transition:transform .3s var(--ease-avento);
}
.price-card:hover{ transform:translateY(-4px); }
.price-card.is-featured{ background:var(--surface-3); border:1px solid var(--accent); padding-bottom:55px; }
.price-card .badge{ align-self:flex-start; margin-bottom:22px; }
.price-card.is-featured .badge{ background:var(--ink); color:var(--bg); }
.price-card h3{ font-size:23px; margin-bottom:6px; }
.price-card .plan-kicker{ font-size:13px; font-weight:500; letter-spacing:.4px; text-transform:uppercase; color:var(--accent); margin-bottom:16px; font-family:var(--font-heading); }
.price-card .best-for{ font-size:13px; color:var(--muted); margin-bottom:12px; }
.price-card .plan-desc{ font-size:15px; line-height:1.6; color:var(--muted); margin-bottom:26px; }
.price-tiles{ display:flex; gap:12px; margin-bottom:26px; }
.price-tile{ flex:1; background:var(--surface-2); border-radius:var(--r-chip); padding:16px; text-align:center; }
.price-card.is-featured .price-tile{ background:rgba(255,255,255,.06); }
.price-tile.single-price{ flex:none; padding:16px 28px; }
.price-tile .amount{ font-family:var(--font-heading); font-weight:500; font-size:24px; color:var(--ink); }
.price-tile .label{ font-size:12px; color:var(--muted); margin-top:2px; text-transform:uppercase; letter-spacing:.4px; }
.plan-features{ display:flex; flex-direction:column; gap:14px; margin-bottom:30px; flex:1; }
.plan-features li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; line-height:1.5; color:var(--muted); }
.plan-features li svg{ flex:none; width:16px; height:16px; stroke:var(--accent); margin-top:2px; }
.plan-features.trigger-note{ font-size:13px; color:var(--muted); font-style:italic; }
.price-card .btn{ justify-content:center; align-self:stretch; }

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

/* ---------- Flat Fee Means Flat Fee ---------- */
.flatfee-intro{ max-width:760px; font-size:18px; line-height:1.6; color:var(--muted); margin-bottom:56px; }
.flatfee-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:56px; }
.flatfee-col{ background:var(--surface-1); border:1px solid var(--border-soft); border-radius:var(--r-card); padding:36px; }
.flatfee-col h4{ margin-bottom:22px; }
.flatfee-col ul{ display:flex; flex-direction:column; gap:16px; }
.flatfee-col li{ display:flex; align-items:flex-start; gap:12px; font-size:15px; line-height:1.5; color:var(--muted); }
.flatfee-col li svg{ flex:none; width:16px; height:16px; margin-top:3px; }
.flatfee-col.bad li svg{ stroke:var(--bad); }
.flatfee-col.good{ background:var(--surface-2); border-color:var(--accent); }
.flatfee-col.good li svg{ stroke:var(--good); }
.flatfee-note{ font-size:14px; color:var(--muted); max-width:74ch; line-height:1.6; }
.flatfee-note a{ color:var(--accent); border-bottom:1px solid var(--accent); }

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

/* ---------- The Promise (quote band) — full-width, testimonial-prominent ---------- */
.quote-band{
  padding:140px 0;
  border-top:1px solid var(--border-soft);
  border-bottom:1px solid var(--border-soft);
}
.quote-banner{ max-width:960px; margin:0 auto; text-align:center; }
.quote-mark{
  display:block; font-family:var(--font-heading); font-size:96px; line-height:1;
  color:var(--accent); margin-bottom:8px;
}
.quote-banner p{
  font-family:var(--font-heading); font-weight:400;
  font-size:40px; line-height:1.32; letter-spacing:.2px;
  text-transform:uppercase; color:var(--ink);
}

@media (max-width:767px){
  .quote-band{ padding:88px 0; }
  .quote-mark{ font-size:64px; }
  .quote-banner p{ font-size:26px; }
}

/* ---------- Discovery CTA band ---------- */
.discovery-band{
  display:grid; grid-template-columns:1.1fr .9fr; gap:0; align-items:stretch;
  background:var(--surface-1); border:1px solid var(--border-soft);
  border-radius:0; overflow:hidden;
}
.discovery-copy{ padding:64px; display:flex; flex-direction:column; justify-content:center; gap:20px; }
.discovery-copy p{ color:var(--muted); font-size:16px; line-height:1.7; max-width:52ch; }
.discovery-media{ min-height:320px; }
.discovery-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){
  .discovery-band{ grid-template-columns:1fr; }
  .discovery-copy{ padding:40px 28px; }
  .discovery-media{ order:-1; min-height:220px; }
}

/* ---------- FAQ ---------- */
.faq-wrap{ display:grid; grid-template-columns:1.15fr .85fr; 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:24px 4px; border-bottom:1px solid var(--border-soft);
  font-family:var(--font-heading); font-weight:400; text-transform:uppercase; letter-spacing:.2px; font-size:17px; color:var(--ink);
  transition:color .3s ease, padding-left .3s var(--ease-avento);
}
.faq-row svg{ flex:none; width:16px; height:16px; stroke:var(--accent); transition:transform .35s var(--ease-avento); }
.faq-row:hover{ color:var(--accent); padding-left:12px; }
.faq-row:hover svg{ transform:translateX(4px); }
.faq-more{ margin-top:28px; }
.advisor-callout{
  margin-top:48px; padding:28px; background:var(--surface-1);
  border:1px solid var(--border-soft); border-radius:var(--r-card);
}
.advisor-callout h4{ margin-bottom:14px; }
.faq-media{ border-radius:0; overflow:hidden; aspect-ratio:1/1; }
.faq-media img{ width:100%; height:100%; object-fit:cover; }

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

/* ---------- Resources (flat blog-card style, no boxed card) ---------- */
.resource-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:40px; }
.resource-card{
  display:flex; flex-direction:column;
  border:none; border-radius:0; overflow:visible;
  background:none;
  padding-bottom:32px;
  border-bottom:1px solid var(--border-soft);
  transition:opacity .3s ease;
}
.resource-card:hover{ opacity:.82; }
.resource-media{ aspect-ratio:4/3; overflow:hidden; border-radius:0; margin-bottom:22px; }
.resource-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-avento); }
.resource-card:hover .resource-media img{ transform:scale(1.06); }
.resource-body{ padding:0; display:flex; flex-direction:column; gap:10px; }
.resource-body p{ color:var(--muted); font-size:14px; }

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

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; }
.final-cta p{ color:var(--muted); font-size:18px; max-width:52ch; margin:0 auto 40px; }
.final-cta-row{ display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--surface-1); border-top:1px solid var(--border-soft); padding-top:80px; }
.footer-top{ display:grid; grid-template-columns:1.2fr 2fr; gap:64px; padding-bottom:56px; border-bottom:1px solid var(--border-soft); }
.footer-brand p{ margin-top:20px; color:var(--muted); font-size:15px; line-height:1.6; max-width:42ch; }
.footer-cols{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; }
.footer-col h5{ font-family:var(--font-heading); font-size:13px; letter-spacing:1px; text-transform:uppercase; color:var(--muted); margin-bottom:20px; font-weight:500; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:15px; color:var(--ink); transition:color .2s ease; }
.footer-col a:hover{ color:var(--accent); }
.footer-col .addr{ font-size:15px; color:var(--ink); line-height:1.5; }

.footer-bottom{ padding:36px 0 40px; }
.footer-firmline{ font-size:12px; color:var(--muted); line-height:1.6; margin-bottom:16px; }
.footer-disclaimer{ font-size:11px; color:rgba(191,191,191,.65); line-height:1.6; margin-bottom:20px; }
.footer-legal-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:12px; color:var(--muted); }
.footer-legal-row a{ color:var(--muted); }
.footer-legal-row a:hover{ color:var(--accent); }
.footer-legal-row .dot{ width:3px; height:3px; border-radius:50%; background:var(--border); }

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

/* ---------- Reveal-on-scroll (progressive enhancement only) ---------- */
.reveal{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform:translateY(26px); transition:opacity .6s var(--ease-avento), transform .6s var(--ease-avento); }
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); }
