/* ==========================================================================
   Online Trust Attorney — Frivalea option
   Design system ported 1:1 from the Frivalea Finance Webflow template: warm
   stone/taupe neutrals (#f8f8f8 ground, #262626 ink, #c7a585 brand accent),
   an elegant thin-stroke serif (Gloock) for headings against Inter body
   copy, flat/minimal chrome — hairline 1px dividers standing in for shadows,
   sharp 0-4px UI radius contrasted with fully round pill/circle accents,
   quick snappy .2s color/background transitions (no heavy motion), and the
   template's signature ornamental diamond divider between sections.
   Content and section order follow the OTA content brief.
   ========================================================================== */

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

:root{
  /* --- Frivalea color tokens --- */
  --bg:#f8f8f8;
  --surface-1:#f2f2f2;
  --surface-2:#e3e3e3;
  --ink:#0a1a2e;
  --muted:#7f7f7f;
  --muted-2:#b3b3b3;
  --border:transparent;
  --border-soft:transparent;
  --white:#ffffff;

  --accent:#b2823a;
  --accent-dark:#976e31;
  --accent-tint:rgba(178,130,58,.16);

  --good:#7a8a68;
  --good-tint:rgba(122,138,104,.14);
  --bad:#a85b4c;
  --bad-tint:rgba(168,91,76,.12);

  /* --- radii: flat/sharp UI, fully round accents --- */
  --r-ui:3px;
  --r-chip:4px;
  --r-image:6px;
  --r-pill:100px;

  /* --- shadows: hairline, not blur --- */
  --line-1:0 1px 0 0 var(--border);
  --shadow-hover:0 1px 3px rgba(38,38,38,.1);
  --shadow-card:0 0 0 1px var(--border-soft);

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

  /* --- fonts --- */
  --font-heading:'Gloock', Georgia, 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); }
section{ position:relative; }
[id]{ scroll-margin-top:96px; }

/* ---------- Typography scale (Frivalea) ---------- */
.h1{ font-family:var(--font-heading); font-size:64px; line-height:1.05; font-weight:400; }
.h2{ font-family:var(--font-heading); font-size:40px; line-height:1.15; font-weight:400; }
.h3{ font-family:var(--font-heading); font-size:28px; line-height:1.25; font-weight:400; }
.h4{ font-family:var(--font-body); font-size:20px; line-height:1.4; font-weight:600; }
.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-dark); }

@media (max-width:991px){
  .h1{ font-size:44px; }
  .h2{ font-size:32px; }
  .h3{ font-size:23px; }
}
@media (max-width:479px){ .h1{ font-size:36px; } .h2{ font-size:27px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--accent-dark);
  margin:0 0 18px;
}
.eyebrow::before{ content:""; width:7px; height:7px; border-radius:50%; 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; }

/* ---------- Signature motif: ornamental diamond divider ---------- */
.divider{ display:flex; align-items:center; justify-content:center; gap:14px; padding:56px 0; }
.divider::before, .divider::after{ content:""; height:1px; width:100%; max-width:220px; background:var(--border); }
.divider-mark{ flex:none; width:9px; height:9px; background:var(--accent); transform:rotate(45deg); }

