/* =========================================================================
   Four Lines Fiduciary — Trust & Estate Accounting Cleanup
   "We Love Messy Data" landing site styles
   A Four Lines Capital Management, LLC company.
   Direction C — family DNA + warm persona:
     Navy/slate FourLines frame (header, footer, CTA, accents, proof card)
     + Playfair Display / Inter type + warm, light content.
   Parent brand tokens: navy #0B1320 / slate #3A4B66 / lines #E6EDF6 / muted #8A9BBF
   ========================================================================= */

:root {
  /* FourLines structural palette (the navy/serif "frame") */
  --navy: #0B1320;          /* canonical brand background */
  --slate: #3A4B66;         /* canonical framework / accent */
  --slate-deep: #2A3850;    /* hover / depth */
  --lines: #E6EDF6;         /* canonical light lines */
  --muted-navy: #8A9BBF;    /* canonical muted (on dark) */

  /* Structural accent alias — used for buttons, eyebrows, accents */
  --primary: #3A4B66;       /* slate */
  --primary-dark: #0B1320;  /* navy */
  --accent-light: #eef2f8;  /* soft cool tint for chips/icon wells */

  /* Warm, human content palette (the "warm persona") */
  --text: #1c1917;          /* warm near-black */
  --secondary: #57534e;     /* warm grey-700 */
  --tertiary: #78716c;      /* warm grey-500 */
  --border: #e7e5e4;        /* warm hairline */
  --bg-light: #fafaf9;      /* warm off-white */
  --white: #ffffff;
  --success: #1b5e20;

  --shadow-sm: 0 1px 2px rgba(11, 19, 32, 0.06), 0 1px 3px rgba(11, 19, 32, 0.05);
  --shadow-md: 0 4px 12px rgba(11, 19, 32, 0.08), 0 2px 4px rgba(11, 19, 32, 0.05);
  --shadow-lg: 0 14px 36px rgba(11, 19, 32, 0.16), 0 4px 8px rgba(11, 19, 32, 0.07);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1140px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; letter-spacing: 0; }
h4 { font-family: var(--font-ui); }

p { margin: 0 0 1rem; }

a { color: var(--primary-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--primary); }

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

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.section--light { background: var(--bg-light); }
.section--accent { background: var(--accent-light); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.lede { font-size: 1.15rem; color: var(--secondary); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--slate); color: #fff; box-shadow: var(--shadow-lg); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--slate); }
.btn--ghost:hover { background: var(--accent-light); border-color: var(--navy); color: var(--navy); }

.btn--light { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn--light:hover { background: var(--accent-light); color: var(--navy); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / nav — navy FourLines band ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--slate);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--lines);
}
.brand:hover { color: #fff; }
.brand__mark { width: 36px; height: 36px; border-radius: 7px; flex: none; box-shadow: inset 0 0 0 1px var(--slate); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lines);
}
.brand__tag { font-size: 0.72rem; color: var(--muted-navy); letter-spacing: 0.04em; }

.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted-navy);
  text-decoration: none;
}
.nav__link:hover { color: #fff; }
.nav__link[aria-current="page"] { color: var(--lines); }
.nav__cta { margin-left: 0.25rem; }

/* Click-to-call phone in the navy header */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lines);
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { color: #fff; }
.nav__phone svg { color: var(--muted-navy); flex: none; }
.nav__phone:hover svg { color: var(--lines); }

/* CTA in the navy header reads as a light/inverted pill */
.nav__cta.btn--primary { background: var(--lines); color: var(--navy); }
.nav__cta.btn--primary:hover { background: #fff; color: var(--navy); }

/* Keyboard focus on the dark header band needs a light ring */
.site-header a:focus-visible,
.site-header .btn:focus-visible { outline-color: var(--lines); }

@media (max-width: 760px) {
  .nav__links .nav__link { display: none; }
  .brand__tag { display: none; }
  /* keep the phone reachable on small screens; trim to the icon + number */
  .nav__phone { font-size: 0.9rem; }
}
@media (max-width: 460px) {
  /* very narrow: drop the inverted CTA pill, keep the tap-to-call phone */
  .nav__cta { display: none; }
}

/* ---------- Hero — warm, light, with a quiet slate wash ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 80% -10%, rgba(58, 75, 102, 0.10), transparent 60%),
    linear-gradient(180deg, var(--accent-light) 0%, var(--bg-light) 60%, var(--white) 100%);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.hero__title .accent { color: var(--slate); font-style: italic; }
.hero__sub {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--secondary);
  max-width: 36ch;
  margin-bottom: 0.75rem;
}
.hero__chiron {
  font-size: 0.82rem;
  font-style: italic;
  color: #8A9BBF;
  max-width: 56ch;
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
}
.hero__deliverable {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--navy);
  background: var(--accent-light);
  border-left: 3px solid var(--slate);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  max-width: 42ch;
  margin-bottom: 1.75rem;
}
.hero__deliverable strong { color: var(--navy); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.25rem; }
.hero__anchor { font-size: 0.95rem; color: var(--secondary); max-width: 42ch; margin: 0 0 0.75rem; }
.hero__anchor strong { color: var(--navy); font-weight: 600; }
.hero__note { font-size: 0.9rem; color: var(--tertiary); margin: 0; }
.hero__note strong { color: var(--secondary); font-weight: 600; }

/* Hero value illustration — "messy statements -> organized schedules" */
.transform-card {
  background: var(--navy);
  border: 1px solid var(--slate);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.5rem 1.25rem;
}
.transform-svg {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.transform-card__caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: #6ee7a8;
}
.transform-card__caption svg { flex: none; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  padding-block: 1.1rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
}
.trust-item svg { color: var(--slate); flex: none; }
.trust-sep { color: var(--border); }
@media (max-width: 760px) { .trust-sep { display: none; } }

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--accent-light);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--secondary); margin-bottom: 0; font-size: 0.98rem; }

