:root {
  --ink: #152c3b;
  --navy: #122c3c;
  --muted: #51626d;
  --paper: #fff;
  --wash: #edf2f4;
  --line: #d3dde1;
  --accent: #276b77;
  --pad: #f3e9b3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #ab6700;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.045em;
  line-height: 1.07;
}
h1 {
  font-size: clamp(3.2rem, 6.7vw, 6.6rem);
}
h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}
h3 {
  font: 600 1.2rem/1.35 var(--sans);
}
p + p {
  margin-top: 1em;
}
p {
  max-width: 65ch;
}
.wrap {
  width: min(1240px, calc(100% - 100px));
  margin: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.17em;
  line-height: 1;
}
.brand small {
  font-size: 11px;
  letter-spacing: 0.18em;
  border-left: 1px solid var(--line);
  padding-left: 18px;
  line-height: 1.5;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
.nav a {
  text-decoration: none;
}
.nav a:not(.button):hover,
.nav a:not(.button)[aria-current="page"] {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 50px;
  padding: 13px 22px;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 2px;
}
.button:hover {
  background: #234e61;
  color: white;
}
.button.light {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.button.light:hover {
  border-color: var(--ink);
}
.button.reverse {
  background: white;
  color: var(--ink);
  border-color: white;
}
.arrow {
  font-family: var(--sans);
  font-size: 22px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 70px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 55px;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero .role {
  font-size: 19px;
  line-height: 1.6;
}
.hero .intro {
  color: var(--muted);
  margin-top: 22px;
  max-width: 440px;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.portrait-frame {
  background: #24272e;
  position: relative;
}
.portrait-frame img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center top;
}
.portrait-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.hero-footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  padding: 26px 0;
  gap: 30px;
}
.proof > div + div {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.proof span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 7px;
}
.source-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.section {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
.section-top h2 {
  max-width: 670px;
}
.section-top p {
  max-width: 350px;
  color: var(--muted);
}
.expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.pad-image {
  position: relative;
  background: var(--pad);
  padding: 30px;
}
.pad-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.pad-image figcaption {
  font-size: 12px;
  margin-top: 14px;
}
.expertise h2 {
  margin-bottom: 24px;
}
.expertise p {
  color: var(--muted);
}
.expertise .text-link {
  margin-top: 24px;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--wash);
}
.path {
  padding: 55px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.path.dark {
  background: var(--navy);
  color: white;
}
.path.dark .eyebrow,
.path.dark p {
  color: #d2dfe4;
}
.path h2 {
  font-size: 40px;
  margin-bottom: 22px;
  max-width: 450px;
}
.path p {
  margin-bottom: 30px;
  color: var(--muted);
}
.path a {
  margin-top: auto;
}
.path.dark .text-link {
  border-color: white;
}
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}
.large-quote {
  font: clamp(1.6rem, 2.7vw, 2.5rem)/1.35 var(--serif);
  letter-spacing: -0.025em;
}
.quote-credit {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.rating {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1.2;
}
.rating small {
  font: 20px var(--sans);
}
.answer-list {
  border-top: 1px solid var(--line);
}
.answer-row {
  display: grid;
  grid-template-columns: 55px 1fr 1fr 35px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  text-decoration: none;
}
.answer-row:hover h3 {
  color: var(--accent);
}
.answer-row .num {
  font: 18px var(--serif);
  color: var(--muted);
}
.answer-row h3 {
  font: 27px/1.2 var(--serif);
}
.answer-row p {
  font-size: 15px;
  color: var(--muted);
}
.wash {
  background: var(--wash);
}
.cta {
  background: var(--navy);
  color: white;
  padding: 70px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta h2 {
  font-size: 58px;
}
.cta p {
  margin-top: 15px;
  color: #d2dfe4;
}
.cta .eyebrow {
  color: #ccd8df;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  min-width: 260px;
}
.footer {
  padding: 48px 0 26px;
  font-size: 12px;
  color: var(--muted);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer p {
  max-width: 100%;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.menu-toggle {
  display: none;
}
.page-intro {
  padding-top: 64px;
  padding-bottom: 55px;
  max-width: 1000px;
}
.page-intro h1 {
  max-width: 950px;
}
.page-intro .lede {
  font-size: 21px;
  color: var(--muted);
  max-width: 700px;
  margin-top: 27px;
}
.breadcrumb {
  font-size: 13px;
  margin-bottom: 26px;
  color: var(--muted);
}
.reading {
  max-width: 770px;
}
.reading h2 {
  font-size: 38px;
  margin: 50px 0 22px;
}
.reading h3 {
  margin: 30px 0 14px;
}
.reading p,
.reading li {
  color: #344b59;
}
.reading ul {
  padding-left: 22px;
}
.reading .eyebrow {
  margin-top: 0;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}
.article-aside {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.article-aside p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 16px;
}
.article-aside .text-link {
  margin-top: 20px;
}
.video {
  width: 100%;
  max-height: 570px;
  background: #111;
  aspect-ratio: 9/16;
  object-fit: contain;
}
.video-figure {
  max-width: 340px;
  margin: 28px 0;
}
.video-figure figcaption {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
}
.video-wide {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: center;
}
.video-wide .video-figure {
  margin: 0;
}
.video-wide h2 {
  margin-bottom: 25px;
}
details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-weight: 600;
  min-height: 30px;
}
details p {
  margin-top: 18px;
  font-size: 15px;
}
details .transcript {
  white-space: pre-line;
  font-size: 15px;
  margin-top: 20px;
  color: var(--muted);
}
.callout {
  padding: 30px;
  background: var(--wash);
  border-left: 3px solid var(--accent);
  margin: 30px 0;
}
.callout p {
  font-size: 16px;
}
.callout h3 {
  margin: 0 0 12px;
}
.decision {
  border: 1px solid var(--line);
  padding: 38px;
}
.decision h2 {
  font-size: 37px;
  margin-bottom: 25px;
}
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.choice {
  padding: 12px 19px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 15px;
  color: var(--ink);
  min-height: 48px;
}
.choice[aria-pressed="true"] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.choice:hover {
  border-color: var(--ink);
}
.field-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin: 25px 0 10px;
}
.select {
  padding: 12px;
  background: white;
  border: 1px solid #9aabb5;
  color: var(--ink);
  max-width: 100%;
  min-width: 260px;
  min-height: 48px;
}
.decision-result {
  padding-top: 32px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.decision-result h3 {
  font: 28px/1.3 var(--serif);
  margin-bottom: 14px;
}
.decision-result .result-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 24px;
}
.decision-result p {
  font-size: 16px;
}
.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.tag {
  font-size: 13px;
  background: var(--wash);
  padding: 5px 10px;
}
.family-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.family-preview a {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  text-decoration: none;
}
.family-preview h3 {
  margin-bottom: 10px;
}
.family-preview p {
  font-size: 15px;
  color: var(--muted);
}
.family-tools {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: end;
  padding: 28px;
  background: var(--wash);
  margin-bottom: 35px;
}
.family-tools label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.family-tools input {
  width: 290px;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #9aabb5;
  min-height: 48px;
}
.family {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  padding: 45px 0;
}
.family h2 {
  font-size: 34px;
}
.family .family-desc {
  margin-top: 20px;
  color: var(--muted);
}
.family h3 {
  font-size: 15px;
  margin: 20px 0 8px;
}
.family p {
  font-size: 16px;
}
.family ul {
  padding-left: 20px;
  font-size: 15px;
}
.family[hidden],
.review-item[hidden] {
  display: none;
}
.count {
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--muted);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}
.review-item {
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.review-item blockquote {
  font: 24px/1.5 var(--serif);
}
.review-item .eyebrow {
  margin-bottom: 16px;
}
.review-item cite {
  font-style: normal;
  font-size: 14px;
  display: block;
  margin-top: 22px;
  color: var(--muted);
}
.timeline {
  margin-top: 35px;
}
.timeline-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.timeline-row strong {
  font: 25px var(--serif);
}
.timeline-row h3 {
  margin: 0 0 12px;
}
.stat-big {
  font: clamp(3rem, 7vw, 6rem)/1 var(--serif);
}
.lo-performance {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-top: 35px;
}
.lo-performance p {
  font-size: 15px;
  margin-top: 20px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.split h2 {
  margin-bottom: 25px;
}
.split p {
  color: var(--muted);
}
.numbered {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.numbered li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.numbered li > span {
  font: 28px var(--serif);
  color: var(--accent);
}
.numbered p {
  font-size: 15px;
  margin-top: 8px;
}
.photo-doc img {
  max-height: 560px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}
.photo-doc figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  padding-bottom: 80px;
}
.phone-large {
  font: 38px var(--serif);
  display: block;
  margin: 20px 0;
  text-decoration: none;
}
.form {
  padding: 36px;
  background: var(--wash);
}
.form h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.form p {
  font-size: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field {
  margin-top: 22px;
}
.form-field label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #9aabb5;
  background: white;
  border-radius: 0;
  color: var(--ink);
  min-height: 48px;
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
}
.error {
  color: #952821;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}
.form-field [aria-invalid="true"] {
  border-color: #952821;
}
.form .button {
  margin-top: 25px;
}
.form-status {
  margin-top: 20px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: white;
  font-size: 15px;
}
.form-status:empty {
  display: none;
}
.disclosure {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.table-scroll {
  overflow-x: auto;
  margin: 25px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
  text-align: left;
}
th,
td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  background: var(--wash);
}
caption {
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.math {
  background: var(--pad);
  padding: 30px;
  margin: 25px 0;
}
.math strong {
  font: 35px var(--serif);
  display: block;
}
.math p {
  margin-top: 12px;
  font-size: 15px;
}
.inline-note {
  font-size: 13px !important;
  color: var(--muted);
  margin-top: 16px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 35px;
}
.steps-grid h3 {
  font: 26px var(--serif);
  margin-bottom: 18px;
}
.steps-grid p {
  font-size: 16px;
  color: var(--muted);
}
.related {
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.related a {
  display: block;
  margin-top: 12px;
}
.article-byline {
  font-size: 14px;
  color: var(--muted);
  margin-top: 22px;
}
.empty {
  padding: 35px;
  border: 1px solid var(--line);
}
@media (min-width: 1500px) {
  .hero {
    gap: 100px;
  }
  .portrait-frame img {
    height: 570px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .brand small {
    display: none;
  }
  .nav {
    gap: 20px;
  }
  .hero {
    gap: 35px;
  }
  .portrait-frame img {
    height: 480px;
  }
  .expertise {
    gap: 45px;
  }
  .path {
    padding: 35px;
  }
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 40px;
  }
  .quote-section {
    gap: 45px;
  }
  .contact-layout {
    gap: 40px;
  }
  .video-wide {
    gap: 40px;
  }
  .family {
    gap: 35px;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
@media (max-width: 740px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
  }
  .brand-name {
    font-size: 21px;
  }
  .menu-toggle {
    display: block;
    background: white;
    border: 1px solid var(--line);
    padding: 10px 14px;
    min-height: 44px;
    font-size: 14px;
    color: var(--ink);
  }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 20px;
    align-items: stretch;
    gap: 0;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
  }
  .nav a {
    padding: 13px;
  }
  .nav .button {
    margin-top: 10px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: 66px;
    margin-bottom: 20px;
  }
  .hero .eyebrow {
    margin-bottom: 18px;
  }
  .hero .role {
    font-size: 17px;
  }
  .hero .intro {
    margin-top: 16px;
  }
  .hero-actions {
    margin-top: 23px;
  }
  .portrait-frame img {
    height: auto;
    max-height: 460px;
    object-position: 50% top;
    aspect-ratio: 1.05;
    object-fit: cover;
  }
  .portrait-caption {
    font-size: 11px;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding: 24px 0;
  }
  .proof > div + div {
    padding-left: 18px;
  }
  .proof > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .proof strong {
    font-size: 30px;
  }
  .proof span {
    font-size: 12px;
  }
  .source-note {
    font-size: 11px;
  }
  .section {
    padding: 54px 0;
  }
  .section-top {
    display: block;
    margin-bottom: 30px;
  }
  .section-top p {
    margin-top: 20px;
  }
  .expertise {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .expertise .pad-image {
    order: 2;
    padding: 22px;
  }
  .pad-image img {
    height: 270px;
  }
  .path-grid {
    grid-template-columns: 1fr;
  }
  .path {
    padding: 36px 25px;
  }
  .path h2 {
    font-size: 36px;
  }
  .quote-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .large-quote {
    font-size: 28px;
  }
  .answer-row {
    grid-template-columns: 30px 1fr 22px;
    gap: 12px;
    padding: 25px 0;
  }
  .answer-row h3 {
    font-size: 25px;
  }
  .answer-row p {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
  }
  .answer-row .arrow {
    grid-column: 3;
    grid-row: 1;
  }
  .cta {
    padding: 50px 0;
  }
  .cta-inner {
    display: block;
  }
  .cta h2 {
    font-size: 46px;
  }
  .cta-actions {
    margin-top: 30px;
  }
  .footer-top {
    display: block;
  }
  .footer-nav {
    margin-top: 25px;
    gap: 16px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 10px;
  }
  .page-intro {
    padding-top: 35px;
    padding-bottom: 38px;
  }
  .page-intro h1 {
    font-size: 45px;
  }
  .page-intro .lede {
    font-size: 18px;
    margin-top: 22px;
  }
  .breadcrumb {
    margin-bottom: 20px;
  }
  .decision {
    padding: 25px 20px;
  }
  .decision h2 {
    font-size: 30px;
  }
  .choice {
    padding: 10px 14px;
    font-size: 14px;
  }
  .decision-result .result-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .select {
    min-width: 0;
    width: 100%;
  }
  .family-preview {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
  }
  .family-tools {
    padding: 22px;
    display: block;
  }
  .family-tools > div + div {
    margin-top: 20px;
  }
  .family-tools input {
    width: 100%;
  }
  .family {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 35px 0;
  }
  .family h2 {
    font-size: 30px;
  }
  .family .family-desc {
    margin-top: 15px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .article-aside {
    max-width: 100%;
  }
  .reading h2 {
    font-size: 31px;
    margin-top: 38px;
  }
  .video-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .video-wide .video-figure {
    margin: auto;
    max-width: 290px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .lo-performance {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .lo-performance > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }
  .lo-performance p {
    margin: 0;
  }
  .stat-big {
    font-size: 40px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
  }
  .form {
    padding: 25px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .phone-large {
    font-size: 33px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .timeline-row {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }
  .photo-doc img {
    max-height: 450px;
  }
  .table-scroll {
    margin-left: -5px;
    margin-right: -5px;
  }
  th,
  td {
    padding: 12px 9px;
  }
  .math strong {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .footer,
  .cta,
  .hero-actions,
  .family-tools,
  .menu-toggle {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  body {
    font-size: 12pt;
  }
  .section {
    padding: 20px 0;
  }
  a {
    color: black;
  }
  .video-figure {
    display: none;
  }
  details .transcript {
    display: block;
  }
}

/* Keep narrow layouts legible without forcing orphaned headline words. */
@media (max-width: 740px) {
  .page-intro h1 {
    font-size: clamp(2rem, 10.4vw, 2.8rem);
    text-wrap: balance;
  }
  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.125rem);
  }
  .hero-actions {
    row-gap: 16px;
  }
  .family-preview {
    grid-template-columns: 1fr;
  }
  .family-preview h3 {
    max-width: 28ch;
  }
}

@media (max-width: 740px) {
  .lo-performance > div {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .stat-big {
    font-size: 36px;
  }
}

.callout h2 {
  margin-bottom: 20px;
}
.review-filter + .count {
  margin-top: 20px;
}
.choices + .count {
  margin-top: 20px;
}

.video-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.video-pair .video-figure {
  margin-top: 24px;
}
.page-intro h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}
@media (max-width: 740px) {
  .video-pair {
    grid-template-columns: 1fr;
  }
  .page-intro h1 {
    font-size: clamp(2rem, 10.4vw, 2.8rem);
  }
}

/* Situation-led comparisons: choose a purpose, then open the detail you need. */
.decision {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 64px;
  border: 0;
  padding: 16px 0 0;
}
.decision h2 {
  font-size: 32px;
}
.decision .choices {
  display: grid;
  gap: 0;
}
.decision .choice {
  position: relative;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 38px 16px 16px;
  text-align: left;
  background: transparent;
  font-size: 18px;
}
.decision .choice small {
  display: block;
  font-size: 13px;
  margin-top: 5px;
  line-height: 1.4;
}
.decision .choice[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.decision .choice:not([aria-pressed="true"]):hover {
  background: var(--wash);
}
.choice-arrow {
  position: absolute;
  right: 16px;
  top: 20px;
}
.decision-start > .inline-note {
  margin-top: 24px;
  max-width: 35ch;
}
.comparison-jump {
  display: none;
}
.decision .decision-result {
  border: 0;
  border-top: 3px solid #c2ad78;
  background: #f6f4ed;
  padding: 34px 38px;
  margin: 0;
}
.decision-result h3 {
  font-size: clamp(26px, 2.6vw, 36px);
  max-width: 25ch;
}
.decision-result .result-body {
  display: block;
  margin: 24px 0 0;
}
.decision-result details {
  border-top: 1px solid #cecabe;
  padding: 16px 0;
}
.decision-result summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
}
.decision-result .field-label {
  margin-top: 18px;
}
#result-context:empty {
  display: none;
}
#result-context {
  padding: 10px 0;
}
.conversation-question {
  border-top: 1px solid #cecabe;
  padding-top: 24px;
  margin-top: 0;
}
.conversation-question #result-question {
  font: 23px/1.4 var(--serif);
}
.decision-result .hero-actions {
  align-items: start;
  flex-direction: column;
  gap: 20px;
}

/* The office floor is part of the loan-officer story. */
body[data-page="/loan-officers/"] main > .wrap > .breadcrumb {
  padding-top: 34px;
}
.lo-opening {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  column-gap: 70px;
  align-items: center;
}
.lo-opening h1 {
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 1.02;
}
.lo-opening .lede {
  font-size: 21px;
  line-height: 1.6;
  margin: 24px 0;
}
.lo-opening-copy > p:not(.eyebrow):not(.lede) {
  color: var(--muted);
  max-width: 43ch;
  font-size: 16px;
}
.lo-opening .text-link {
  margin-top: 20px;
}
.lo-working-photo {
  margin: 0;
}
.lo-working-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.lo-working-photo figcaption {
  padding-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.lo-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 0 18px;
  margin-top: 34px;
  align-items: center;
}
.lo-proof-values {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.lo-proof-values p {
  margin: 0;
}
.lo-proof-values strong {
  font: 28px/1.25 var(--serif);
  display: block;
}
.lo-proof-values span {
  font-size: 13px;
  color: var(--muted);
}
.lo-proof .source-note {
  grid-column: 2;
  font-size: 11px;
  margin: 4px 0 0;
}
#desk-access {
  scroll-margin-top: 30px;
}

.home-paths {
  background: #f1f3f1;
  padding: 58px 0 0;
}
.borrower-invitation {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0 70px;
  padding-bottom: 50px;
}
.borrower-invitation > .eyebrow {
  grid-column: 1 / -1;
}
.borrower-invitation h2 {
  font-size: clamp(30px, 3.2vw, 43px);
}
.borrower-invitation p {
  font-size: 16px;
}
.home-desk {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--ink);
  color: white;
  align-items: center;
}
.home-desk figure {
  position: relative;
  margin: 0;
}
.home-desk img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 35%;
}
.home-desk figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 16px;
  background: var(--ink);
  color: white;
  font-size: 12px;
}
.home-desk > div {
  padding: 35px 48px;
}
.home-desk h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  margin-bottom: 24px;
}
.home-desk p,
.home-desk .eyebrow {
  color: #d2dfe4;
}
.home-desk .text-link {
  margin-top: 20px;
  border-color: white;
}
@media (max-width: 1000px) {
  .decision {
    gap: 30px;
  }
  .decision .decision-result {
    padding: 28px;
  }
  .lo-opening {
    column-gap: 35px;
  }
  .lo-proof {
    grid-template-columns: 1fr;
  }
  .lo-proof .source-note {
    grid-column: 1;
  }
  .home-desk > div {
    padding: 28px;
  }
  .borrower-invitation {
    gap: 0 35px;
  }
}
@media (max-width: 740px) {
  .decision {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }
  .decision .choices {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .decision .choice {
    border: 1px solid var(--line);
    padding: 13px 12px;
    font-size: 16px;
  }
  .decision .choice small {
    font-size: 12px;
  }
  .choice-arrow {
    display: none;
  }
  .comparison-jump {
    display: inline-flex;
    margin-top: 20px;
  }
  .decision-start > .inline-note {
    max-width: none;
    margin-top: 16px;
  }
  .decision .decision-result {
    padding: 24px 20px;
  }
  .decision-result .hero-actions .text-link {
    font-size: 14px;
  }
  .lo-opening {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .lo-opening h1 {
    font-size: 48px;
  }
  .lo-opening .lede {
    font-size: 19px;
    margin: 20px 0;
  }
  .lo-opening-copy > p:not(.eyebrow):not(.lede) {
    max-width: none;
  }
  .lo-working-photo img {
    max-height: 400px;
    object-fit: cover;
    object-position: center 35%;
  }
  .lo-proof {
    margin-top: 0;
  }
  .lo-proof-values {
    gap: 16px;
    flex-wrap: wrap;
  }
  .lo-proof-values strong {
    font-size: 26px;
  }
  .lo-proof-values span {
    display: block;
    max-width: 14ch;
    font-size: 12px;
  }
  .home-paths {
    padding-top: 40px;
  }
  .borrower-invitation {
    grid-template-columns: 1fr;
    padding-bottom: 35px;
    gap: 20px;
  }
  .borrower-invitation > .eyebrow {
    margin-bottom: 0;
  }
  .borrower-invitation h2 {
    margin: 0;
  }
  .home-desk {
    grid-template-columns: 1fr;
  }
  .home-desk img {
    height: 330px;
  }
  .home-desk > div {
    padding: 30px 25px;
  }
}
@media (min-width: 1001px) {
  body[data-page="/mortgage/"] .page-intro {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    column-gap: 70px;
    max-width: none;
    padding-top: 34px;
    padding-bottom: 44px;
    align-items: start;
  }
  body[data-page="/mortgage/"] .page-intro .breadcrumb,
  body[data-page="/mortgage/"] .page-intro .eyebrow {
    grid-column: 1 / -1;
  }
  body[data-page="/mortgage/"] .page-intro h1 {
    font-size: 56px;
  }
  body[data-page="/mortgage/"] .page-intro .lede {
    font-size: 18px;
    margin-top: 5px;
  }
}
/* Trim the captured interface margin while retaining the office context. */
.home-desk figure {
  overflow: hidden;
}
.home-desk img {
  width: 106%;
  max-width: none;
  margin-left: -6%;
}