/* ---------- Buttons (Frivalea flat, minimal) ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:12px;
  background:var(--accent);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:15px; font-weight:500;
  padding:15px 24px;
  border-radius:var(--r-ui);
  border:1px solid var(--accent);
  white-space:nowrap;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ background:var(--ink); border-color:var(--ink); color:var(--white); }
.btn .btn-icon{ display:flex; transition:transform .2s ease; }
.btn .btn-icon svg{ width:15px; height:15px; }
.btn:hover .btn-icon{ transform:translateX(3px); }

.btn-secondary{ background:var(--white); color:var(--ink); border-color:var(--border); }
.btn-secondary:hover{ background:var(--surface-1); border-color:var(--accent-dark); color:var(--ink); }

.btn-on-dark{ background:var(--white); color:var(--ink); border-color:var(--white); }
.btn-on-dark:hover{ background:var(--accent-tint); border-color:var(--white); color:var(--ink); }

.btn.small{ padding:11px 18px; font-size:13px; gap:8px; }

.text-link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:500; font-size:15px; color:var(--ink);
  box-shadow:var(--line-1);
  padding-bottom:3px;
  transition:color .2s ease, box-shadow .2s ease, gap .2s ease;
}
.text-link:hover{ color:var(--accent-dark); box-shadow:0 1px 0 0 var(--accent-dark); gap:12px; }
.text-link svg{ width:15px; height:15px; flex:none; }
.text-link.on-dark{ color:var(--white); box-shadow:0 1px 0 0 var(--white-035); }

/* ---------- Top utility bar ---------- */
.topbar{ background:var(--ink); color:rgba(255,255,255,.8); }
.topbar .container{ display:flex; align-items:center; justify-content:space-between; gap:28px; padding-top:0; padding-bottom:0; font-size:13px; }
.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; }
.topbar-contact{ display:flex; align-items:center; gap:28px; padding-top:9px; padding-bottom:9px; flex-wrap:wrap; }
.topbar-cta{ margin:8px 0; padding:8px 16px; font-size:12px; gap:6px; flex:none; }
.topbar-cta .btn-icon svg{ width:12px; height:12px; }

@media (max-width:560px){ .topbar .container{ flex-wrap:wrap; justify-content:center; } .topbar-contact{ justify-content:center; gap:16px; } }

/* ---------- Nav ---------- */
.nav-wrap{ position:sticky; top:0; z-index:60; background:var(--bg); border-bottom:1px solid var(--border); }
.navbar{ max-width:var(--container); margin:0 auto; display:flex; align-items:center; justify-content:space-between; padding:22px var(--gutter); }
.logo-brand{ display:flex; align-items:center; gap:10px; flex:none; }
.logo-brand svg{ width:32px; height:32px; }
.logo-brand .brand-name{ font-family:var(--font-heading); font-weight:400; font-size:17px; line-height:20px; color:var(--ink); }
.logo-brand .brand-name small{ display:block; font-family:var(--font-body); font-weight:400; font-size:11px; color:var(--muted); }

.nav-menu{ display:flex; align-items:center; }
.nav-link{ font-size:15px; font-weight:500; color:var(--muted); padding:10px 16px; transition:color .2s ease; }
.nav-link:hover{ color:var(--accent-dark); }

.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:78px 20px auto 20px;
    background:var(--white); border:1px solid var(--border);
    flex-direction:column; align-items:stretch; padding:10px; gap:0;
    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:16px 12px; border-right:none; border-bottom:1px solid var(--border); }
  .nav-link:last-of-type{ border-bottom:none; }
  .menu-burger{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{ padding:64px 0 0; }
.hero-grid{ display:grid; grid-template-columns:1fr; gap:32px; text-align:center; max-width:900px; margin:0 auto; }
.hero-copy .eyebrow{ justify-content:center; }
.hero-copy h1{ margin:0 0 24px; }
.hero-copy p{ max-width:56ch; margin:0 auto 36px; }
.hero-cta-row{ display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap; }

.hero-media-frame{ position:relative; margin-top:56px; border-radius:var(--r-image); overflow:hidden; box-shadow:var(--shadow-card); aspect-ratio:16/8; }
.hero-media-frame img{ width:100%; height:100%; object-fit:cover; object-position:center 18%; }

.hero-video-badge{
  position:absolute; left:32px; bottom:32px; z-index:2;
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,.94);
  border-radius:var(--r-pill);
  padding:8px 22px 8px 8px;
  box-shadow:var(--shadow-hover);
  cursor:pointer;
  transition:transform .2s ease;
}
.hero-video-badge:hover{ transform:translateY(-2px); }
.play-btn{ flex:none; width:44px; height:44px; border-radius:50%; background:var(--ink); display:flex; align-items:center; justify-content:center; }
.play-btn::after{ content:""; width:0; height:0; margin-left:3px; border-top:7px solid transparent; border-bottom:7px solid transparent; border-left:11px solid var(--white); }
.hero-video-caption{ color:var(--ink); font-size:13px; font-weight:600; max-width:140px; line-height:1.3; text-align:left; }

@media (max-width:767px){ .hero-media-frame{ aspect-ratio:4/3; } }

