/*
Theme Name: Senioa
Theme URI: https://senioalife.com
Author: Senioa
Description: Senioa production theme — mechanical wrapper around the approved mock-up. v3.0.
Version: 3.0.0
License: GPL v2 or later
Text Domain: senioa-theme
*/
/* --- MOCK-UP css/base.css BELOW, VERBATIM --- */
/* Senioa — brand tokens */
:root {
  --shadow: #6D6F51;          /* primary olive */
  --shadow-800: #575941;
  --shadow-600: #7d7f60;
  --shadow-300: #b6b8a4;
  --timberwolf: #DAD9D5;      /* warm neutral */
  --timberwolf-50: #F4F3EF;   /* ivory paper */
  --timberwolf-100: #ECEBE6;
  --timberwolf-200: #E1E0DB;
  --ink: #2A2C22;             /* deep near-black */
  --ink-70: rgba(42, 44, 34, 0.75);
  --ink-50: rgba(42, 44, 34, 0.55);
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --container-wide: 1400px;
  --radius: 4px;
  --radius-lg: 12px;

  --step-1: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);   /* small */
  --step-2: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);       /* body */
  --step-3: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);    /* lede */
  --step-4: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem);   /* h4 */
  --step-5: clamp(1.75rem, 1.5rem + 1.2vw, 2.375rem);     /* h3 */
  --step-6: clamp(2.25rem, 1.8rem + 2vw, 3.375rem);       /* h2 */
  --step-7: clamp(3rem, 2.2rem + 3.4vw, 5rem);            /* h1 hero */

  --shadow-soft: 0 1px 2px rgba(42,44,34,0.06), 0 8px 24px rgba(42,44,34,0.05);
  --shadow-lift: 0 2px 6px rgba(42,44,34,0.08), 0 24px 60px rgba(42,44,34,0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--step-2);
  line-height: 1.65;
  color: var(--ink);
  background: var(--timberwolf-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "ss01";
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; height: auto; display: block; }

/* Typography */
h1, h2, h3, h4, h5, .display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: var(--step-7); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: var(--step-6); line-height: 1.08; }
h3 { font-size: var(--step-5); }
h4 { font-size: var(--step-4); font-weight: 500; letter-spacing: 0; }
p { margin: 0 0 1em; max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow);
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--shadow);
  opacity: 0.6;
}

.lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-4);
  line-height: 1.45;
  color: var(--ink-70);
  max-width: 30em;
}

a { color: var(--shadow-800); text-decoration: none; text-underline-offset: 3px; transition: color 160ms ease; }
a:hover { color: var(--shadow); text-decoration: underline; text-decoration-thickness: 1px; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.rule { height: 1px; background: linear-gradient(to right, transparent, var(--shadow-300), transparent); border: 0; margin: 0; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 243, 239, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(109, 111, 81, 0.12);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  max-width: var(--container-wide);
  margin: 0 auto;
}
/* Header brand: enlarged logo + tagline link next to it (no wordmark text) */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--shadow-800);
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-70);
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
  max-width: none;
  white-space: normal;
}
.brand__tagline:hover {
  color: var(--shadow-800);
  border-bottom-color: var(--shadow-300);
  text-decoration: none;
}
@media (max-width: 1100px) {
  .brand__tagline { display: none; }
}
@media (max-width: 640px) {
  .brand__mark { width: 68px; height: 68px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-70);
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--shadow-800);
  border-bottom-color: var(--shadow);
  text-decoration: none;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--shadow);
  color: var(--timberwolf-50) !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 200ms;
}
.nav__cta:hover { background: var(--shadow-800); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--shadow-800);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}
.btn--primary { background: var(--shadow); color: var(--timberwolf-50); }
.btn--primary:hover { background: var(--shadow-800); color: var(--timberwolf-50); text-decoration: none; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--shadow-800); border-color: var(--shadow-300); }
.btn--ghost:hover { background: var(--timberwolf-200); color: var(--shadow-800); text-decoration: none; }
.btn--light { background: var(--timberwolf-50); color: var(--shadow-800); }
.btn--light:hover { background: var(--white); text-decoration: none; }
.btn__arrow { transition: transform 200ms ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(42, 44, 34, 0.88) 0%, rgba(42, 44, 34, 0.72) 38%, rgba(42, 44, 34, 0.38) 78%, rgba(42, 44, 34, 0.28) 100%),
    linear-gradient(to top, rgba(42,44,34,0.55), rgba(42,44,34,0.15) 55%, transparent);
}
.hero__inner { padding-top: clamp(6rem, 10vw, 9rem); padding-bottom: clamp(6rem, 10vw, 9rem); color: var(--timberwolf-50); text-shadow: 0 1px 3px rgba(0,0,0,0.35), 0 2px 12px rgba(0,0,0,0.25); }
.hero .eyebrow { color: var(--timberwolf-50); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero .eyebrow::before { background: var(--timberwolf-50); opacity: 0.85; }
.hero h1 { color: var(--timberwolf-50); max-width: 16ch; }
.hero__lede { font-family: var(--font-display); font-weight: 400; font-size: var(--step-4); line-height: 1.4; color: rgba(244, 243, 239, 0.95); max-width: 34em; margin-top: 1.5rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 243, 239, 0.25);
  max-width: 900px;
}
.hero__stat .num { font-family: var(--font-display); font-size: clamp(1.75rem, 2.5vw, 2.5rem); color: var(--timberwolf-50); line-height: 1; margin-bottom: 0.35rem; }
.hero__stat .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(244, 243, 239, 0.75); }

