/* =============================================================
   755 Financial — Marketing Site v1
   Tokens, primitives, components. Single file by design.
   ============================================================= */

:root {
  /* Color */
  --ink:        #0a1628;
  --navy:       #1B2A4E;
  --navy-deep:  #14213d;
  --slate:      #5d6770;  /* darkened from #6b7b83 to clear WCAG AA 4.5:1 on white */
  --slate-2:    #3d464d;  /* darkened from #4a565d for body copy contrast */
  --border:     #c3cace;
  --border-2:   #e6e8ea;
  --cream:      #f4f2f0;
  --cream-2:    #fbfaf8;
  --white:      #ffffff;

  /* Type */
  --font-serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Scale */
  --fs-eyebrow: 12px;
  --fs-body: 17px;
  --fs-lead: 20px;
  --fs-h3: 28px;
  --fs-h2: clamp(32px, 4vw, 48px);
  --fs-h1: clamp(40px, 6vw, 72px);
  --fs-display: clamp(48px, 8vw, 96px);

  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-body: 1.65;

  /* Space */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(64px, 9vw, 128px);
  --max-w: 1280px;
  --max-w-prose: 720px;

  /* Radius / shadow */
  --r-sm: 4px;
  --r: 6px;
  --r-lg: 10px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.04), 0 1px 1px rgba(10, 22, 40, 0.06);
  --shadow:    0 4px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* -------------------------------------------------------------
   Base
   ------------------------------------------------------------- */

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: var(--lh-snug);
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { color: var(--slate-2); }
p.lead { font-size: var(--fs-lead); color: var(--ink); line-height: 1.5; }

a { color: var(--navy); transition: color 0.2s var(--ease); }
a:hover { color: var(--navy-deep); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

.rule {
  height: 2px;
  width: 56px;
  background: var(--navy);
  border: 0;
  margin: 24px 0;
}

/* -------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255, 255, 255, 0.78); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-top: 12px; }

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn--invert {
  background: var(--white);
  color: var(--navy);
}
.btn--invert:hover { background: var(--cream); color: var(--navy); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--navy);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), gap 0.2s var(--ease);
}
.link-arrow:hover { border-color: var(--navy); gap: 10px; }

/* -------------------------------------------------------------
   Top bars (compliance + address)
   ------------------------------------------------------------- */

.bar-compliance {
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
  font-size: 12px;
  color: var(--slate);
}
.bar-compliance .wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
}
.brokercheck {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
}
.brokercheck strong { color: var(--navy); font-weight: 600; }

.bar-address {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}
.bar-address .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 10px;
}
.bar-address a { color: var(--white); opacity: 0.9; }
.bar-address a:hover { opacity: 1; color: var(--white); }
.bar-address .glyph { opacity: 0.6; margin-right: 6px; }

/* -------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-block: 18px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__mark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--slate);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  padding-block: 4px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  border-bottom-color: var(--navy);
  color: var(--navy);
}
.nav__cta { justify-self: end; display: flex; align-items: center; gap: 12px; }

/* Ask 755 RAG slot (v1: visible markup, no JS) */
.ask-755 {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  max-width: 220px;
}
.ask-755 input {
  border: 0;
  background: transparent;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.ask-755 input::placeholder { color: var(--slate); }
.ask-755 .kbd {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 3px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 10px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav { grid-template-columns: auto auto; }
  .nav__links { display: none; }
  .nav__cta .ask-755 { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* -------------------------------------------------------------
   Hero
   ------------------------------------------------------------- */

.hero {
  background: var(--cream);
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
}
.hero__inner { max-width: 1040px; }
.hero__display {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 28px;
}
.hero__display em {
  font-style: italic;
  color: var(--navy);
  font-feature-settings: 'ss01';
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--slate-2);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* -------------------------------------------------------------
   Video-background hero variant (.hero--video)
   Used on homepage. Native HTML5 <video> behind a navy gradient
   overlay; mobile + prefers-reduced-motion users see the poster
   image only (no video playback). Self-hosted MP4 + WebM at
   /assets/video/hero-1080.*. Poster at hero-poster.jpg.
   ------------------------------------------------------------- */

.hero--video {
  position: relative;
  overflow: hidden;
  background: var(--ink);                /* base while video loads */
  color: var(--white);
  isolation: isolate;
  min-height: 720px;
  padding-block: clamp(120px, 14vw, 200px);
}
.hero--video .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.85) brightness(0.78);
}
.hero--video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.55) 40%, rgba(10,22,40,0.85) 100%),
    radial-gradient(60% 50% at 25% 35%, rgba(10,22,40,0.25), rgba(10,22,40,0) 75%);
  pointer-events: none;
}
.hero--video .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hero--video .hero__tagline { color: rgba(255,255,255,0.92); }
.hero--video .eyebrow       { color: rgba(255,255,255,0.78); }
.hero--video .rule          { background: var(--white); opacity: 0.78; }
.hero--video .hero__display { color: var(--white); }
.hero--video .hero__display em { color: var(--white); font-style: italic; }
.hero--video .hero__sub     { color: rgba(255,255,255,0.92); }
.hero--video .btn--primary  { background: var(--white); color: var(--navy); }
.hero--video .btn--primary:hover { background: var(--cream); color: var(--navy-deep); }
.hero--video .link-arrow    { color: var(--white); }
.hero--video .link-arrow:hover { border-bottom-color: var(--white); }

