/* ==========================================================================
   Online Trust Attorney — Warren option
   Design system ported 1:1 from the Warren Webflow template: a minimal,
   generously-spaced editorial look on white, near-navy ink (#0f163e) with a
   warm taupe accent (#a8856b), Roboto throughout, huge tight-tracked display
   type, near-sharp UI (0-3px radius, no pills), hairline 1px borders,
   invert-on-hover outline buttons, soft ambient shadows, and an offset
   accent-frame motif behind imagery. Content and section order follow the
   OTA content brief.
   ========================================================================== */

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

:root{
  --bg:#ffffff;
  --surface:#f5f5f5;
  --surface-2:#fafafa;
  --ink:#0f163e;
  --ink-2:#30395d;
  --muted:#535766;
  --muted-2:#878a94;
  --hint:#afb1b8;
  --border:#dcdde0;
  --border-2:#dddddd;
  --white:#ffffff;

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

  --good:#4f7a5c;
  --good-tint:rgba(79,122,92,.12);
  --bad:#b1493f;
  --bad-tint:rgba(177,73,63,.1);

  --r-ui:3px;
  --r-sharp:0px;
  --r-pill:100px;

  --shadow-soft:0 10px 60px rgba(15,22,62,.06);
  --shadow-strong:0 10px 60px rgba(15,22,62,.14);

  --container:1360px;
  --gutter:48px;

  --ease-warren:cubic-bezier(.22,.61,.36,1);

  --font-heading:'Roboto', Arial, sans-serif;
  --font-body:'Roboto', 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.5;
  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:120px; }

/* ---------- Typography scale (Warren) ---------- */
.h1{ font-size:3.7rem; line-height:1; font-weight:400; letter-spacing:-.075rem; }
.h2{ font-size:3.2rem; line-height:1.15; font-weight:400; letter-spacing:-.09rem; }
.h3{ font-size:2.4rem; line-height:1.15; font-weight:400; letter-spacing:-.03rem; }
.h4{ font-size:1.5rem; line-height:1.25; font-weight:500; }
.h5{ font-size:1.25rem; line-height:1.3; font-weight:500; }
.lead{ font-size:1.25rem; line-height:1.6; letter-spacing:-.025rem; color:var(--muted); }
.body-s{ font-size:.875rem; line-height:1.4; color:var(--muted); }
.text-muted{ color:var(--muted); }
.accent{ color:var(--accent); }

@media (max-width:991px){
  .h1{ font-size:2.6rem; letter-spacing:-.05rem; }
  .h2{ font-size:2.2rem; letter-spacing:-.05rem; }
  .h3{ font-size:1.8rem; }
}
@media (max-width:479px){ .h1{ font-size:2.1rem; } .h2{ font-size:1.8rem; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.8rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent); margin:0 0 20px;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--accent); flex:none; }

.section-head{ max-width:660px; margin:0 0 60px; }
.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:820px; }

/* ---------- Buttons (Warren invert-on-hover outline) ---------- */
.btn{
  position:relative;
  display:inline-flex; align-items:center; gap:14px;
  background:transparent;
  color:var(--ink);
  font-size:1rem; font-weight:500;
  padding:16px 32px;
  border:1px solid var(--border);
  border-radius:var(--r-sharp);
  white-space:nowrap;
  transition:background .3s var(--ease-warren), color .3s var(--ease-warren), border-color .3s var(--ease-warren);
}
.btn:hover{ background:var(--ink); color:var(--white); border-color:var(--ink); }
.btn .btn-icon{ display:flex; transition:transform .3s var(--ease-warren); }
.btn .btn-icon svg{ width:16px; height:16px; }
.btn:hover .btn-icon{ transform:rotate(45deg); }

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

.btn-on-dark{ border-color:rgba(255,255,255,.35); color:var(--white); }
.btn-on-dark:hover{ background:var(--white); color:var(--ink); border-color:var(--white); }

.btn.small{ padding:11px 22px; font-size:.9rem; gap:10px; }

.text-link{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:500; font-size:1rem; color:var(--ink);
  border-bottom:1px solid var(--border);
  padding-bottom:4px;
  transition:color .3s ease, border-color .3s ease, gap .3s var(--ease-warren);
}
.text-link:hover{ color:var(--accent); border-color:var(--accent); gap:14px; }
.text-link svg{ width:15px; height:15px; flex:none; }
.text-link.on-dark{ color:var(--white); border-color:rgba(255,255,255,.4); }
.text-link.on-dark:hover{ color:var(--accent); border-color:var(--accent); }