/* "Sound familiar" — pain checklist */
.pain-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.15rem; box-shadow: var(--shadow-sm);
  color: var(--text);
}
.pain-list svg { color: var(--primary); flex: none; margin-top: 2px; }
.relief {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: var(--lines);
  border-radius: var(--radius-lg);
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.relief strong { font-weight: 700; color: #fff; }

/* Two-column compare (CPA) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare__col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.compare__col--ours { border-color: var(--primary); box-shadow: var(--shadow-md); position: relative; }
.compare__col h3 { display: flex; align-items: center; gap: 0.5rem; }
.compare__tag { display: inline-block; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); background: var(--accent-light); padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.75rem; }
.compare ul { margin: 0; padding-left: 1.2rem; color: var(--secondary); }
.compare li { margin-bottom: 0.5rem; }

/* ---------- Case study ---------- */
.case {
  background: var(--navy);
  color: var(--lines);
  border: 1px solid var(--slate);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-lg);
}
.case .eyebrow { color: var(--muted-navy); }
.case h2 { color: #fff; }
.case__body { color: rgba(255,255,255,0.92); max-width: 60ch; font-size: 1.08rem; }
.case__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
@media (max-width: 600px) { .case__stats { grid-template-columns: 1fr; } }
.stat { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); padding: 1.25rem; }
.stat__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.stat__label { font-size: 0.9rem; color: rgba(255,255,255,0.82); }
.case__disclaimer { margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ---------- Guarantee / stand-behind ---------- */
.guarantee { max-width: 880px; margin-inline: auto; }
.guarantee__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 700px) { .guarantee__grid { grid-template-columns: 1fr; } }
.guarantee__item {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--slate);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.guarantee__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--accent-light);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.guarantee__item p { color: var(--secondary); margin: 0; font-size: 0.98rem; }
.guarantee__item strong { color: var(--text); font-weight: 700; }