/* prefers-reduced-motion: pause + hide video, show poster only.
   The <video> element keeps its poster attribute; CSS hides the
   playing layer so the static poster image renders cleanly. */
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__video {
    display: none;
  }
  .hero--video {
    background: var(--ink) url('../img/hero-poster.jpg') center / cover no-repeat;
  }
}

/* Service hero (editorial photo + headline) */
.hero-service {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-block: 80px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.hero-service::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 30%, rgba(10,22,40,0.75) 100%);
  pointer-events: none;
}
.hero-service .wrap { position: relative; z-index: 1; }
.hero-service h1 { color: var(--white); max-width: 900px; }
.hero-service .eyebrow { color: rgba(255,255,255,0.8); }
.hero-service p { color: rgba(255,255,255,0.88); max-width: 640px; margin-top: 20px; font-size: var(--fs-lead); }

/* -------------------------------------------------------------
   Vertical grid (3 + 4 service tiles)
   ------------------------------------------------------------- */

.vert-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
.vert-grid .tile { grid-column: span 4; }
.vert-grid .tile:nth-child(n+4) { grid-column: span 3; }

@media (max-width: 960px) {
  .vert-grid .tile, .vert-grid .tile:nth-child(n+4) { grid-column: span 6; }
}
@media (max-width: 560px) {
  .vert-grid .tile, .vert-grid .tile:nth-child(n+4) { grid-column: span 12; }
}

.tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.tile__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.tile__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tile__name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.tile:hover .tile__name { color: var(--navy); }
.tile__desc { font-size: 14px; color: var(--slate); line-height: 1.5; flex: 1; }
.tile__more {
  margin-top: 8px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* -------------------------------------------------------------
   Media + text rows (alternating)
   ------------------------------------------------------------- */

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--border-2);
}
.row:last-of-type { border-bottom: 0; }
.row--flip { direction: rtl; }
.row--flip > * { direction: ltr; }

.row__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--cream);
}
.row__body { max-width: 540px; }
.row__body h2 { margin-bottom: 16px; }
.row__body p + p { margin-top: 14px; }
.row__list {
  list-style: none;
  margin-top: 24px;
  padding: 0;
  border-top: 1px solid var(--border-2);
}
.row__list li {
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--border-2);
  color: var(--ink);
  font-size: 15px;
  position: relative;
}
.row__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 50%;
}
.row__cta { margin-top: 28px; }

@media (max-width: 760px) {
  .row { grid-template-columns: 1fr; }
  .row--flip { direction: ltr; }
}

/* -------------------------------------------------------------
   Stats strip
   ------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; gap: 40px; }
}

/* -------------------------------------------------------------
   Cross-sell on service pages
   ------------------------------------------------------------- */

.cross {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .cross { grid-template-columns: 1fr; } }