/* ---------- Top utility bar ---------- */
.topbar{ background:var(--ink); color:rgba(255,255,255,.78); }
.topbar .container{ display:flex; justify-content:flex-end; gap:32px; padding-top:10px; padding-bottom:10px; font-size:.8rem; letter-spacing:.02em; }
.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 (Warren tall, flat, wide-padded) ---------- */
.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:34px var(--gutter);
  transition:padding .3s ease;
}
.navbar.is-scrolled{ padding:20px var(--gutter); }
.logo-brand{ display:flex; align-items:center; gap:12px; flex:none; }
.logo-brand svg{ width:32px; height:32px; }
.logo-brand .brand-name{ font-weight:700; font-size:16px; line-height:20px; color:var(--ink); }
.logo-brand .brand-name small{ display:block; font-weight:400; font-size:11px; color:var(--muted); }

.nav-menu{ display:flex; align-items:center; gap:4px; }
.nav-link{ font-size:.95rem; font-weight:400; color:var(--ink); padding:16px; transition:opacity .2s ease, color .2s ease; }
.nav-link:hover{ opacity:.6; color:var(--accent); }
.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:80px 0 auto 0;
    background:var(--white); border-bottom:1px solid var(--border); box-shadow:var(--shadow-strong);
    flex-direction:column; align-items:stretch; padding:8px var(--gutter) 16px;
    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:16px 4px; border-bottom:1px solid var(--border-2); }
  .nav-menu-cta{ margin:14px 0 4px; justify-content:center; }
  .menu-burger{ display:flex; }
}

/* ---------- Hero (offset accent-frame motif) ---------- */
.hero{ padding:88px 0 120px; }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:64px; align-items:center; }
.hero-copy h1{ margin:0 0 26px; }
.hero-copy p{ max-width:46ch; margin:0 0 40px; }
.hero-cta-row{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }

.hero-media-wrap{ position:relative; padding:22px 22px 0 0; }
.hero-media-wrap::before{ content:""; position:absolute; inset:0 0 -22px 22px; background:var(--accent); z-index:0; }
.hero-media-frame{ position:relative; z-index:1; aspect-ratio:4/5; overflow:hidden; box-shadow:var(--shadow-strong); }
.hero-media-frame img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; }

.hero-video-badge{
  position:absolute; left:0; bottom:-24px; z-index:2;
  display:flex; align-items:center; gap:14px;
  background:var(--white); border:1px solid var(--border);
  padding:10px 22px 10px 10px;
  cursor:pointer;
  transition:border-color .3s ease;
}
.hero-video-badge:hover{ border-color:var(--accent); }
.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:500; max-width:150px; line-height:1.35; }

@media (max-width:900px){
  .hero{ padding:56px 0 72px; }
  .hero-grid{ grid-template-columns:1fr; gap:64px; }
  .hero-media-wrap{ padding:16px 16px 0 0; }
  .hero-media-frame{ aspect-ratio:16/10; }
  .hero-video-badge{ bottom:-20px; }
}

/* ---------- Feature strip ---------- */
.feature-strip{ padding:0 0 100px; }
.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.feature-card{ background:var(--white); padding:40px 32px; display:flex; gap:20px; align-items:flex-start; }
.icon-chip{ flex:none; width:52px; height:52px; border-radius:50%; background:var(--accent-tint); display:flex; align-items:center; justify-content:center; }
.icon-chip svg{ width:22px; height:22px; 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; } }

/* ---------- Generic section rhythm ---------- */
.section{ padding:140px 0; }
.section.tight{ padding:90px 0; }
.section.on-surface{ background:var(--surface); }
@media (max-width:991px){ .section{ padding:88px 0; } .section.tight{ padding:60px 0; } }