/* ---------- Feature strip ---------- */
.feature-strip{ padding:80px 0 40px; }
.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:40px; }
.feature-card{ display:flex; gap:18px; align-items:flex-start; min-width:0; }
.icon-chip{ flex:none; width:48px; height:48px; border-radius:50%; background:var(--accent-tint); display:flex; align-items:center; justify-content:center; }
.icon-chip svg{ width:20px; height:20px; stroke:var(--accent-dark); }
.feature-card h4{ margin:0 0 6px; }
.feature-card p{ font-size:14px; line-height:1.6; color:var(--muted); }

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

/* ---------- Generic section rhythm ---------- */
.section{ padding:112px 0; }
.section.tight{ padding:80px 0; }
@media (max-width:991px){ .section{ padding:76px 0; } .section.tight{ padding:52px 0; } }

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

.reason-grid{ display:flex; flex-direction:column; margin-top:32px; border-top:1px solid var(--border); }
.reason-card{ padding:28px 0; border-top:1px solid var(--border); }
.reason-card:first-child{ padding-top:28px; border-top:none; }
.reason-head{ display:flex; align-items:center; gap:14px; margin-bottom:12px; }
.reason-head .icon-chip{ width:32px; height:32px; }
.reason-head .icon-chip svg{ width:15px; height:15px; }
.reason-card h4{ margin:0; }
.reason-card 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:44px; }
.process-num{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-heading); font-weight:400; font-size:16px;
  background:var(--surface-1); color:var(--muted); border:1px solid var(--border);
}
.process-step.is-active .process-num{ background:var(--accent); color:var(--white); 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:var(--r-image); overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-card); }
.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:32px; }
.compare-card{ padding:40px; display:flex; flex-direction:column; box-shadow:var(--shadow-card); min-width:0; }
.compare-card.is-recommended{ background:var(--surface-1); }
.compare-card-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; flex-wrap:wrap; }
.compare-card-head h3{ font-size:23px; overflow-wrap:break-word; }
.badge{
  display:inline-flex; align-items:center; font-family:var(--font-body);
  font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--white); background:var(--accent-dark); 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); }
.compare-rows .compare-row:first-child{ padding-top:0; border-top:none; }
.compare-row-icon{ flex:none; width:24px; height:24px; 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:13px; height:13px; }
.compare-row-text label{ display:block; font-weight:600; font-size:14px; 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; gap:24px; } }

/* ---------- Your Attorney ---------- */
.attorney-grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:center; }
.attorney-media{ border-radius:var(--r-image); overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-card); }
.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:28px; }
.price-card{
  background:var(--white); box-shadow:var(--shadow-card);
  padding:36px 32px 44px; display:flex; flex-direction:column;
  transition:background-color .2s ease; min-width:0;
}
.price-card:hover{ background:var(--surface-1); }
.price-card.is-featured{ box-shadow:none; background:var(--ink); color:var(--white); }
.price-card.is-featured:hover{ background:#152b47; }
.price-card .badge{ align-self:flex-start; margin-bottom:22px; }
.price-card.is-featured .badge{ background:var(--accent); color:var(--ink); }
.price-card h3{ font-size:24px; margin-bottom:6px; }
.price-card .plan-kicker{ font-size:14px; font-weight:500; color:var(--accent-dark); margin-bottom:16px; }
.price-card.is-featured .plan-kicker{ color:var(--accent); }
.price-card .best-for{ font-size:13px; color:var(--muted); margin-bottom:12px; }
.price-card.is-featured .best-for{ color:rgba(255,255,255,.6); }
.price-card .plan-desc{ font-size:15px; line-height:1.6; color:var(--muted); margin-bottom:26px; }
.price-card.is-featured .plan-desc{ color:rgba(255,255,255,.78); }
.price-tiles{ display:flex; gap:1px; margin-bottom:26px; background:var(--border); }
.price-card.is-featured .price-tiles{ background:rgba(255,255,255,.15); }
.price-tile{ flex:1; background:var(--surface-1); 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:400; font-size:25px; color:var(--ink); }
.price-card.is-featured .price-tile .amount{ color:var(--white); }
.price-tile .label{ font-size:12px; color:var(--muted); margin-top:2px; }
.price-card.is-featured .price-tile .label{ color:rgba(255,255,255,.6); }
.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); }
.price-card.is-featured .plan-features li{ color:rgba(255,255,255,.78); }
.plan-features li svg{ flex:none; width:15px; height:15px; stroke:var(--accent-dark); margin-top:2px; }
.price-card.is-featured .plan-features li svg{ stroke:var(--accent); }
.plan-features.trigger-note{ font-size:13px; color:var(--muted); font-style:italic; }
.price-card .btn{ justify-content:center; align-self:stretch; }
.price-card.is-featured .btn{ background:var(--accent); border-color:var(--accent); color:var(--ink); }
.price-card.is-featured .btn:hover{ background:var(--white); border-color:var(--white); }

