/* ============================================================
   Sand Run Wealth Management styles.css (v3)
   White canvas, big rounded color blocks, bold Arial.
   All brand colors are tokens in :root, so changing a color
   across the whole site means editing one line here.
   ============================================================ */

:root {
  /* surfaces */
  --white: #FFFFFF;
  --ink: #0C1512;
  --ink-soft: #33413A;
  --muted: #5C6B62;

  /* brand, sampled from the logo */
  --evergreen: #5D663B;   /* leaf green, primary */
  --pine: #333A20;        /* deep leaf, dark blocks and footer */
  --cream: #F7F2E7;       /* logo background cream, for marks on dark */
  --sand: #C69A62;
  --bronze: #6B4E28;      /* the brown in WEALTH MANAGEMENT */

  /* bright accents */
  --spring: #8CB33F;
  --sun: #EFB43C;

  /* block tints */
  --mint: #E7EDD8;
  --mint-soft: #F1F5E8;
  --butter: #FBEFD3;
  --stone: #F2F2EF;

  --line: rgba(12, 21, 18, 0.10);
  --line-strong: rgba(12, 21, 18, 0.22);
  --lift: 0 2px 5px rgba(6, 41, 31, 0.04), 0 18px 44px rgba(6, 41, 31, 0.08);
  --lift-hi: 0 4px 10px rgba(6, 41, 31, 0.06), 0 30px 66px rgba(6, 41, 31, 0.13);

  --r-lg: 40px;
  --r-md: 26px;
  --r-sm: 16px;
  --wrap: 1200px;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--evergreen); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--mint); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 0.45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); text-transform: uppercase; letter-spacing: -0.018em; line-height: 1.08; }
h3 { font-size: 1.35rem; letter-spacing: -0.022em; }
h4 { font-size: 1.05rem; letter-spacing: -0.015em; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.26rem); line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }
.measure { max-width: 64ch; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.section { padding: clamp(64px, 8vw, 118px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 4.5vw, 56px); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--mint);
  color: var(--evergreen);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--spring); flex: none; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 0.9rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-logo { width: auto; height: 52px; flex: none; }
.footer-brand .brand-logo { height: 72px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-size: 0.96rem; font-weight: 700; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--evergreen); }
.nav-links .btn--primary, .nav-links .btn--primary:link, .nav-links .btn--primary:visited,
.nav-links .btn--primary:hover, .nav-links .btn--primary:focus { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 15px 27px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--evergreen); color: #fff; }
.btn--primary:hover { background: var(--pine); }
.btn--sun { background: var(--sun); color: var(--pine); }
.btn--sun:hover { background: #FFC85A; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 11px 20px; font-size: 0.92rem; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero { padding: clamp(46px, 6vw, 84px) 0 clamp(30px, 4vw, 44px); }
.hero--type { padding: clamp(70px, 11vw, 170px) 0 clamp(50px, 7vw, 96px); }
.hero--type h1 { max-width: none; font-size: clamp(2.4rem, 6vw, 4.6rem); }
.hero--type .lede { margin-top: 30px; font-size: clamp(1.1rem, 1.6vw, 1.35rem); }
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.hero h1 .hl { color: var(--evergreen); }
.hero .lede { margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-facts span { font-size: 0.92rem; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: 9px; }
.hero-facts span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--spring); flex: none; }

.shot { position: relative; padding: 0 0 34px 34px; }
.shot-bg {
  position: absolute;
  left: 0;
  right: 34px;
  top: 34px;
  bottom: 0;
  background: var(--sun);
  border-radius: var(--r-lg);
}
.shot-inner {
  position: relative;
  background: var(--mint);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--lift-hi);
}
.shot img { border-radius: 28px; width: 100%; }
.shot-chip {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 15px 20px;
  box-shadow: var(--lift-hi);
}
.shot-chip strong { display: block; font-size: 0.98rem; letter-spacing: -0.02em; }
.shot-chip span { font-size: 0.82rem; color: var(--muted); font-weight: 700; }

/* sub-page hero */
.hero--sub { padding: clamp(48px, 6vw, 92px) 0 clamp(20px, 3vw, 38px); }
.hero--sub h1 { max-width: 18ch; }
.hero--sub .lede { margin-top: 20px; }

/* ---------- Plain three-up ---------- */
.tri--plain { gap: clamp(26px, 4vw, 56px); }
.plain { border-top: 3px solid var(--evergreen); padding-top: 24px; }
.plain h3 { margin-bottom: 0.5em; }
.plain p { color: var(--muted); }