/* ---------- Why It Matters ---------- */
.why-grid{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.why-media{ position:relative; padding:18px 18px 0 0; }
.why-media::before{ content:""; position:absolute; inset:0 0 -18px 18px; background:var(--ink-2); z-index:0; }
.why-media-frame{ position:relative; z-index:1; aspect-ratio:4/5; overflow:hidden; }
.why-media-frame 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; margin-top:32px; border:1px solid var(--border); }
.reason-item{ display:flex; gap:16px; align-items:flex-start; padding:28px 24px; border-top:1px solid var(--border); transition:background .3s ease; }
.reason-item:first-child{ border-top:none; }
.reason-item:hover{ background:var(--surface); }
.reason-item .icon-chip{ margin-top:2px; }
.reason-item-text h4{ margin:0 0 8px; }
.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:56px; }
  .why-media-frame{ aspect-ratio:16/9; }
}

/* ---------- 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:28px; padding-bottom:52px; border-bottom:1px solid var(--border); margin-bottom:52px; }
.process-step:last-of-type{ border-bottom:none; margin-bottom:0; padding-bottom:0; }
.process-track{ flex:none; width:56px; }
.process-num{ font-size:1rem; font-weight:700; color:var(--hint); letter-spacing:.05em; }
.process-step.is-active .process-num{ color:var(--accent); }
.process-card h3{ margin:0 0 10px; font-size:1.6rem; }
.process-card p{ color:var(--muted); font-size:15px; line-height:1.6; max-width:44ch; }
.process-media{ position:relative; padding:18px 0 0 18px; }
.process-media::before{ content:""; position:absolute; inset:0 18px -18px 0; background:var(--surface); border:1px solid var(--border); z-index:0; }
.process-media-frame{ position:relative; z-index:1; aspect-ratio:4/5; overflow:hidden; }
.process-media-frame img{ width:100%; height:100%; object-fit:cover; }
.section-foot-link{ margin-top:12px; display:inline-flex; }

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

/* ---------- Comparison ---------- */
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); border:1px solid var(--border); }
.compare-card{ background:var(--white); padding:44px; display:flex; flex-direction:column; }
.compare-card.is-recommended{ background:var(--ink); color:var(--white); }
.compare-card-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px; }
.compare-card-head h3{ font-size:1.5rem; }
.badge{
  display:inline-flex; align-items:center; font-size:.75rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--white); background:var(--accent); padding:8px 16px; white-space:nowrap;
}
.compare-intro{ color:var(--muted); font-size:15px; line-height:1.6; margin-bottom:30px; }
.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-card.is-recommended .compare-row{ border-top-color:rgba(255,255,255,.15); }
.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:rgba(168,133,107,.22); color:var(--accent); }
.compare-row-icon svg{ width:13px; height:13px; }
.compare-row-text label{ display:block; font-weight:700; font-size:14px; margin-bottom:4px; }
.compare-row-text p{ font-size:14px; line-height:1.5; color:var(--muted); }
.compare-card.is-recommended .compare-row-text p{ color:rgba(255,255,255,.65); }

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

/* ---------- Your Attorney ---------- */
.attorney-grid{ display:grid; grid-template-columns:.75fr 1.25fr; gap:72px; align-items:center; }
.attorney-media{ display:flex; justify-content:center; padding-top:0; background:var(--surface); aspect-ratio:4/5; overflow:hidden; }
.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:24px; }
.attorney-copy .bio{ color:var(--muted); font-size:16px; line-height:1.7; margin-bottom:26px; max-width:58ch; }

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

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.price-card{ background:var(--white); padding:40px 36px 48px; display:flex; flex-direction:column; }
.price-card.is-featured{ background:var(--ink); color:var(--white); }
.price-card .badge{ align-self:flex-start; margin-bottom:24px; }
.price-card.is-featured .badge{ background:var(--accent); }
.price-card h3{ font-size:1.5rem; margin-bottom:6px; }
.price-card .plan-kicker{ font-size:14px; font-weight:700; color:var(--accent); margin-bottom:18px; letter-spacing:.02em; }
.price-card .best-for{ font-size:13px; color:var(--muted); margin-bottom:14px; }
.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:28px; }
.price-card.is-featured .plan-desc{ color:rgba(255,255,255,.75); }
.price-tiles{ display:flex; gap:1px; margin-bottom:28px; border:1px solid var(--border); }
.price-card.is-featured .price-tiles{ border-color:rgba(255,255,255,.2); }
.price-tile{ flex:1; padding:18px; text-align:center; background:var(--surface); }
.price-card.is-featured .price-tile{ background:rgba(255,255,255,.06); }
.price-tile.single-price{ flex:none; padding:18px 30px; }
.price-tile .amount{ font-weight:700; font-size:1.5rem; 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,.55); }
.plan-features{ display:flex; flex-direction:column; gap:16px; margin-bottom:32px; 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,.75); }
.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:1.25rem; line-height:1.6; color:var(--muted); margin-bottom:60px; }
.flatfee-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); border:1px solid var(--border); margin-bottom:60px; }
.flatfee-col{ background:var(--white); padding:40px; }
.flatfee-col h4{ margin-bottom:24px; }
.flatfee-col ul{ display:flex; flex-direction:column; gap:18px; }
.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(--ink); color:var(--white); }
.flatfee-col.good li{ color:rgba(255,255,255,.78); }
.flatfee-col.good li svg{ stroke:var(--accent); }
.flatfee-quote{ border-left:2px solid var(--accent); padding-left:32px; margin-bottom:36px; }
.flatfee-quote p{ font-size:1.6rem; font-weight:400; letter-spacing:-.02em; color:var(--ink); max-width:32ch; }
.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; } }