@media (max-width:991px){ .pricing-grid{ grid-template-columns:1fr; gap:24px; } .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:32px; margin-bottom:56px; }
.flatfee-col{ padding:36px; min-width:0; }
.flatfee-col.bad{ box-shadow:var(--shadow-card); }
.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:15px; height:15px; margin-top:3px; }
.flatfee-col.bad li svg{ stroke:var(--bad); }
.flatfee-col.good{ background:var(--ink); }
.flatfee-col.good h4{ color:var(--white); }
.flatfee-col.good li{ color:rgba(255,255,255,.78); }
.flatfee-col.good li svg{ stroke:var(--good); }
.flatfee-quote{ margin-bottom:32px; }
.flatfee-quote p{ font-family:var(--font-heading); font-size:24px; font-weight:400; color:var(--ink); max-width:34ch; }
.flatfee-note{ font-size:14px; color:var(--muted); max-width:74ch; line-height:1.6; }
.flatfee-note a{ color:var(--accent-dark); box-shadow:0 1px 0 0 var(--accent-dark); }

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

/* ---------- Discovery CTA band ---------- */
.discovery-band{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; align-items:stretch; background:var(--ink); }
.discovery-copy{ padding:64px; display:flex; flex-direction:column; justify-content:center; gap:20px; }
.discovery-copy h2{ color:var(--white); }
.discovery-copy p{ color:rgba(255,255,255,.72); 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);
  font-family:var(--font-heading); font-weight:400; font-size:19px; color:var(--ink);
  transition:color .2s ease, padding-left .2s ease;
}
.faq-row svg{ flex:none; width:15px; height:15px; stroke:var(--accent-dark); transition:transform .2s ease; }
.faq-row:hover{ color:var(--accent-dark); padding-left:10px; }
.faq-row:hover svg{ transform:translateX(4px); }
.faq-more{ margin-top:28px; }
.advisor-callout{ margin-top:48px; padding:28px; background:var(--surface-1); }
.advisor-callout h4{ margin-bottom:14px; }
.faq-media{ border-radius:var(--r-image); overflow:hidden; aspect-ratio:1/1; box-shadow:var(--shadow-card); }
.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 ---------- */
.resource-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.resource-card{ display:flex; flex-direction:column; box-shadow:var(--shadow-card); transition:background-color .2s ease; min-width:0; }
.resource-card:hover{ background:var(--surface-1); }
.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:26px; display:flex; flex-direction:column; gap:10px; }
.resource-body p{ color:var(--muted); font-size:14px; }
.resource-body .text-link{ box-shadow:none; padding-bottom:0; }
.resource-body .text-link:hover{ box-shadow:none; }

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

/* ---------- 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(--ink); color:rgba(255,255,255,.68); padding-top:80px; }
.footer-top{ display:grid; grid-template-columns:1.2fr 2fr; gap:64px; padding-bottom:56px; }
.footer-brand .logo-brand .brand-name{ color:var(--white); }
.footer-brand .logo-brand .brand-name small{ color:rgba(255,255,255,.55); }
.footer-brand p{ margin-top:20px; color:rgba(255,255,255,.6); 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-size:13px; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.48); margin-bottom:20px; font-weight:600; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:15px; color:rgba(255,255,255,.82); transition:color .2s ease; }
.footer-col a:hover{ color:var(--accent); }
.footer-col .addr{ font-size:15px; color:rgba(255,255,255,.82); line-height:1.5; }

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

@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(20px); transition:opacity .5s ease, transform .5s ease; }
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); }
