@font-face {
  font-family: "Libre Caslon Text";
  src: url("../fonts/LibreCaslonText-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ocva-navy: #0a3161;
  --ocva-navy-deep: #02244d;
  --ocva-red: #b31942;
  --ocva-red-dark: #8d1433;
  --ocva-white: #ffffff;
  --ocva-cloud: #f4f6f8;
  --ocva-ink: #171a1f;
  --ocva-muted: #4d5965;
  --ocva-line: #d7dee7;
  --ocva-display: "Libre Caslon Text", Georgia, serif;
  --ocva-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ocva-focus: #ffcc4d;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ocva-ink);
  background: var(--ocva-white);
  font-family: var(--ocva-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ocva-white);
  background: var(--ocva-red);
}

* {
  scrollbar-color: var(--ocva-red) var(--ocva-cloud);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--ocva-cloud);
}

*::-webkit-scrollbar-thumb {
  background: var(--ocva-red);
  border: 2px solid var(--ocva-cloud);
  border-radius: 999px;
}

button,
input {
  accent-color: var(--ocva-red);
  caret-color: var(--ocva-red);
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:focus-visible {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 4px;
}

.ocva-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  border: 2px solid var(--ocva-red);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

.ocva-skip-link:focus {
  transform: translateY(0);
}

.ocva-masthead {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 0 80px 0 42px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-wordmark {
  flex: 0 0 auto;
  font-family: var(--ocva-display);
  font-size: clamp(1.75rem, 2.15vw, 2.08rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.028em;
  text-decoration: none;
  white-space: nowrap;
}

.ocva-adviser-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.ocva-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 44px;
  gap: 8px;
  padding: 0 12px;
  color: var(--ocva-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-weight: 700;
}

.ocva-menu-toggle svg,
.ocva-drawer-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.ocva-menu-toggle:focus-visible,
.ocva-drawer-close:focus-visible,
.ocva-faq-list button:focus-visible {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.ocva-mobile-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
}

.ocva-mobile-drawer[hidden] {
  display: none;
}

.ocva-drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(2, 36, 77, 0.68);
  border: 0;
}

.ocva-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 92vw);
  height: 100%;
  padding: max(24px, env(safe-area-inset-top)) 28px calc(28px + env(safe-area-inset-bottom));
  flex-direction: column;
  overflow-y: auto;
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  box-shadow: -16px 0 48px rgba(2, 36, 77, 0.24);
}

.ocva-drawer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 4px solid var(--ocva-red);
}

.ocva-drawer-heading strong {
  min-width: 0;
  font-family: var(--ocva-display);
  font-size: 1.45rem;
}

.ocva-drawer-close {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ocva-navy-deep);
  background: var(--ocva-cloud);
  border: 0;
  border-radius: 8px;
}

.ocva-drawer-panel nav {
  display: grid;
  margin: 16px 0 28px;
}

.ocva-drawer-panel nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--ocva-line);
  font-weight: 700;
  text-decoration: none;
}

.ocva-drawer-panel nav a:hover {
  color: var(--ocva-red);
}

.ocva-drawer-contact {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ocva-muted);
  font-size: 0.92rem;
}

.ocva-drawer-contact a {
  color: var(--ocva-navy-deep);
  font-weight: 700;
}

.ocva-arbor-logo {
  display: block;
  width: 180px;
  height: auto;
}

.ocva-lockup-rule {
  width: 1px;
  height: 50px;
  margin: 0 30px 0 22px;
  background: rgba(255, 255, 255, 0.42);
}

.ocva-contact-lines {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
}

.ocva-contact-lines a {
  text-decoration: none;
}

.ocva-contact-lines a:hover {
  text-decoration: underline;
}

.ocva-hero {
  position: relative;
  isolation: isolate;
  height: 620px;
  overflow: hidden;
  background: #e9eef3;
}

.ocva-hero-picture,
.ocva-hero-picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ocva-hero-picture {
  z-index: -2;
}

.ocva-hero-picture img {
  left: auto;
  object-fit: cover;
  object-position: center 50%;
  right: 0;
  width: 91%;
}

.ocva-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.99) 27%,
    rgba(255, 255, 255, 0.92) 43%,
    rgba(255, 255, 255, 0.42) 57%,
    rgba(255, 255, 255, 0) 72%
  );
}

.ocva-hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 60vw);
  padding: 116px 0 0 80px;
}

.ocva-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(3.7rem, 4.95vw, 4.72rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.037em;
  text-wrap: balance;
  transform: scaleX(0.94);
  transform-origin: left center;
}

.ocva-hero-copy > p {
  max-width: 540px;
  margin: 27px 0 0;
  color: var(--ocva-ink);
  font-size: 20px;
  line-height: 1.58;
}

.ocva-hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 38px;
}

.ocva-hero-actions .ocva-button-primary {
  min-width: 258px;
}

.ocva-hero-actions .ocva-button-secondary {
  min-width: 284px;
}