/* ---------- Full-width bands ---------- */
.band {
  background: var(--pine);
  color: #fff;
  padding: clamp(64px, 9vw, 130px) 0;
}
.band blockquote {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  text-transform: uppercase;
}
.band blockquote em { color: var(--sun); font-style: normal; }
.band--light .eyebrow { color: var(--bronze); }
.band--light { background: var(--mint-soft); color: var(--ink); padding: clamp(56px, 7vw, 104px) 0; }

/* ---------- Founder band ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-areas: "media head" "media body";
  align-content: center;
  align-items: center;
  column-gap: clamp(30px, 4.5vw, 64px);
  row-gap: 18px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 26px;
}
.founder-media { grid-area: media; align-self: center; }
.founder-head { grid-area: head; align-self: end; }
.founder-body { grid-area: body; align-self: start; max-width: 620px; }
.founder-head h2 { margin-bottom: 0; }
.founder-media img {
  width: 100%;
  height: auto;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 16%;
  border-radius: var(--r-md);
}
.founder-text { grid-area: body; max-width: 620px; }
.founder-body .lede, .founder-text .lede { margin-bottom: 26px; }
.founder--flip { grid-template-columns: 1.1fr 0.9fr; grid-template-areas: "body media"; column-gap: clamp(28px, 3.5vw, 52px); align-items: start; }
.founder--flip .founder-media { order: 2; justify-self: start; }
.founder--flip .founder-media img { max-width: 340px; }
.founder--flip .founder-text p { margin-bottom: 1.1em; color: var(--ink-soft); }

/* ---------- Big color cards ---------- */
.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bigcard {
  border-radius: var(--r-md);
  padding: clamp(30px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 340px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bigcard:hover { transform: translateY(-5px); box-shadow: var(--lift-hi); }
.bigcard .num { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; opacity: 0.55; }
.bigcard p { color: var(--ink-soft); font-size: 1rem; }
.bigcard .go { margin-top: auto; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.bigcard--mint { background: var(--mint); }
.bigcard--butter { background: var(--butter); }
.bigcard--pine { background: var(--pine); color: #fff; }
.bigcard--pine h3 { color: #fff; }
.bigcard--pine p { color: #BFD3C9; }
.bigcard--pine .go { color: var(--sun); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 74px); align-items: center; }
.split--flip .split-media { order: -1; }
.frame { position: relative; z-index: 0; }
.frame img { border-radius: var(--r-md); box-shadow: var(--lift); width: 100%; }
.frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px 22px 22px;
  border: 3px solid var(--sun);
  border-radius: var(--r-md);
  z-index: -1;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step { padding-top: 26px; border-top: 3px solid var(--evergreen); }
.step::before {
  counter-increment: s;
  content: counter(s);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--evergreen);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Feature rows ---------- */
.rows { display: grid; gap: 18px; }
.row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  background: var(--stone);
  border-radius: var(--r-md);
  padding: clamp(28px, 3.4vw, 48px);
}
.row--mint { background: var(--mint-soft); }
.row--butter { background: var(--butter); }
.row h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
.row p { color: var(--ink-soft); }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; }
.ticks li {
  font-weight: 700;
  font-size: 0.99rem;
  padding: 14px 0;
  border-top: 1px solid rgba(12, 21, 18, 0.12);
}
.ticks li:last-child { border-bottom: 1px solid rgba(12, 21, 18, 0.12); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  background: var(--mint-soft);
  color: var(--evergreen);
}
.chip:nth-child(even) { background: var(--butter); color: var(--bronze); }

/* ---------- Account grid ---------- */
.custody-head { max-width: 780px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.acct { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: start; margin-top: 4px; }
.acct-item { background: #fff; border-radius: var(--r-sm); overflow: hidden; }
.acct-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 70px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.3;
}
.acct-item summary::-webkit-details-marker { display: none; }
.acct-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--evergreen);
  transition: transform 0.2s ease;
}
.acct-item[open] summary::after { transform: rotate(45deg); }
.acct-item[open] summary { padding-bottom: 6px; min-height: 0; }
.acct-item p { padding: 0 20px 20px; margin: 0; font-size: 0.92rem; color: var(--muted); font-weight: 400; }
.acct-note { margin-top: 22px; font-size: 0.88rem; color: var(--muted); max-width: 62ch; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--evergreen);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(48px, 6.5vw, 92px) clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
}
.cta .flow-wrap { position: absolute; inset: 0; opacity: 0.4; }
.cta > *:not(.flow-wrap) { position: relative; z-index: 1; }
.cta h2 { color: #fff; max-width: 18ch; text-transform: none; letter-spacing: -0.03em; }
.cta p { color: #D2DCC6; max-width: 44ch; margin-top: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: flex-end; }

/* ---------- Prose ---------- */
.prose { max-width: 680px; }
.prose h2 { margin-top: 1.7em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; display: grid; gap: 12px; }
.faq details { background: var(--stone); border-radius: var(--r-sm); padding: 2px 26px; }
.faq details[open] { background: var(--mint-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  padding: 23px 36px 23px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 3px solid var(--evergreen);
  border-bottom: 3px solid var(--evergreen);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body { padding: 0 0 24px; }
.faq-body p { color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card { border-radius: var(--r-md); padding: clamp(30px, 3.4vw, 44px); background: var(--mint-soft); }
.contact-card:nth-child(2) { background: var(--butter); }
.contact-card p { color: var(--ink-soft); }
.form-card { border-radius: var(--r-md); padding: clamp(30px, 3.4vw, 48px); background: var(--stone); margin-top: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 700; }
.field input, .field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 2px solid transparent;
  background: #fff;
  border-radius: 14px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--evergreen); }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }

/* ---------- Placeholder flags ---------- */
.todo {
  background: var(--butter);
  border-left: 4px solid var(--sun);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--bronze);
  font-weight: 700;
}
.todo-inline { color: var(--bronze); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine); color: #fff; padding: clamp(56px, 6vw, 84px) 0 40px; margin-top: clamp(60px, 7vw, 100px); }
.site-footer a { color: #D6E4DC; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.footer-tag { color: #A9C3B7; margin-top: 18px; max-width: 30ch; font-weight: 700; }
.site-footer h4 { color: var(--sun); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; color: #D6E4DC; font-size: 0.96rem; }
.footer-legal { padding-top: 30px; color: #93AEA2; font-size: 0.8rem; line-height: 1.55; }
.footer-legal p { margin-bottom: 0.8em; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }

/* ---------- Motion ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
.flow-wrap { pointer-events: none; }
.flow-art { width: 100%; height: 100%; display: block; }
.drift { animation: drift 26s linear infinite; }
@keyframes drift { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -300; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .split, .cta, .contact-grid { grid-template-columns: 1fr; }
  .tri--plain { gap: 30px; }
  .split--flip .split-media { order: 0; }
  .cta-actions { justify-content: flex-start; }
  .tri, .steps { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; gap: 22px; }
  .acct { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .shot { max-width: 460px; }
  .shot { max-width: 460px; }
  .bigcard { min-height: 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .acct { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 26px 22px;
    display: none;
    box-shadow: var(--lift);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 6px 0; }
  .nav-toggle { display: block; }
  .acct { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .statement, .cta { border-radius: 24px; padding: 38px 24px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .frame::before { inset: -10px -10px 16px 16px; }
  .wrap { padding: 0 20px; }
}
@media (max-width: 430px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.7rem; }
  .shot-chip { right: 8px; bottom: 12px; padding: 12px 16px; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* ---------- Vertical rhythm fixes ---------- */
.hero--sub + .section,
.hero--sub + .founder,
.hero--sub + .band,
.hero--type + .section { padding-top: clamp(26px, 3.4vw, 48px); }
.hero--sub { padding-bottom: 0; }
.hero--type { padding-bottom: clamp(34px, 4vw, 56px); }

/* call-to-action sits close to the section above it */
.section--cta { padding-top: clamp(34px, 4.5vw, 70px); padding-bottom: clamp(48px, 6vw, 92px); }

@media (max-width: 1000px) {
  .founder {
    grid-template-columns: 136px 1fr;
    grid-template-areas: "media head" "body body";
    column-gap: 18px;
    row-gap: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .founder-head { align-self: center; }
  .founder-head h2 { font-size: 1.45rem; }
  .founder-media img, .founder--flip .founder-media img { max-width: 136px; aspect-ratio: 1 / 1; object-position: center 14%; }
  /* the about page has no short label to sit beside the photo, so it stays stacked */
  .founder--flip {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "body";
    row-gap: 30px;
    padding-top: 8px;
  }
  .founder--flip .founder-media { order: 0; justify-self: start; }
  .founder--flip .founder-media { justify-self: stretch; }
  .founder--flip .founder-media img { max-width: none; width: 100%; aspect-ratio: 1 / 1; object-position: center 18%; }
}

/* short service lists on the homepage */
.mini { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; }
.mini li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.mini li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--evergreen);
}

.founder + .section { padding-top: clamp(30px, 4vw, 60px); }
@media (max-width: 760px) { .founder + .section { padding-top: 34px; } .tri--plain { gap: 26px; } }

/* ---------- Six services (homepage) ---------- */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 64px); align-items: start; }
.svc-item { border-top: 1px solid rgba(12, 21, 18, 0.14); }
.svc-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  gap: 18px;
  align-items: start;
  padding: 24px 0 22px;
}
.svc-item summary::-webkit-details-marker { display: none; }
.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--mint-soft);
  color: var(--evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-title { display: block; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 6px; }
.svc-desc { display: block; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
.svc-plus { position: relative; width: 20px; height: 20px; margin-top: 3px; }
.svc-plus::before, .svc-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--evergreen);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.svc-plus::before { width: 14px; height: 2px; }
.svc-plus::after { width: 2px; height: 14px; }
.svc-item[open] .svc-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.svc-list { list-style: none; margin: 0 0 24px 64px; padding: 0; display: grid; gap: 9px; }
.svc-list li { position: relative; padding-left: 22px; font-weight: 700; font-size: 0.95rem; }
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--evergreen);
}
.svc-hint { margin-top: 18px; font-size: 0.86rem; color: var(--muted); }