@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Page hero (non-home) */
.page-hero {
  background: var(--shadow);
  color: var(--timberwolf-50);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__olive {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 620px;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.5);
}
.page-hero .eyebrow { color: var(--timberwolf-50); }
.page-hero .eyebrow::before { background: var(--timberwolf-50); }
.page-hero h1 { color: var(--timberwolf-50); max-width: 20ch; }
.page-hero__lede { font-family: var(--font-display); font-size: var(--step-4); line-height: 1.45; color: var(--timberwolf-50); max-width: 34em; margin-top: 1.25rem; }

/* Flat page hero for legal / compliance pages — lighter, no image */
.page-hero--flat { background: var(--timberwolf-100); color: var(--ink); padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem); }
.page-hero--flat .eyebrow { color: var(--shadow); }
.page-hero--flat .eyebrow::before { background: var(--shadow); }
.page-hero--flat h1 { color: var(--ink); max-width: 24ch; }
.page-hero--flat .page-hero__lede { color: var(--ink-70); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(109,111,81,0.10);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.2vw, 2.25rem);
  min-width: 0;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(109,111,81,0.25); }
.card h3, .card h4 { font-size: var(--step-4); margin-bottom: 0.6rem; letter-spacing: -0.005em; }
.card p { color: var(--ink-70); font-size: var(--step-2); }
.card__meta { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--shadow); margin-bottom: 0.6rem; }
.card__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--shadow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.grid { display: grid; gap: clamp(1.25rem, 2vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Split section */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse { grid-template-columns: 0.95fr 1.05fr; }
.split--reverse .split__text { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 0; }
}

/* Stat band */
.statband { background: var(--shadow); color: var(--timberwolf-50); padding: clamp(3rem, 6vw, 5rem) 0; }
.statband .grid-4 { align-items: end; }
.statband .card__num { color: var(--timberwolf-50); font-size: clamp(2.5rem, 4.5vw, 4rem); }
.statband .card__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--timberwolf-50); opacity: 0.95; }
.statband .card__desc { color: var(--timberwolf-50); font-size: 0.95rem; margin-top: 0.35rem; }

/* Tables */
.tbl-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0 2rem; }
.tbl { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; font-size: 0.95rem; }
.tbl-wrap .tbl { margin: 0; }
@media (max-width: 640px) {
  .tbl { font-size: 0.85rem; }
  .tbl thead th, .tbl tbody td { padding: 0.6rem 0.55rem !important; }
}
.tbl thead th {
  text-align: left;
  padding: 0.85rem 1rem;
  background: var(--timberwolf-100);
  color: var(--shadow-800);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(109,111,81,0.2);
}
.tbl tbody td { padding: 0.85rem 1rem; border-bottom: 1px solid rgba(109,111,81,0.12); color: var(--ink); vertical-align: top; }
.tbl tbody tr:hover { background: rgba(218,217,213,0.35); }
.tbl tbody td strong { color: var(--shadow-800); font-weight: 500; }

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--shadow);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  max-width: 34em;
}
.pullquote__cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--shadow); margin-top: 1rem; }