.cross__card {
  display: block;
  padding: 24px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cross__card:hover { border-color: var(--navy); transform: translateY(-2px); }
.cross__card .eyebrow { color: var(--navy); }
.cross__card h3 {
  font-size: 22px;
  margin-block: 8px 6px;
}
.cross__card p { font-size: 14px; }

/* -------------------------------------------------------------
   FAQ accordion (Round 3 — GEO-cited Q&A blocks)
   Native <details><summary> — zero JS. FAQPage schema lives in
   the JSON-LD graph in the page head.
   ------------------------------------------------------------- */

.faq {
  border-top: 1px solid var(--border-2);
  margin-top: 24px;
}
.faq__item {
  border-bottom: 1px solid var(--border-2);
  padding: 22px 0;
}
.faq__item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after {
  content: '＋';
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1;
  color: var(--navy);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] > summary { color: var(--navy); }
.faq__item[open] > summary::after { content: '−'; }
.faq__item > summary:hover { color: var(--navy); }
.faq__answer {
  padding-top: 16px;
  padding-right: 56px;
  color: var(--slate-2);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}
.faq__answer p + p { margin-top: 12px; }
.faq__sources {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.faq__sources span + span::before { content: ' · '; opacity: 0.5; }

@media (max-width: 640px) {
  .faq__item > summary { font-size: 19px; gap: 16px; }
  .faq__answer { padding-right: 0; font-size: 15px; }
}

/* -------------------------------------------------------------
   Closing CTA section
   ------------------------------------------------------------- */

.cta-final {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(80px, 10vw, 140px);
  text-align: left;
}
.cta-final h2 { color: var(--white); max-width: 800px; margin-bottom: 32px; }
.cta-final p { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 600px; }

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */

.footer {
  background: var(--white);
  border-top: 1px solid var(--border-2);
  padding-top: 64px;
  padding-bottom: 32px;
  font-size: 14px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer__brand .brand__mark { font-size: 22px; }
.footer__brand p {
  margin-top: 16px;
  color: var(--slate);
  font-size: 14px;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a { color: var(--slate-2); font-size: 14px; }
.footer__col a:hover { color: var(--navy); }

.footer__disclosure {
  border-top: 1px solid var(--border-2);
  padding-top: 28px;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 100%;
}
.footer__disclosure p + p { margin-top: 12px; }
.footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--slate);
}

@media (max-width: 880px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* -------------------------------------------------------------
   Page-specific: About
   ------------------------------------------------------------- */

.about-block { max-width: var(--max-w-prose); }
.about-block + .about-block { margin-top: 64px; }
.about-block h2 { margin-bottom: 16px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 28px;
  border-top: 2px solid var(--navy);
  background: var(--cream-2);
}
.value h3 { font-size: 22px; margin-bottom: 8px; }
.value p { font-size: 15px; }

/* -------------------------------------------------------------
   Page-specific: Contact
   ------------------------------------------------------------- */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-split { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--cream-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-card dl { display: grid; gap: 20px; margin-top: 24px; }
.contact-card dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 4px;
}
.contact-card dd { margin: 0; color: var(--ink); font-size: 16px; }

.calendly-stub {
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 48px 32px;
  text-align: center;
  background: var(--cream-2);
}
.calendly-stub h3 { margin-bottom: 8px; }
.calendly-stub p { font-size: 14px; }

/* Phase 2 textarea slot — visible in v1, non-functional */
.textarea-slot {
  margin-top: 32px;
  padding: 32px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  background: var(--white);
}
.textarea-slot label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 12px;
}
.textarea-slot textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
}
.textarea-slot textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.textarea-slot .hint { font-size: 12px; color: var(--slate); margin-top: 10px; }

/* -------------------------------------------------------------
   Page-specific: Insights stub
   ------------------------------------------------------------- */

.stub {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 120px;
}
.stub h1 { max-width: 720px; margin-bottom: 20px; }
.stub p { max-width: 540px; margin-inline: auto; }

/* -------------------------------------------------------------
   Utilities
   ------------------------------------------------------------- */

.center-text { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.hide-mobile { }
@media (max-width: 720px) { .hide-mobile { display: none; } }

/* Skip link for a11y */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: 16px; top: 16px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  z-index: 100;
  border-radius: var(--r);
}