/* icon above each services-page row */
.row-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--evergreen);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.row-icon svg { width: 23px; height: 23px; }

@media (max-width: 1000px) {
  .svc { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .svc-item summary { grid-template-columns: 40px 1fr 18px; gap: 14px; padding: 20px 0 18px; }
  .svc-icon { width: 40px; height: 40px; border-radius: 10px; }
  .svc-list { margin-left: 54px; }
}

/* ---------- Legal page ---------- */
.legal { max-width: 760px; }
.legal h2 {
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 2.1em 0 0.6em;
}
.legal p { font-size: 1rem; }

/* ---------- Document links (PDFs) ---------- */
.docs { display: grid; gap: 10px; margin: 18px 0 24px; }
.doc {
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--stone);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: background 0.18s ease;
}
.doc:hover { background: var(--mint); text-decoration: none; }
.doc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: var(--evergreen);
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-icon svg { width: 22px; height: 22px; }
.doc-title { display: block; font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }
.doc-sub { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); margin-top: 2px; }
.doc-arrow { color: var(--evergreen); font-weight: 700; transition: transform 0.18s ease; }
.doc:hover .doc-arrow { transform: translateX(3px); }

.section--doc { padding: clamp(40px, 5vw, 70px) 0 0; }
.doc-note { max-width: 620px; }
.doc-note p { color: var(--muted); margin-bottom: 14px; }
.faq-body .doc { margin-top: 12px; max-width: 460px; }