/* Footer */
.site-footer {
  background: #23241C;
  color: rgba(244, 243, 239, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  margin-top: 3rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: var(--timberwolf-50);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.55rem; font-size: 0.92rem; font-family: var(--font-body); color: rgba(244, 243, 239, 0.82); line-height: 1.55; font-weight: 400; }
.site-footer li address { font-style: normal; font-family: inherit; font-size: inherit; color: inherit; line-height: inherit; }
.site-footer a { color: rgba(244, 243, 239, 0.82); font-family: var(--font-body); }
.site-footer a:hover { color: var(--timberwolf-50); text-decoration: none; }
/* Footer brand: enlarged logo only, no wordmark, no tagline */
.site-footer__brand-lockup { display: flex; align-items: center; margin-bottom: 1.75rem; }
.site-footer__brand-lockup img { width: 108px; height: auto; opacity: 0.95; }
.site-footer__legal {
  border-top: 1px solid rgba(244, 243, 239, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(244,243,239,0.55);
}
.site-footer__legal p { margin: 0; max-width: 60ch; }
@media (max-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.max-40 { max-width: 40em; }
.max-38 { max-width: 38em; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head {
  max-width: 44em;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-70); font-size: var(--step-3); }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(109,111,81,0.14);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--timberwolf-100);
  color: var(--shadow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.feature-list h4 { margin: 0 0 0.35rem; font-size: var(--step-3); }
.feature-list p { margin: 0; color: var(--ink-70); }

/* Fund list */
.fund-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.fund-list li {
  display: grid;
  grid-template-columns: 60px 220px 1fr 140px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.15rem 1rem;
  border-bottom: 1px solid rgba(109,111,81,0.14);
  transition: background 160ms;
}
.fund-list li:hover { background: var(--white); }
.fund-list__num { font-family: var(--font-display); color: var(--shadow); font-size: 1.4rem; }
.fund-list__name { font-family: var(--font-display); font-size: var(--step-3); color: var(--ink); }
.fund-list__strategy { color: var(--ink-70); font-size: 0.95rem; }
.fund-list__cap { font-family: var(--font-display); color: var(--shadow-800); font-size: 1.2rem; text-align: right; }
@media (max-width: 800px) {
  .fund-list li { grid-template-columns: 40px 1fr; grid-template-areas: "num name" "num strategy" "num cap"; gap: 0.5rem 1rem; padding: 1.2rem 0.5rem; }
  .fund-list__num { grid-area: num; }
  .fund-list__name { grid-area: name; font-size: 1.1rem; }
  .fund-list__strategy { grid-area: strategy; font-size: 0.9rem; }
  .fund-list__cap { grid-area: cap; text-align: left; font-size: 1rem; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile / small-tablet nav — collapse to drawer up to 1100px so full nav has room to breathe at desktop widths */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav.is-open {
    display: flex;
    position: fixed;
    top: 72px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--timberwolf-50);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    gap: 0.75rem;
    border: 1px solid rgba(109,111,81,0.14);
  }
  .nav.is-open a { padding: 0.75rem 0.75rem; }
  .nav.is-open .nav__cta { text-align: center; justify-content: center; }
}

/* Additional mobile refinement — tighter drawer positioning below 480px */
@media (max-width: 480px) {
  .nav.is-open { top: 64px; padding: 1rem; }
}

/* Scrolled header shadow */
.site-header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(31, 33, 20, 0.14);
  background: rgba(255,255,255,0.96);
}

/* Timeline (families page) */
.timeline { list-style: none; padding: 0; margin: 2rem 0 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--shadow-300), transparent);
}
.timeline li { position: relative; padding: 0 0 2rem 4rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: 12px; top: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--shadow); border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--shadow-300);
}
.timeline__meta { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--shadow); margin-bottom: 0.35rem; }
.timeline h4 { font-family: var(--font-display); font-size: var(--step-3); margin: 0 0 0.4rem; color: var(--ink); }
.timeline p { color: var(--ink-70); margin: 0; max-width: 44em; }

/* FAQ */
.faq { list-style: none; padding: 0; margin: 2rem 0 0; }
.faq details {
  border-top: 1px solid rgba(109,111,81,0.14);
  padding: 1.25rem 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(109,111,81,0.14); }
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-size: var(--step-3);
  color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 1.6rem;
  color: var(--shadow); transition: transform 200ms ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-70); margin: 0.75rem 0 0; max-width: 60em; }