/* ---------- Ladder / how it works ---------- */
.ladder { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__num {
  counter-increment: step;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lines);
  font-family: var(--font-display); font-weight: 700;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.step__num::before { content: counter(step); }
.step__body h3 { margin-bottom: 0.25rem; }
.step__body p { color: var(--secondary); margin-bottom: 0; }
.step__free { display: inline-block; font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--success); background: #e8f5e9; padding: 0.15rem 0.55rem; border-radius: 999px; margin-left: 0.5rem; vertical-align: middle; }

/* ---------- Final CTA + form ---------- */
.cta-section { background: var(--bg-light); border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-copy .lede { margin-bottom: 1.5rem; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-ui); font-weight: 700; font-size: 1.35rem;
  color: var(--navy); text-decoration: none; margin-bottom: 0.5rem;
}
.cta-phone svg { color: var(--slate); }
.cta-disclaimer { font-size: 0.85rem; color: var(--tertiary); margin-top: 1rem; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 0.25rem; }
.form-card__hint { font-size: 0.9rem; color: var(--secondary); margin-bottom: 1.25rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.field .req { color: #b71c1c; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(58, 75, 102, 0.18);
}
.field textarea { resize: vertical; min-height: 88px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.82rem; color: var(--secondary); margin-bottom: 1.25rem; }
.form-consent input { width: auto; margin-top: 3px; flex: none; }
.form-privacy-note { font-size: 0.78rem; color: var(--tertiary); margin-top: 1rem; text-align: center; }

/* ---------- Footer — navy FourLines band ---------- */
.site-footer { background: var(--navy); color: var(--muted-navy); border-top: 1px solid var(--slate); padding-block: 2.75rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-brand img { width: 30px; height: 30px; border-radius: 6px; box-shadow: inset 0 0 0 1px var(--slate); }
.footer-brand span { font-family: var(--font-ui); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.9rem; color: var(--lines); }
.footer-about { color: var(--muted-navy); font-size: 0.92rem; max-width: 40ch; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-navy); margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a, .footer-col span { color: var(--lines); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--slate);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center;
}
.footer-flc { font-size: 0.9rem; color: var(--muted-navy); }
.footer-flc a { font-weight: 600; color: var(--lines); text-decoration: none; }
.footer-flc a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer { font-size: 0.8rem; color: var(--muted-navy); max-width: 60ch; line-height: 1.5; }
.footer-disclaimer strong { color: var(--lines); }
/* light focus ring on the dark footer */
.site-footer a:focus-visible { outline-color: var(--lines); }

/* ---------- Four-lines brand divider (vertical-bar motif) ---------- */
.brand-divider {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 2.25rem;
}
.brand-divider span {
  display: block;
  width: 3px;
  height: 30px;
  background: var(--slate);
  opacity: 0.55;
}
.section-head--center .brand-divider { margin-bottom: 1.25rem; }
.brand-divider--sm { margin: 0; gap: 6px; flex: 0 0 auto; }
.brand-divider--sm span { height: 16px; width: 2.5px; }
/* on dark sections the bars read in light */
.case .brand-divider span,
.site-footer .brand-divider span { background: var(--lines); opacity: 0.4; }

/* ---------- About page ---------- */
.about-hero { background: linear-gradient(180deg, var(--accent-light), var(--white)); padding-block: clamp(3rem, 6vw, 4.5rem); }
.about-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait {
  background: var(--navy);
  border: 1px solid var(--slate);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  color: rgba(255,255,255,0.9);
}
.about-portrait svg { width: 45%; height: auto; }
.creds { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.cred-pill {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.85rem;
  background: var(--accent-light); color: var(--navy);
  padding: 0.4rem 0.9rem; border-radius: 999px; border: 1px solid rgba(58,75,102,0.18);
}
.prose p { color: var(--text); margin-bottom: 1.15rem; }
.prose h2 { margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { color: var(--text); padding-left: 1.25rem; }
.prose li { margin-bottom: 0.6rem; }

/* ---------- Contact page ---------- */
.contact-hero { background: linear-gradient(180deg, var(--accent-light), var(--white)); padding-block: clamp(3rem, 6vw, 4.5rem); }
.contact-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.contact-hero .lede { max-width: 60ch; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* Prominent direct-contact methods */
.contact-methods { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.contact-method {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--navy);
  border: 1px solid var(--slate);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  color: var(--lines);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.contact-method:hover { background: var(--slate-deep); border-color: var(--lines); color: #fff; }
.contact-method__icon {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: rgba(230, 237, 246, 0.10);
  color: var(--lines);
}
.contact-method__text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.contact-method__label { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-navy); }
.contact-method__value { font-family: var(--font-ui); font-weight: 700; font-size: 1.2rem; color: var(--lines); word-break: break-word; }

.contact-area {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem;
  color: var(--secondary); margin-bottom: 1.25rem;
}
.contact-area svg { color: var(--slate); flex: none; }

.contact-guardrails {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.75rem;
}
.contact-guardrails li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--slate);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--secondary);
}
.contact-guardrails svg { color: var(--slate); flex: none; margin-top: 2px; }

/* Who-we-help — attorneys/CPAs callout band */
.pro-callout{display:flex;align-items:center;justify-content:space-between;gap:1.75rem;flex-wrap:wrap;margin-top:2.5rem;padding:2rem 2.25rem;background:#0B1320;color:#E6EDF6;border-radius:12px}
.pro-callout__body{flex:1 1 460px;min-width:0}
.pro-callout h3{color:#fff;margin:.4rem 0 .5rem}
.pro-callout p{color:#8A9BBF;max-width:62ch;margin:0}
.pro-callout .eyebrow{color:#C9772F}
.pro-callout .btn{flex:0 0 auto}
@media (max-width:640px){.pro-callout{padding:1.5rem;gap:1.25rem}}