/* footer link row */
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 16px; }
.footer-meta .sep { color: rgba(255, 255, 255, 0.28); }

/* ---------- Disclosures layout ---------- */
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(40px, 6vw, 88px); align-items: start; }
.legal-aside { position: sticky; top: 112px; display: grid; gap: 8px; padding: 26px; background: var(--stone); border-radius: var(--r-md); }
.legal-aside .eyebrow { margin-bottom: 6px; }
.aside-link { display: block; padding: 12px 0; border-top: 1px solid rgba(12, 21, 18, 0.12); color: var(--ink); font-weight: 700; font-size: 0.97rem; }
.aside-link:first-of-type { border-top: none; padding-top: 4px; }
.aside-link span { display: block; font-weight: 400; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.aside-link:hover { color: var(--evergreen); text-decoration: none; }
@media (max-width: 1000px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { display: none; }
}

/* ---------- Longer nav labels: switch to the menu button before they wrap ---------- */
.nav-links a { white-space: nowrap; }
@media (max-width: 940px) {
  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 26px 22px;
    display: none;
    box-shadow: var(--lift);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 6px 0; }
  .nav-links .nav-cta { padding-top: 10px; }
  .nav-toggle { display: block; }
}

/* contact form result message */
.form-status { margin: 18px 0 0; padding: 14px 18px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; }
.form-status--ok { background: var(--mint); color: var(--evergreen); }
.form-status--err { background: var(--butter); color: var(--bronze); }
button[disabled] { opacity: 0.7; cursor: default; }

/* ---------- Even spacing on the About and Services pages ---------- */
.founder--flip { padding-bottom: 0; }
.founder--flip + .section { padding-top: clamp(56px, 7vw, 88px); }
.doc-note--inline { margin-top: clamp(44px, 5vw, 64px); }
.section--flush-bottom { padding-bottom: 0; }
.section--flush-bottom + .section--cta,
.section--doc + .section--cta { padding-top: clamp(56px, 7vw, 88px); }
@media (max-width: 760px) {
  .founder--flip + .section { padding-top: 56px; }
}
.founder--flip .founder-text p:last-child { margin-bottom: 0; }