/* Meta list (contact / bio side lists) */
.meta-list { list-style: none; padding: 0; margin: 0; }
.meta-list li { padding: 0.9rem 0; border-bottom: 1px solid rgba(109,111,81,0.12); }
.meta-list li:last-child { border-bottom: 0; }
.meta-list__label { display: block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--shadow); margin-bottom: 0.2rem; }
.meta-list__value { font-family: var(--font-display); font-size: var(--step-3); color: var(--ink); }
.meta-list__value a { color: inherit; }

/* ================================================================
   COMPLIANCE / LEGAL PROSE PAGES
   ================================================================ */
.legal-doc { max-width: 62ch; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) 0; }
.legal-doc__meta { display: flex; gap: 2rem; padding-bottom: 1.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(109,111,81,0.15); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-70); flex-wrap: wrap; }
.legal-doc__meta span strong { color: var(--ink); font-weight: 500; margin-left: 0.4rem; letter-spacing: 0.1em; }
.legal-doc h2 { font-family: var(--font-display); font-size: var(--step-3); color: var(--ink); margin: 2.75rem 0 0.75rem; line-height: 1.25; }
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc h3 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--shadow); font-weight: 500; margin: 1.75rem 0 0.5rem; }
.legal-doc p, .legal-doc li { color: var(--ink-70); line-height: 1.75; font-size: 1rem; }
.legal-doc p { margin: 0 0 1rem; }
.legal-doc ul, .legal-doc ol { margin: 0.5rem 0 1.5rem 1.25rem; padding: 0; }
.legal-doc li { margin-bottom: 0.5rem; }
.legal-doc strong { color: var(--ink); font-weight: 500; }
.legal-doc a { color: var(--shadow); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-doc a:hover { color: var(--shadow-800); }
.legal-doc__toc { background: var(--timberwolf-100); border-left: 3px solid var(--shadow); padding: 1.5rem 1.75rem; margin-bottom: 3rem; }
.legal-doc__toc h4 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--shadow); font-weight: 500; margin: 0 0 0.75rem; }
.legal-doc__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.legal-doc__toc li { counter-increment: toc; margin: 0.3rem 0; font-size: 0.92rem; }
.legal-doc__toc li::before { content: counter(toc, decimal-leading-zero) "  "; color: var(--shadow); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; }
.legal-doc__toc a { text-decoration: none; color: var(--ink); }
.legal-doc__toc a:hover { color: var(--shadow); text-decoration: underline; }
.legal-doc__callout { background: #F7F5EC; border: 1px solid rgba(109,111,81,0.18); padding: 1.25rem 1.5rem; margin: 1.5rem 0; border-radius: 4px; }
.legal-doc__callout p { margin: 0; font-size: 0.94rem; color: var(--ink); }
.legal-doc__callout strong { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; display: block; margin-bottom: 0.4rem; color: var(--shadow); }

/* LP Portal login gate */
.portal-shell { min-height: calc(100vh - 200px); display: grid; place-items: center; padding: clamp(3rem, 8vw, 6rem) 1.5rem; background: linear-gradient(180deg, var(--paper) 0%, #EFEDE5 100%); }
.portal-card { max-width: 480px; width: 100%; background: var(--white); border: 1px solid rgba(109,111,81,0.15); padding: clamp(2rem, 5vw, 3.5rem); box-shadow: 0 20px 60px -30px rgba(42,44,34,0.25); }
.portal-card h1 { font-family: var(--font-display); font-size: var(--step-4); color: var(--ink); margin: 0 0 0.5rem; line-height: 1.15; }
.portal-card__eyebrow { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--shadow); font-weight: 500; }
.portal-card p.lede { color: var(--ink-70); margin: 0.5rem 0 1.75rem; font-size: 0.95rem; line-height: 1.6; }
.portal-form label { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--shadow); margin: 1rem 0 0.4rem; font-weight: 500; }
.portal-form input[type="email"], .portal-form input[type="password"], .portal-form input[type="text"] { width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(109,111,81,0.3); background: #FBFAF6; font-family: var(--font-body); font-size: 0.98rem; color: var(--ink); border-radius: 2px; transition: border-color 150ms ease; }
.portal-form input:focus { outline: none; border-color: var(--shadow); }
.portal-form__row { display: flex; justify-content: space-between; align-items: center; margin: 1rem 0 1.5rem; font-size: 0.85rem; }
.portal-form__row label { display: inline-flex; align-items: center; gap: 0.5rem; letter-spacing: 0; text-transform: none; color: var(--ink-70); font-weight: 400; font-size: 0.85rem; margin: 0; }
.portal-form button { width: 100%; padding: 0.95rem 1rem; background: var(--shadow); color: var(--timberwolf-50); border: 0; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: background 150ms ease; }
.portal-form button:hover { background: var(--shadow-800); }
.portal-card__foot { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(109,111,81,0.15); font-size: 0.82rem; color: var(--ink-70); text-align: center; line-height: 1.6; }
.portal-card__disclaimer { margin-top: 1.5rem; font-size: 0.75rem; color: var(--ink-70); line-height: 1.55; }

/* Fund family group headers on investors page */
.fund-group__label {
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--shadow);
  letter-spacing: 0.02em;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--timberwolf);
}
.fund-group__label:first-of-type { margin-top: 1.5rem; }