/* ---------- Discovery CTA band ---------- */
.discovery-band{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; align-items:stretch; background:var(--ink); }
.discovery-copy{ padding:72px; display:flex; flex-direction:column; justify-content:center; gap:22px; }
.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:340px; }
.discovery-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:900px){
  .discovery-band{ grid-template-columns:1fr; }
  .discovery-copy{ padding:48px 32px; }
  .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:26px 4px; border-bottom:1px solid var(--border);
  font-weight:500; font-size:1.1rem; color:var(--ink);
  transition:color .3s ease, padding-left .3s var(--ease-warren);
}
.faq-row svg{ flex:none; width:16px; height:16px; stroke:var(--accent); transition:transform .3s var(--ease-warren); }
.faq-row:hover{ color:var(--accent); padding-left:12px; }
.faq-row:hover svg{ transform:translateX(4px); }
.faq-more{ margin-top:30px; }
.advisor-callout{ margin-top:52px; padding:32px; background:var(--surface); border:1px solid var(--border); }
.advisor-callout h4{ margin-bottom:16px; }
.faq-media{ aspect-ratio:1/1; overflow:hidden; }
.faq-media img{ width:100%; height:100%; object-fit:cover; }

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

/* ---------- Resources ---------- */
.resource-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--border); border:1px solid var(--border); }
.resource-card{ display:flex; flex-direction:column; background:var(--white); overflow:hidden; }
.resource-media{ aspect-ratio:4/3; overflow:hidden; }
.resource-media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-warren); }
.resource-card:hover .resource-media img{ transform:scale(1.05); }
.resource-body{ padding:30px; display:flex; flex-direction:column; gap:12px; }
.resource-body p{ color:var(--muted); font-size:14px; }

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

/* ---------- Final CTA ---------- */
.final-cta{ text-align:center; background:var(--surface); }
.final-cta p{ color:var(--muted); font-size:1.1rem; max-width:52ch; margin:0 auto 44px; }
.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,.7); padding-top:88px; }
.footer-top{ display:grid; grid-template-columns:1.2fr 2fr; gap:64px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .logo-brand .brand-name{ color:var(--white); }
.footer-brand .logo-brand .brand-name small{ color:rgba(255,255,255,.6); }
.footer-brand p{ margin-top:22px; color:rgba(255,255,255,.62); 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:.75rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.48); margin-bottom:22px; }
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:15px; color:rgba(255,255,255,.85); transition:color .2s ease; }
.footer-col a:hover{ color:var(--accent); }
.footer-col .addr{ font-size:15px; color:rgba(255,255,255,.85); line-height:1.5; }

.footer-bottom{ padding:40px 0 44px; }
.footer-firmline{ font-size:12px; color:rgba(255,255,255,.58); line-height:1.6; margin-bottom:18px; }
.footer-disclaimer{ font-size:11px; color:rgba(255,255,255,.4); line-height:1.6; margin-bottom:22px; }
.footer-legal-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:12px; color:rgba(255,255,255,.58); }
.footer-legal-row a{ color:rgba(255,255,255,.58); }
.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:40px; } .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-warren), transform .6s var(--ease-warren); }
html.js .reveal.is-visible{ opacity:1; transform:translateY(0); }