.ocva-hero-copy > .ocva-application-handoff {
  max-width: 62ch;
  margin: 14px 0 0;
  color: var(--ocva-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.ocva-application-notice {
  margin: 0;
  padding: 9px 24px 10px;
  color: var(--ocva-muted);
  background: var(--ocva-cloud);
  border-bottom: 1px solid var(--ocva-line);
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
}

.ocva-drawer-application-notice {
  margin: 10px 0 0;
  color: var(--ocva-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.ocva-plan-actions [hidden] {
  display: none;
}

.ocva-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 36px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out;
}

.ocva-button-primary {
  color: var(--ocva-white);
  background: var(--ocva-red);
  border-color: var(--ocva-red);
  padding-inline: 34px;
}

.ocva-button-primary:hover {
  background: var(--ocva-red-dark);
  border-color: var(--ocva-red-dark);
}

.ocva-button-secondary {
  color: var(--ocva-navy-deep);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--ocva-navy-deep);
  padding-inline: 30px;
}

.ocva-button-secondary:hover {
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-guidance-signature {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: 20px;
  width: 476px;
  margin-top: 42px;
  color: var(--ocva-navy-deep);
  font-size: 16px;
}

.ocva-guidance-signature span {
  height: 1px;
  background: var(--ocva-red);
}

.ocva-hero-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: var(--ocva-navy-deep);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration-color: var(--ocva-red);
  text-decoration-thickness: 2px;
}

.ocva-hero-guide-link svg,
.ocva-text-link svg,
.ocva-faq-heading > a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ocva-decision-rail {
  --ocva-route-position: 16.667%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 314px;
  border-top: 12px solid var(--ocva-red);
  background: var(--ocva-white);
}

.ocva-decision-rail::after {
  position: absolute;
  z-index: 3;
  top: -17px;
  left: var(--ocva-route-position);
  width: 22px;
  height: 22px;
  content: "";
  background: var(--ocva-red);
  border: 4px solid var(--ocva-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ocva-red);
  transform: translateX(-50%);
  transition: left 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ocva-decision {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px 30px 24px;
  color: var(--ocva-ink);
  text-align: center;
  text-decoration: none;
}

.ocva-decision + .ocva-decision {
  border-left: 8px solid var(--ocva-red);
}

.ocva-decision-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
  border-radius: 50%;
  transition: background-color 180ms ease-out, transform 180ms ease-out;
}

.ocva-decision-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ocva-decision strong {
  margin-top: 13px;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: 27px;
  line-height: 1.1;
}

.ocva-decision > span:not(.ocva-decision-icon) {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
}

.ocva-decision em {
  margin-top: 10px;
  color: var(--ocva-red);
  border-bottom: 2px solid currentColor;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

.ocva-decision:hover .ocva-decision-icon {
  background: var(--ocva-navy);
  transform: translateY(-3px);
}

main {
  overflow: clip;
}

.ocva-shell {
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.ocva-section {
  padding-block: 112px;
  scroll-margin-top: 72px;
}

.ocva-section h2,
.ocva-final-cta h2 {
  margin: 0;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(2.75rem, 4.25vw, 4.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.ocva-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.ocva-section-heading > p,
.ocva-briefing-heading > p,
.ocva-faq-heading > p {
  max-width: 66ch;
  margin: 0;
  color: var(--ocva-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.ocva-primary-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-primary-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: min(1360px, calc(100% - 80px));
  height: 100%;
  margin-inline: auto;
}

.ocva-primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding-inline: 22px;
  color: var(--ocva-navy-deep);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.ocva-primary-nav a::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 3px;
  content: "";
  background: var(--ocva-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ocva-primary-nav a:hover::after,
.ocva-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.ocva-primary-nav .ocva-nav-apply {
  min-width: 138px;
  margin: 8px 0 8px 22px;
  color: var(--ocva-white);
  background: var(--ocva-red);
  border-radius: 8px;
}

.ocva-primary-nav .ocva-nav-apply:hover {
  background: var(--ocva-red-dark);
}

.ocva-primary-nav .ocva-nav-apply::after {
  display: none;
}

.ocva-intro {
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
}

.ocva-intro h2 {
  color: var(--ocva-white);
}

.ocva-intro-copy {
  max-width: 690px;
  padding-top: 8px;
}

.ocva-intro-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.ocva-intro-copy p + p {
  margin-top: 22px;
}

.ocva-trust-ledger {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.8fr 1.15fr;
  margin-top: 80px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.ocva-trust-ledger > div {
  min-width: 0;
  padding: 26px 24px 28px;
}

.ocva-trust-ledger > div:first-child {
  padding-left: 0;
}

.ocva-trust-ledger > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.ocva-trust-ledger dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ocva-trust-ledger dd {
  margin: 0;
  color: var(--ocva-white);
  font-weight: 700;
  line-height: 1.45;
}

.ocva-paths {
  background: var(--ocva-white);
}

.ocva-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ocva-line);
}

.ocva-path {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 176px;
  gap: 36px;
  padding: 30px 36px 30px 0;
  overflow: hidden;
  color: var(--ocva-navy-deep);
  border-bottom: 1px solid var(--ocva-line);
  text-decoration: none;
}

.ocva-path:nth-child(even) {
  padding-left: 36px;
  border-left: 1px solid var(--ocva-line);
}

.ocva-path::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--ocva-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ocva-path:hover::after,
.ocva-path:focus-visible::after {
  transform: scaleX(1);
}

.ocva-path > span {
  display: grid;
  gap: 9px;
}

.ocva-path strong {
  font-family: var(--ocva-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.15;
}

.ocva-path small {
  max-width: 48ch;
  color: var(--ocva-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.ocva-path svg,
.ocva-resource-list svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--ocva-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ocva-path:hover svg,
.ocva-resource-list a:hover svg {
  transform: translateX(5px);
}

.ocva-briefing {
  color: var(--ocva-white);
  background: var(--ocva-navy);
}

.ocva-briefing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 110px;
}

.ocva-briefing h2,
.ocva-briefing h3 {
  color: var(--ocva-white);
}

.ocva-briefing-heading {
  align-self: start;
  position: sticky;
  top: 104px;
}

.ocva-briefing-heading > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.ocva-briefing-ledger {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.ocva-briefing-ledger article {
  display: grid;
  grid-template-columns: minmax(165px, 0.6fr) minmax(0, 1.4fr);
  column-gap: 42px;
  padding: 32px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.ocva-briefing-ledger h3 {
  grid-row: 1 / span 3;
  margin: 0;
  font-family: var(--ocva-display);
  font-size: 1.7rem;
  line-height: 1.2;
}

.ocva-briefing-ledger p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.ocva-briefing-ledger a,
.ocva-inline-links a {
  color: var(--ocva-white);
  font-weight: 750;
  text-decoration-color: var(--ocva-red);
  text-decoration-thickness: 2px;
}

.ocva-briefing-ledger article > a,
.ocva-briefing-ledger .ocva-inline-links {
  margin-top: 16px;
}

.ocva-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.ocva-calculator {
  background: #fbfbfa;
}

.ocva-calculator-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  overflow: hidden;
  background: var(--ocva-white);
  border-top: 8px solid var(--ocva-red);
}

.ocva-calculator-form {
  padding: 52px 56px 58px;
}

.ocva-calculator-example {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 46px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-calculator-example p {
  max-width: 62ch;
  margin: 0;
  color: var(--ocva-muted);
  line-height: 1.6;
}

.ocva-calculator-example strong {
  color: var(--ocva-navy-deep);
}

.ocva-calculator-example button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0;
  color: var(--ocva-red);
  background: transparent;
  border: 0;
  border-bottom: 2px solid currentColor;
  cursor: pointer;
  font-weight: 800;
}

.ocva-calculator-example button:focus-visible {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.ocva-calculator-error {
  margin: -16px 0 32px;
  padding: 14px 16px;
  color: var(--ocva-white);
  background: var(--ocva-red-dark);
  font-weight: 750;
  line-height: 1.5;
}

.ocva-calculator-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.ocva-calculator-form fieldset + fieldset {
  margin-top: 48px;
  padding-top: 0;
  border-top: 1px solid var(--ocva-line);
}

.ocva-calculator-form legend {
  width: 100%;
  margin-bottom: 26px;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.ocva-calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.ocva-calc-field {
  display: grid;
  grid-template-rows: minmax(min-content, 1fr) 58px;
  min-width: 0;
  gap: 9px;
  color: var(--ocva-navy-deep);
  font-weight: 750;
}

.ocva-calc-field > span:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.35;
}

.ocva-calc-field > span:first-child output {
  color: var(--ocva-red);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

.ocva-input-control {
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  color: var(--ocva-muted);
  background: var(--ocva-white);
  border: 2px solid #7f8994;
  border-radius: 8px;
}

.ocva-input-control > span {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-width: 44px;
  color: var(--ocva-navy-deep);
  background: var(--ocva-cloud);
  font-weight: 800;
}

.ocva-input-control input {
  min-width: 0;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: var(--ocva-navy-deep);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1.08rem;
  font-variant-numeric: tabular-nums;
}

.ocva-input-control:focus-within,
.ocva-calc-field select:focus-visible {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--ocva-navy-deep);
}

.ocva-input-control:has(input[aria-invalid="true"]) {
  border-color: var(--ocva-red);
}

.ocva-calc-field select {
  width: 100%;
  min-height: 58px;
  padding: 0 42px 0 16px;
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  border: 2px solid #7f8994;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.ocva-calculator-choice {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: var(--ocva-navy-deep);
  font-weight: 750;
}

.ocva-calculator-choice[hidden] {
  display: none;
}

.ocva-calculator-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.ocva-calculator-choice label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  cursor: pointer;
}

.ocva-calculator-choice label:has(input:focus-visible) {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--ocva-navy-deep);
}

.ocva-calculator-choice input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.ocva-calculator-help {
  max-width: 70ch;
  margin: 18px 0 0;
  color: var(--ocva-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ocva-calculator-result {
  display: flex;
  flex-direction: column;
  padding: 56px 52px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-calculator-total {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.ocva-calculator-total h3 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--ocva-display);
  font-size: clamp(2rem, 3.15vw, 3rem);
  line-height: 1.08;
}

.ocva-calculator-total > output {
  display: block;
  margin-top: 24px;
  color: var(--ocva-white);
  font-family: var(--ocva-display);
  font-size: clamp(3.3rem, 5.2vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.ocva-calculator-total p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.ocva-calculator-breakdown {
  margin: 20px 0 0;
}

.ocva-calculator-breakdown > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.ocva-calculator-breakdown dt {
  color: rgba(255, 255, 255, 0.72);
}

.ocva-calculator-breakdown dt span {
  color: var(--ocva-white);
  font-weight: 800;
}

.ocva-calculator-breakdown dd {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: var(--ocva-white);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.ocva-calculator-breakdown dd span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 600;
}

.ocva-calculator-source {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.65;
}

.ocva-calculator-source a {
  color: var(--ocva-white);
  font-weight: 750;
  text-decoration-color: var(--ocva-red);
  text-decoration-thickness: 2px;
}

.ocva-calculator-actions {
  display: grid;
  justify-items: start;
  gap: 20px;
  margin-top: auto;
  padding-top: 38px;
}

.ocva-calculator-actions > a:last-child {
  color: var(--ocva-white);
  font-weight: 800;
}

.ocva-calculator-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 52px;
  padding-top: 30px;
}

.ocva-calculator-notes p {
  max-width: 98ch;
  margin: 0;
  color: var(--ocva-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.ocva-calculator-notes a {
  color: var(--ocva-red);
  font-size: 0.9rem;
  font-weight: 800;
}

.ocva-calculator-notes a:focus-visible {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.ocva-plan {
  --ocva-plan-progress: 0;
  background: #edf3f8;
}

.ocva-plan.is-reviewed {
  --ocva-plan-progress: 0.5;
}

.ocva-plan.is-ready {
  --ocva-plan-progress: 1;
}

.ocva-section-heading-wide {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
}

.ocva-plan-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}

.ocva-plan-steps::before {
  position: absolute;
  z-index: 0;
  top: 25px;
  right: 16%;
  left: 16%;
  height: 2px;
  content: "";
  background: #c3ced9;
}

.ocva-plan-steps::after {
  position: absolute;
  z-index: 0;
  top: 25px;
  left: 16%;
  width: 68%;
  height: 2px;
  content: "";
  background: var(--ocva-red);
  transform: scaleX(var(--ocva-plan-progress));
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ocva-plan-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--ocva-navy-deep);
  text-align: center;
}

.ocva-plan-steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
  border: 6px solid #edf3f8;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ocva-plan-steps li:first-child span,
.ocva-plan.is-reviewed .ocva-plan-steps li:nth-child(2) span,
.ocva-plan.is-ready .ocva-plan-steps li:nth-child(3) span {
  background: var(--ocva-red);
}

.ocva-plan-steps strong {
  font-family: var(--ocva-display);
  font-size: 1.35rem;
}

.ocva-plan-builder {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  min-height: 510px;
  overflow: hidden;
  background: var(--ocva-white);
  border-top: 6px solid var(--ocva-red);
}

.ocva-goal-choices {
  margin: 0;
  padding: 48px 54px;
  border: 0;
}

.ocva-goal-choices legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.ocva-goal-choices label {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 16px;
  color: var(--ocva-navy-deep);
  border-top: 1px solid var(--ocva-line);
  cursor: pointer;
  font-weight: 700;
}

.ocva-goal-choices label:last-child {
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-goal-choices input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.ocva-goal-choices label:has(input:checked) {
  color: var(--ocva-red);
}

.ocva-goal-choices label:has(input:focus-visible) {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.ocva-plan-result {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 56px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-plan-result h3 {
  margin: 0;
  font-family: var(--ocva-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.ocva-plan-result > p {
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.ocva-plan-actions {
  display: grid;
  justify-items: start;
  gap: 22px;
  margin-top: 34px;
}

.ocva-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocva-white);
  font-weight: 750;
  text-decoration-color: var(--ocva-red);
  text-decoration-thickness: 2px;
}

.ocva-local {
  background: var(--ocva-white);
}

.ocva-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 110px;
}

.ocva-local-map {
  min-height: 570px;
  background: var(--ocva-cloud);
  border-bottom: 8px solid var(--ocva-red);
}

.ocva-local-map svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  fill: var(--ocva-navy-deep);
  font-family: var(--ocva-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ocva-map-contour {
  fill: none;
  stroke: #b9c9da;
  stroke-width: 18;
}

.ocva-map-route {
  fill: none;
  stroke: var(--ocva-red);
  stroke-linecap: round;
  stroke-width: 4;
}

.ocva-local-map circle {
  fill: var(--ocva-white);
  stroke: var(--ocva-red);
  stroke-width: 4;
}

.ocva-local-map .ocva-map-label {
  fill: var(--ocva-red);
  font-family: var(--ocva-display);
  font-size: 28px;
  letter-spacing: 0;
}

.ocva-local-copy h2 {
  max-width: 760px;
}

.ocva-local-copy > p {
  max-width: 64ch;
  margin: 30px 0 44px;
  color: var(--ocva-muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.ocva-local-links {
  border-top: 1px solid var(--ocva-line);
}

.ocva-local-links a {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  padding: 22px 0;
  color: var(--ocva-navy-deep);
  border-bottom: 1px solid var(--ocva-line);
  text-decoration: none;
}

.ocva-local-links a:hover strong {
  color: var(--ocva-red);
}

.ocva-local-links span {
  color: var(--ocva-muted);
}

.ocva-about {
  background: #fbfbfa;
}

.ocva-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 110px;
}

.ocva-about-picture {
  display: block;
  height: 620px;
  overflow: hidden;
  border-bottom: 8px solid var(--ocva-red);
}

.ocva-about-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 50%;
}

.ocva-about-role {
  margin: 20px 0 28px;
  color: var(--ocva-red);
  font-size: 1.08rem;
  font-weight: 800;
}

.ocva-about-copy > p:not(.ocva-about-role) {
  max-width: 62ch;
  margin: 0;
  color: var(--ocva-muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.ocva-contact-ledger {
  margin: 38px 0 0;
  border-top: 1px solid var(--ocva-line);
}

.ocva-contact-ledger > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-contact-ledger dt {
  color: var(--ocva-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ocva-contact-ledger dd {
  margin: 0;
  color: var(--ocva-navy-deep);
  font-weight: 750;
}

.ocva-about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 36px;
}

.ocva-about-actions .ocva-inline-links a {
  color: var(--ocva-navy-deep);
}

.ocva-resources {
  background: var(--ocva-white);
}

.ocva-resource-list {
  border-top: 1px solid var(--ocva-line);
}

.ocva-resource-list > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  gap: 42px;
  padding: 24px 12px 24px 0;
  color: var(--ocva-navy-deep);
  border-bottom: 1px solid var(--ocva-line);
  text-decoration: none;
}

.ocva-resource-list > a:hover strong {
  color: var(--ocva-red);
}

.ocva-resource-list span {
  display: grid;
  gap: 7px;
}

.ocva-resource-list small {
  color: var(--ocva-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ocva-resource-list strong {
  font-family: var(--ocva-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.25;
  transition: color 180ms ease-out;
}

.ocva-resource-archive {
  margin-top: 40px;
}

.ocva-faq {
  background: var(--ocva-cloud);
}

.ocva-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 110px;
}

.ocva-faq-heading {
  position: sticky;
  top: 104px;
}

.ocva-faq-heading > p {
  margin-top: 26px;
}

.ocva-faq-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--ocva-red);
  font-weight: 800;
}

.ocva-faq-list {
  border-top: 1px solid var(--ocva-line);
}

.ocva-faq-list article {
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-faq-list h3 {
  margin: 0;
}

.ocva-faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 98px;
  gap: 32px;
  padding: 24px 0;
  color: var(--ocva-navy-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--ocva-display);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.ocva-faq-list button svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ocva-red);
  stroke-linecap: round;
  stroke-width: 2;
  transition: transform 180ms ease-out;
}

.ocva-faq-list button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.ocva-faq-answer p {
  max-width: 70ch;
  margin: -4px 54px 30px 0;
  color: var(--ocva-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.ocva-final-cta {
  color: var(--ocva-white);
  background: var(--ocva-navy);
  border-top: 8px solid var(--ocva-red);
}

.ocva-final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.ocva-final-cta h2 {
  color: var(--ocva-white);
}

.ocva-final-cta p {
  max-width: 62ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.ocva-final-actions {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
}

.ocva-button-on-dark {
  color: var(--ocva-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.ocva-button-on-dark:hover {
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  border-color: var(--ocva-white);
}

.ocva-final-call {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 6px;
  color: var(--ocva-white);
  font-weight: 750;
}

.ocva-footer {
  padding: 78px 0 30px;
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
}

.ocva-footer-main {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.8fr;
  gap: 80px;
}

.ocva-footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 30px;
}

.ocva-footer-wordmark {
  font-family: var(--ocva-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.ocva-footer-brand img {
  width: 190px;
  height: auto;
}

.ocva-footer-contact,
.ocva-footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.ocva-footer-contact span {
  color: rgba(255, 255, 255, 0.7);
}

.ocva-footer-contact a,
.ocva-footer-nav a {
  color: var(--ocva-white);
}

.ocva-footer-nav {
  gap: 12px;
}

.ocva-footer-nav a {
  font-weight: 700;
  text-decoration: none;
}

.ocva-footer-nav a:hover {
  color: #ff8ca6;
}

.ocva-disclosure {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.ocva-disclosure p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  line-height: 1.65;
}

.ocva-disclosure div {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  font-size: 0.875rem;
}

.ocva-mobile-actions {
  display: none;
}

@media (max-width: 1199px) {
  .ocva-masthead {
    padding-inline: 28px;
  }

  .ocva-contact-lines {
    font-size: 15px;
  }

  .ocva-lockup-rule {
    margin-inline: 18px;
  }

  .ocva-arbor-logo {
    width: 155px;
  }

  .ocva-hero-copy {
    width: 57vw;
    padding-left: 52px;
  }

  .ocva-hero h1 {
    font-size: clamp(3.25rem, 5.6vw, 4.35rem);
  }

  .ocva-shell {
    width: min(1120px, calc(100% - 64px));
  }

  .ocva-section-heading,
  .ocva-section-heading-wide {
    gap: 54px;
  }

  .ocva-primary-nav-inner {
    width: calc(100% - 36px);
  }

  .ocva-primary-nav a {
    min-width: 0;
    padding-inline: 16px;
  }

  .ocva-primary-nav .ocva-nav-apply {
    min-width: 122px;
    margin-left: 12px;
  }

  .ocva-intro-grid,
  .ocva-briefing-grid,
  .ocva-local-grid,
  .ocva-about-grid,
  .ocva-faq-grid {
    gap: 68px;
  }

  .ocva-trust-ledger {
    grid-template-columns: 0.8fr 1.15fr 0.75fr 1.1fr;
  }

  .ocva-trust-ledger > div {
    padding-inline: 18px;
  }

  .ocva-plan-builder {
    grid-template-columns: 1fr 0.9fr;
  }

  .ocva-calculator-frame {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  }

  .ocva-calculator-form,
  .ocva-calculator-result {
    padding-inline: 40px;
  }

  .ocva-plan-result,
  .ocva-goal-choices {
    padding-inline: 40px;
  }

  .ocva-final-cta-grid {
    gap: 54px;
  }
}

@media (min-width: 901px) and (max-width: 980px) {
  .ocva-header-email,
  .ocva-contact-topline > span:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 900px) {
  .ocva-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    height: auto;
    min-height: 122px;
    gap: 10px 22px;
    padding: 16px 28px;
  }

  .ocva-wordmark {
    grid-column: 1;
    grid-row: 1;
  }

  .ocva-menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .ocva-adviser-lockup {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    width: 100%;
    height: auto;
  }

  .ocva-lockup-rule {
    display: none;
  }

  .ocva-contact-lines strong,
  .ocva-contact-topline > span,
  .ocva-header-email,
  .ocva-header-licences {
    display: none;
  }

  .ocva-contact-lines {
    display: block;
    font-size: 0.96rem;
  }

  .ocva-header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 800;
  }

  .ocva-primary-nav {
    display: none;
  }

  .ocva-application-notice {
    display: none;
  }

  .ocva-hero {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
    background: var(--ocva-white);
  }

  .ocva-hero::after {
    display: none;
  }

  .ocva-hero-copy {
    order: 1;
    width: 100%;
    padding: 64px 36px 54px;
  }

  .ocva-hero h1 {
    max-width: 700px;
    font-size: clamp(3.3rem, 8vw, 4.7rem);
    transform: none;
  }

  .ocva-hero-copy > p {
    max-width: 640px;
  }

  .ocva-hero-picture {
    position: relative;
    order: 2;
    height: min(78vw, 620px);
  }

  .ocva-hero-picture img {
    object-position: 67% 34%;
    width: 100%;
  }

  .ocva-decision-rail {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .ocva-decision {
    min-height: 290px;
  }

  .ocva-decision:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 8px solid var(--ocva-red);
    border-left: 0;
  }

  .ocva-shell {
    width: calc(100% - 64px);
  }

  .ocva-section {
    padding-block: 88px;
  }

  .ocva-section-heading,
  .ocva-section-heading-wide {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .ocva-intro-grid,
  .ocva-briefing-grid,
  .ocva-local-grid,
  .ocva-about-grid,
  .ocva-faq-grid,
  .ocva-final-cta-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .ocva-trust-ledger {
    grid-template-columns: 1fr 1fr;
    margin-top: 58px;
  }

  .ocva-trust-ledger > div,
  .ocva-trust-ledger > div:first-child {
    padding: 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .ocva-trust-ledger > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .ocva-trust-ledger > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .ocva-path {
    min-height: 158px;
    padding-right: 24px;
  }

  .ocva-path:nth-child(even) {
    padding-left: 24px;
  }

  .ocva-briefing-heading,
  .ocva-faq-heading {
    position: static;
  }

  .ocva-plan-builder {
    grid-template-columns: 1fr;
  }

  .ocva-calculator-frame {
    grid-template-columns: 1fr;
  }

  .ocva-calculator-result {
    min-height: 720px;
  }

  .ocva-calculator-notes {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ocva-plan-result {
    min-height: 430px;
  }

  .ocva-local-copy,
  .ocva-about-copy {
    order: 1;
  }

  .ocva-local-map,
  .ocva-about-picture {
    order: 2;
  }

  .ocva-local-map,
  .ocva-local-map svg {
    min-height: 500px;
  }

  .ocva-about-picture {
    height: min(78vw, 650px);
  }

  .ocva-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .ocva-footer-brand {
    grid-column: 1 / -1;
  }

  .ocva-disclosure {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .ocva-masthead {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 118px;
    column-gap: 8px;
    padding: 16px 20px;
  }

  .ocva-wordmark {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.35rem;
  }

  .ocva-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    min-width: 62px;
    padding-inline: 8px;
  }

  .ocva-adviser-lockup {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
  }

  .ocva-arbor-logo {
    width: 134px;
  }

  .ocva-lockup-rule {
    display: none;
  }

  .ocva-contact-lines {
    display: block;
    font-size: 15px;
  }

  .ocva-header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-weight: 700;
  }

  .ocva-hero-copy {
    padding: 48px 20px 44px;
  }

  .ocva-hero h1 {
    font-size: clamp(2.75rem, 12.3vw, 3.35rem);
    letter-spacing: -0.035em;
  }

  .ocva-hero h1 br {
    display: none;
  }

  .ocva-hero-copy > p {
    margin-top: 22px;
    font-size: 18px;
  }

  .ocva-hero-copy > .ocva-application-handoff {
    margin-top: 14px;
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .ocva-hero-actions {
    gap: 12px;
    flex-direction: column;
    margin-top: 28px;
  }

  .ocva-button {
    width: 100%;
    min-height: 58px;
    padding-inline: 20px;
    font-size: 17px;
  }

  .ocva-hero-actions .ocva-button {
    min-width: 0;
  }

  .ocva-guidance-signature {
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 30px;
    font-size: 14px;
  }

  .ocva-hero-picture {
    height: 92vw;
    max-height: 520px;
    min-height: 350px;
  }

  .ocva-decision-rail {
    display: block;
    border-top-width: 10px;
  }

  .ocva-decision-rail::after {
    display: none;
  }

  .ocva-decision {
    min-height: 270px;
    padding: 30px 20px;
  }

  .ocva-decision + .ocva-decision {
    border-top: 6px solid var(--ocva-red);
    border-left: 0;
  }

  .ocva-shell {
    width: calc(100% - 40px);
  }

  .ocva-section {
    padding-block: 72px;
    scroll-margin-top: 16px;
  }

  .ocva-section h2,
  .ocva-final-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .ocva-section-heading,
  .ocva-section-heading-wide {
    margin-bottom: 38px;
  }

  .ocva-intro-grid,
  .ocva-briefing-grid,
  .ocva-local-grid,
  .ocva-about-grid,
  .ocva-faq-grid,
  .ocva-final-cta-grid {
    gap: 40px;
  }

  .ocva-intro-copy p {
    font-size: 1.12rem;
  }

  .ocva-trust-ledger {
    display: block;
    width: calc(100% - 40px);
  }

  .ocva-trust-ledger > div,
  .ocva-trust-ledger > div:first-child,
  .ocva-trust-ledger > div:nth-last-child(-n + 2) {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .ocva-trust-ledger > div:last-child {
    border-bottom: 0;
  }

  .ocva-trust-ledger > div + div {
    border-left: 0;
  }

  .ocva-path-grid {
    grid-template-columns: 1fr;
  }

  .ocva-path,
  .ocva-path:nth-child(even) {
    min-height: 148px;
    padding: 25px 10px 25px 0;
    border-left: 0;
  }

  .ocva-path {
    gap: 20px;
  }

  .ocva-briefing-ledger article {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 28px;
  }

  .ocva-briefing-ledger h3 {
    grid-row: auto;
  }

  .ocva-plan-steps {
    margin-bottom: 34px;
  }

  .ocva-calculator-form,
  .ocva-calculator-result {
    padding: 36px 24px 42px;
  }

  .ocva-calculator-example {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 38px;
  }

  .ocva-calculator-fields {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ocva-calculator-choice > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .ocva-calculator-form fieldset + fieldset {
    margin-top: 40px;
    padding-top: 0;
  }

  .ocva-calculator-result {
    min-height: 0;
  }

  .ocva-calculator-total > output {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .ocva-calculator-breakdown > div {
    gap: 14px;
  }

  .ocva-calculator-actions {
    align-items: stretch;
    justify-items: stretch;
  }

  .ocva-calculator-actions > a:last-child {
    text-align: center;
  }

  .ocva-calculator-notes {
    padding-top: 24px;
  }

  .ocva-plan-steps::before {
    right: 12%;
    left: 12%;
  }

  .ocva-plan-steps::after {
    left: 12%;
  }

  .ocva-plan-steps strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .ocva-goal-choices,
  .ocva-plan-result {
    padding: 34px 24px;
  }

  .ocva-goal-choices legend {
    font-size: 1.55rem;
  }

  .ocva-plan-result {
    min-height: 400px;
  }

  .ocva-local-map,
  .ocva-local-map svg {
    min-height: 390px;
  }

  .ocva-local-links a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .ocva-about-picture {
    height: min(112vw, 520px);
  }

  .ocva-contact-ledger > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ocva-about-actions,
  .ocva-about-actions .ocva-inline-links {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .ocva-resource-list > a {
    min-height: 108px;
    gap: 20px;
    padding-block: 20px;
  }

  .ocva-resource-archive {
    width: 100%;
  }

  .ocva-faq-list button {
    min-height: 88px;
    gap: 18px;
    padding-block: 20px;
  }

  .ocva-faq-answer p {
    margin-right: 0;
  }

  .ocva-final-actions {
    grid-template-columns: 1fr;
  }

  .ocva-final-call {
    grid-column: auto;
    text-align: center;
  }

  .ocva-footer {
    padding: 64px 0 calc(28px + env(safe-area-inset-bottom));
  }

  .ocva-footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ocva-footer-brand {
    grid-column: auto;
  }

  .ocva-disclosure {
    margin-top: 48px;
  }

  .ocva-disclosure p,
  .ocva-disclosure div {
    font-size: 0.9375rem;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body.ocva-drawer-open {
    overflow: hidden;
  }

  .ocva-mobile-actions {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    color: var(--ocva-white);
    background: var(--ocva-navy-deep);
    border-top: 4px solid var(--ocva-red);
    transform: translateY(120%);
    transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ocva-mobile-actions.is-visible {
    transform: translateY(0);
  }

  body.ocva-drawer-open .ocva-mobile-actions,
  body.ocva-field-focus .ocva-mobile-actions {
    transform: translateY(120%);
  }

  .ocva-mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 10px;
    color: var(--ocva-white);
    background: var(--ocva-navy);
    border-radius: 6px;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .ocva-mobile-actions a:last-child {
    background: var(--ocva-red);
  }
}

@media (max-width: 374px) {
  .ocva-wordmark {
    font-size: 1.1rem;
  }

  .ocva-menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .ocva-menu-toggle {
    min-width: 48px;
  }

  .ocva-arbor-logo {
    width: 118px;
  }

  .ocva-contact-lines {
    font-size: 0.86rem;
  }

  .ocva-hero h1 {
    font-size: 2.42rem;
  }

  .ocva-plan-steps strong {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* WordPress content surfaces --------------------------------------------- */

.ocva-inner-nav {
  position: relative;
  top: auto;
  border-top: 1px solid var(--ocva-line);
}

.ocva-content-main {
  min-height: 52vh;
  background: var(--ocva-white);
}

.ocva-content-hero {
  padding-block: clamp(68px, 8vw, 112px);
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
  border-bottom: 8px solid var(--ocva-red);
}

.ocva-content-hero h1 {
  max-width: 21ch;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: var(--ocva-display);
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.037em;
  text-wrap: balance;
}

.ocva-content-hero p,
.ocva-content-hero .ocva-archive-description {
  max-width: 68ch;
  margin: 28px 0 0;
  color: #dfe9f5;
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}

.ocva-content-hero .ocva-archive-description p {
  margin: 0;
}

.ocva-reading-width {
  max-width: 916px;
}

.ocva-archive-shell {
  padding-block: clamp(68px, 8vw, 112px);
}

.ocva-resource-topics {
  margin-bottom: clamp(64px, 7vw, 96px);
}

.ocva-resource-topics-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-resource-topics-heading h2 {
  margin: 0;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(2.75rem, 4.25vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.ocva-resource-topics-heading p {
  max-width: 68ch;
  margin: 18px 0 0;
  color: var(--ocva-muted);
  line-height: 1.65;
}

.ocva-resource-topics-all {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ocva-red);
  font-weight: 800;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.ocva-resource-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.ocva-resource-topic-list li {
  min-width: 0;
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-resource-topic-list li:nth-child(odd) {
  border-right: 1px solid var(--ocva-line);
}

.ocva-resource-topic-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  min-height: 92px;
  gap: 18px;
  padding: 20px 22px 20px 0;
  color: var(--ocva-navy-deep);
  text-decoration: none;
}

.ocva-resource-topic-list li:nth-child(even) a {
  padding-left: 22px;
}

.ocva-resource-topic-list a > span {
  overflow-wrap: anywhere;
  font-family: var(--ocva-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.ocva-resource-topic-list small {
  color: var(--ocva-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ocva-resource-topic-list svg {
  width: 22px;
  fill: none;
  stroke: var(--ocva-red);
  stroke-width: 1.75;
  transition: transform 180ms ease-out;
}

.ocva-resource-topic-list a:hover > span,
.ocva-resource-topic-list a[aria-current="page"] > span {
  color: var(--ocva-red);
}

.ocva-resource-topic-list a:hover svg,
.ocva-resource-topic-list a:focus-visible svg {
  transform: translateX(5px);
}

.ocva-resource-topic-list a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--ocva-red);
}

.ocva-post-list {
  border-top: 1px solid var(--ocva-line);
}

.ocva-post-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 84px);
  padding-block: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-post-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  color: var(--ocva-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.ocva-post-meta a {
  color: var(--ocva-navy-deep);
}

.ocva-post-summary {
  min-width: 0;
}

.ocva-post-summary h2 {
  max-width: 31ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.ocva-post-summary h2 a {
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: color 180ms ease-out, text-decoration-color 180ms ease-out;
}

.ocva-post-summary h2 a:hover {
  color: var(--ocva-red);
  text-decoration-color: currentColor;
}

.ocva-post-excerpt {
  max-width: 68ch;
  margin-block: 18px 24px;
  color: var(--ocva-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ocva-post-excerpt p {
  margin: 0;
}

.ocva-post-summary .ocva-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--ocva-red);
  font-weight: 800;
}

.ocva-post-summary .ocva-text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.navigation.pagination,
.comments-pagination {
  margin-top: 56px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding-inline: 14px;
  color: var(--ocva-navy-deep);
  border: 1px solid var(--ocva-line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  color: var(--ocva-white);
  background: var(--ocva-navy-deep);
  border-color: var(--ocva-navy-deep);
}

.ocva-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ocva-entry-content {
  padding-block: clamp(64px, 7vw, 96px);
  overflow-wrap: anywhere;
  color: var(--ocva-ink);
  font-size: clamp(1.04rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

.ocva-entry-content > * {
  max-width: 72ch;
}

.ocva-entry-content > .alignwide {
  width: min(1040px, 100%);
  max-width: none;
  margin-inline: 50%;
  transform: translateX(-50%);
}

.ocva-entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
}

.ocva-entry-content h2,
.ocva-entry-content h3,
.ocva-entry-content h4 {
  margin-block: 2.2em 0.6em;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.ocva-entry-content h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.ocva-entry-content h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.ocva-entry-content h4 {
  font-size: 1.35rem;
}

.ocva-entry-content p,
.ocva-entry-content ul,
.ocva-entry-content ol,
.ocva-entry-content blockquote,
.ocva-entry-content figure,
.ocva-entry-content table {
  margin-block: 0 1.55em;
}

.ocva-entry-content a {
  color: var(--ocva-red);
  font-weight: 650;
  text-decoration-thickness: 1px;
}

.ocva-entry-content img,
.ocva-featured-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ocva-entry-content::after {
  display: table;
  clear: both;
  content: "";
}

.ocva-entry-content .alignleft {
  float: left;
  margin: 0.35em 1.5em 1em 0;
}

.ocva-entry-content .alignright {
  float: right;
  margin: 0.35em 0 1em 1.5em;
}

.ocva-entry-content .aligncenter {
  display: block;
  margin-inline: auto;
}

.ocva-entry-content .alignnone {
  margin-inline: 0;
}

.ocva-entry-content .wp-caption {
  max-width: 100%;
}

.ocva-entry-content iframe,
.ocva-entry-content embed,
.ocva-entry-content object,
.ocva-entry-content .wp-block-embed__wrapper iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-block: 0 1.55em;
  border: 0;
  aspect-ratio: 16 / 9;
}

.ocva-featured-image {
  max-width: none;
  margin: 0 0 clamp(42px, 6vw, 72px);
}

.ocva-entry-content figure figcaption,
.wp-caption-text {
  margin-top: 10px;
  color: var(--ocva-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ocva-entry-content blockquote {
  padding: 28px 0 28px 32px;
  color: var(--ocva-navy-deep);
  border-left: 1px solid var(--ocva-red);
  font-family: var(--ocva-display);
  font-size: 1.35em;
  line-height: 1.45;
}

.ocva-entry-content blockquote > :last-child {
  margin-bottom: 0;
}

.ocva-reviewed-route .ocva-entry-content > h2:first-child,
.ocva-reviewed-route .ocva-entry-content > section:first-child > h2:first-child {
  margin-top: 0;
}

.ocva-route-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 38px;
}

.ocva-route-actions .ocva-text-link,
.ocva-route-source .ocva-text-link {
  min-height: 44px;
  color: var(--ocva-navy-deep);
}

.ocva-route-notice,
.ocva-historical-notice,
.ocva-route-source {
  max-width: 72ch;
  margin-block: 32px;
  padding: 24px 26px;
  color: var(--ocva-ink);
  background: var(--ocva-cloud);
  border-top: 4px solid var(--ocva-red);
}

.ocva-route-notice strong,
.ocva-historical-notice strong,
.ocva-route-source h3 {
  color: var(--ocva-navy-deep);
}

.ocva-route-notice p,
.ocva-historical-notice p,
.ocva-route-source p {
  margin: 8px 0 0;
}

.ocva-route-notice-warning {
  border-top-color: var(--ocva-navy-deep);
}

.ocva-historical-byline {
  padding-top: 24px;
  color: var(--ocva-muted);
  border-top: 1px solid var(--ocva-line);
  font-size: 0.96em;
}

.ocva-form-section {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: 2px;
  border-top: 1px solid var(--ocva-line);
}

.ocva-gravity-form {
  margin-top: 32px;
}

.ocva-gravity-form .gform_wrapper .gfield_label,
.ocva-gravity-form .gform_wrapper legend.gfield_label {
  color: var(--ocva-navy-deep);
  font-weight: 800;
}

.ocva-gravity-form .gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ocva-gravity-form .gform_wrapper select,
.ocva-gravity-form .gform_wrapper textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  border: 2px solid #7f8994;
  border-radius: 8px;
  font: inherit;
}

.ocva-gravity-form .gform_wrapper textarea {
  min-height: 160px;
  resize: vertical;
}

.ocva-gravity-form .gform_wrapper input:focus,
.ocva-gravity-form .gform_wrapper select:focus,
.ocva-gravity-form .gform_wrapper textarea:focus {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.ocva-gravity-form .gform_wrapper .gform_button {
  min-height: 58px;
  padding-inline: 28px;
  color: var(--ocva-white);
  background: var(--ocva-red);
  border: 2px solid var(--ocva-red);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ocva-gravity-form .gform_wrapper .gform_button:hover {
  background: var(--ocva-red-dark);
  border-color: var(--ocva-red-dark);
}

.ocva-gravity-form .gform_wrapper .gfield_error input,
.ocva-gravity-form .gform_wrapper .gfield_error select,
.ocva-gravity-form .gform_wrapper .gfield_error textarea {
  border-color: var(--ocva-red);
}

.ocva-gravity-form .gform_wrapper .validation_message,
.ocva-gravity-form .gform_wrapper .gform_validation_errors {
  color: var(--ocva-white);
  background: var(--ocva-red-dark);
  border: 0;
  border-radius: 0;
}

.ocva-entry-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.96rem;
  line-height: 1.55;
}

.ocva-entry-content th,
.ocva-entry-content td {
  min-width: 140px;
  padding: 14px 16px;
  text-align: start;
  vertical-align: top;
  border-bottom: 1px solid var(--ocva-line);
}

.ocva-entry-content th {
  color: var(--ocva-navy-deep);
  background: var(--ocva-cloud);
}

.ocva-article-footer {
  padding-block: 0 52px;
  color: var(--ocva-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ocva-article-footer a {
  color: var(--ocva-red);
}

.ocva-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-block: 44px 72px;
  border-top: 1px solid var(--ocva-line);
}

.ocva-post-navigation a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.ocva-post-navigation a:last-child {
  text-align: end;
}

.ocva-post-navigation a span {
  color: var(--ocva-red);
  font-family: var(--ocva-sans);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ocva-comments {
  padding-block: 64px 96px;
  border-top: 1px solid var(--ocva-line);
}

.ocva-comments h2,
.ocva-comments .comment-reply-title {
  margin: 0 0 32px;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.comment-list,
.comment-list .children {
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin-inline-start: 34px;
}

.comment-body {
  padding-block: 28px;
  border-top: 1px solid var(--ocva-line);
}

.comment-meta {
  margin-bottom: 18px;
  color: var(--ocva-muted);
  font-size: 0.9rem;
}

.comment-author {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ocva-navy-deep);
  font-weight: 800;
}

.comment-author img {
  border-radius: 50%;
}

.comment-content {
  max-width: 68ch;
  line-height: 1.7;
}

.comment-form {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.comment-form p {
  margin: 0;
}

.comment-form label,
.ocva-search-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ocva-navy-deep);
  font-weight: 800;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea,
.ocva-search-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--ocva-navy-deep);
  background: var(--ocva-white);
  border: 1px solid #7f8994;
  border-radius: 8px;
  font: inherit;
}

.comment-form textarea {
  min-height: 180px;
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus,
.ocva-search-form input:focus {
  outline: 3px solid var(--ocva-focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ocva-navy-deep);
}

.comment-form .submit {
  min-height: 58px;
  padding-inline: 28px;
  color: var(--ocva-white);
  background: var(--ocva-red);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.ocva-search-form {
  max-width: 720px;
  margin-top: 36px;
}

.ocva-content-hero .ocva-search-form label {
  color: var(--ocva-white);
}

.ocva-search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.ocva-empty-state,
.ocva-not-found {
  padding-block: 64px 96px;
}

.ocva-empty-state h2 {
  margin: 0 0 18px;
  color: var(--ocva-navy-deep);
  font-family: var(--ocva-display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.ocva-not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .ocva-inner-nav {
    display: none;
  }

  .ocva-content-hero {
    padding-block: 68px;
  }

  .ocva-post-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ocva-post-meta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ocva-resource-topics-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .ocva-content-hero {
    padding-block: 56px 62px;
  }

  .ocva-content-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .ocva-archive-shell {
    padding-block: 56px 72px;
  }

  .ocva-resource-topic-list {
    grid-template-columns: 1fr;
  }

  .ocva-resource-topic-list li:nth-child(odd) {
    border-right: 0;
  }

  .ocva-resource-topic-list a,
  .ocva-resource-topic-list li:nth-child(even) a {
    grid-template-columns: minmax(0, 1fr) auto 20px;
    min-height: 82px;
    gap: 12px;
    padding: 18px 0;
  }

  .ocva-post-row {
    padding-block: 34px;
  }

  .ocva-entry-content {
    padding-block: 56px 72px;
    font-size: 1rem;
  }

  .ocva-entry-content blockquote {
    padding-inline-start: 20px;
  }

  .ocva-entry-content .alignleft,
  .ocva-entry-content .alignright {
    float: none;
    margin: 0 0 1.55em;
  }

  .ocva-route-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ocva-route-actions .ocva-button,
  .ocva-route-actions .ocva-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ocva-contact-ledger > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ocva-route-notice,
  .ocva-historical-notice,
  .ocva-route-source {
    padding-inline: 20px;
  }

  .ocva-post-navigation {
    grid-template-columns: 1fr;
  }

  .ocva-post-navigation a:last-child {
    text-align: start;
  }

  .comment-list .children {
    margin-inline-start: 18px;
  }

  .ocva-search-form > div {
    grid-template-columns: 1fr;
  }

  .ocva-search-form .ocva-button,
  .ocva-not-found-actions .ocva-button {
    width: 100%;
  }
}