/* Vintage separators on investors page */
.vintage__label {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--shadow);
  letter-spacing: 0.01em;
  margin: 3rem 0 1rem;
  padding: 0.75rem 1rem;
  background: var(--timberwolf-50);
  border-left: 4px solid var(--shadow);
}
.vintage__label:first-of-type { margin-top: 2rem; }
.mt-4 { margin-top: 4rem !important; }

/* -------------------------------------------------- */
/* Nav dropdowns                                       */
/* -------------------------------------------------- */
.nav__item.has-sub {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__caret {
  background: none;
  border: 0;
  padding: 0.5rem 0.35rem 0.5rem 0.15rem;
  cursor: pointer;
  color: var(--ink-70);
  line-height: 0;
  border-radius: 4px;
  transition: color 160ms, transform 200ms;
}
.nav__caret:hover,
.nav__item.has-sub:hover .nav__caret,
.nav__caret[aria-expanded="true"] {
  color: var(--shadow-800);
}
.nav__caret[aria-expanded="true"] { transform: rotate(180deg); }
.nav__caret:focus-visible { outline: 2px solid var(--shadow); outline-offset: 2px; }

/* Desktop dropdown panel */
.subnav {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(109,111,81,0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px -12px rgba(31, 33, 20, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 60;
}
.nav__item.has-sub:hover .subnav,
.nav__item.has-sub:focus-within .subnav,
.subnav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.subnav li { margin: 0; }
.subnav a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-70);
  border-bottom: 0;
  white-space: nowrap;
  transition: background 120ms, color 120ms;
}
.subnav a:hover,
.subnav a:focus-visible {
  background: var(--timberwolf-50);
  color: var(--shadow-800);
  border-bottom: 0;
}

/* Mobile / tablet: dropdowns become inline expandable groups (match nav collapse breakpoint) */
@media (max-width: 1100px) {
  .nav.is-open .nav__item.has-sub {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav.is-open .nav__item.has-sub > .nav__link {
    display: inline-block;
    width: auto;
  }
  .nav.is-open .nav__item.has-sub {
    position: relative;
  }
  .nav.is-open .nav__caret {
    position: absolute;
    top: 0.35rem;
    right: 0.25rem;
    padding: 0.6rem 0.9rem;
  }
  .nav.is-open .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 0.5rem 1rem;
    display: none;
    min-width: 0;
  }
  .nav.is-open .subnav.is-open { display: block; }
  .nav.is-open .subnav a {
    padding: 0.55rem 0.5rem;
    white-space: normal;
    font-size: 0.85rem;
  }
}

/* Ensure top-level nav__link keeps underline behavior but subnav links do not */
.nav__item.has-sub > .nav__link {
  padding-right: 0.1rem;
}
/* Reduce gap slightly to fit new Funds item comfortably */
.nav { gap: 0.85rem; }
/* Compact spacing at desktop widths where all 8 nav items must fit (1101–1280px) */
@media (min-width: 1101px) and (max-width: 1280px) {
  .nav { gap: 0.55rem; }
  .nav a, .nav .nav__link { font-size: 0.82rem; }
  .nav__caret { padding: 0.5rem 0.2rem 0.5rem 0.1rem; }
  .nav__cta { padding: 0.5rem 0.85rem; }
}


/* --- MOCK-UP css/splash.css BELOW, VERBATIM --- */
/* ==========================================================================
   Senioa Life — Animated Branded Splash
   ========================================================================== */

.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #2A2C22; /* darker than shadow, fully opaque base */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

/* Background imagery — very subtle, feels like memory */
.splash__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(140deg, rgba(42, 44, 34, 0.94) 0%, rgba(42, 44, 34, 0.86) 55%, rgba(42, 44, 34, 0.96) 100%),
    url('../assets/img/hero-community.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2A2C22;
  transform: scale(1.08);
  animation: splashBgDrift 3.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes splashBgDrift {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); opacity: 0.85; }
  100% { transform: scale(1.14) translate3d(-1%, -1%, 0); opacity: 1; }
}

/* Warm vignette that pulses gently */
.splash__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(255, 235, 200, 0.06) 0%, rgba(42, 44, 34, 0) 40%, rgba(15, 16, 12, 0.55) 100%);
  opacity: 0;
  animation: splashVignette 3.2s ease-out 0.1s forwards;
}

@keyframes splashVignette {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Content stack */
.splash__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--timberwolf-50);
  padding: 0 1.5rem;
  max-width: 42rem;
}

/* Mark (logo) */
.splash__mark {
  width: clamp(90px, 12vw, 140px);
  height: auto;
  opacity: 0;
  transform: scale(0.86) translateY(6px);
  animation: splashMark 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

@keyframes splashMark {
  0%   { opacity: 0; transform: scale(0.86) translateY(6px); }
  55%  { opacity: 1; transform: scale(1.02) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Wordmark */
.splash__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.14em;
  line-height: 1;
  margin: 1.4rem 0 0;
  opacity: 0;
  transform: translateY(10px);
  animation: splashFadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 0.75s forwards;
  color: var(--timberwolf-50);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.splash__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(244, 243, 239, 0.8);
  margin-top: 0.75rem;
  opacity: 0;
  animation: splashFadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.05s forwards;
}

/* Drawing rule */
.splash__rule {
  display: block;
  width: 0;
  height: 1px;
  background: rgba(244, 243, 239, 0.55);
  margin: 1.75rem auto 1.5rem;
  animation: splashRule 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) 1.35s forwards;
}

@keyframes splashRule {
  0%   { width: 0; opacity: 0; }
  15%  { opacity: 1; }
  100% { width: 220px; opacity: 1; }
}

/* Tagline */
.splash__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  line-height: 1.4;
  color: rgba(244, 243, 239, 0.95);
  opacity: 0;
  transform: translateY(8px);
  animation: splashFadeUp 900ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.55s forwards;
  max-width: 32em;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

@keyframes splashFadeUp {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Progress bar at the bottom — signals timing */
.splash__progress {
  position: absolute;
  left: 50%;
  bottom: clamp(2.5rem, 6vh, 4rem);
  transform: translateX(-50%);
  z-index: 2;
  width: min(260px, 60vw);
  height: 1px;
  background: rgba(244, 243, 239, 0.16);
  overflow: hidden;
  opacity: 0;
  animation: splashFadeUp 500ms ease 0.2s forwards;
}

.splash__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(to right, rgba(244, 243, 239, 0.4), rgba(244, 243, 239, 0.85));
  animation: splashProgress 2.85s cubic-bezier(0.5, 0, 0.5, 1) 0.2s forwards;
}

@keyframes splashProgress {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Exit — soft upward wipe */
.splash.is-leaving {
  transform: translateY(-100%);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.splash.is-gone {
  display: none;
}

/* Body scroll lock while splash is present */
body.splash-active {
  overflow: hidden;
  height: 100vh;
}

/* Reduced motion — instant fade, no drift */
@media (prefers-reduced-motion: reduce) {
  .splash__bg { animation: none; transform: scale(1); }
  .splash__vignette { animation: none; opacity: 1; }
  .splash__mark { animation: none; opacity: 1; transform: none; }
  .splash__wordmark,
  .splash__sub,
  .splash__tagline { animation: none; opacity: 1; transform: none; }
  .splash__rule { animation: none; width: 220px; opacity: 1; }
  .splash__progress { display: none; }
  .splash.is-leaving { transition: opacity 250ms ease; transform: none; opacity: 0; }
}

/* Mobile refinements */
@media (max-width: 640px) {
  .splash__wordmark { letter-spacing: 0.1em; }
  .splash__rule { animation-duration: 1.2s; }
  @keyframes splashRule {
    0%   { width: 0; opacity: 0; }
    15%  { opacity: 1; }
    100% { width: 160px; opacity: 1; }
  }
}
