/*
 * Ethos Guide Pages R8.4.37
 * Scoped editorial system for the eight long-form consumer guides.
 */

.ethos-guide-page {
  --guide-ink: var(--ink);
  --guide-ink-2: var(--ink-2);
  --guide-paper: var(--paper);
  --guide-paper-2: var(--paper-2);
  --guide-gold: var(--gold);
  --guide-gold-readable: var(--text-secondary);
  --guide-dark-rule: rgba(255, 255, 255, 0.22);
  --guide-light-rule: rgba(10, 10, 10, 0.22);
  --guide-section-y: clamp(76px, 9vw, 132px);
  background: var(--guide-paper);
  color: var(--guide-ink);
  font-family: var(--font-sans);
}

.site-header--dark-solid.is-scrolled .site-brand__logo--dark {
  display: block;
}

.site-header--dark-solid.is-scrolled .site-brand__logo--light {
  display: none;
}

.site-header--dark-solid .sub-menu .current-menu-item > a {
  background: var(--white);
  color: var(--slate);
}

.mobile-primary-menu .sub-menu .current-menu-item > a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--guide-gold);
  text-underline-offset: 5px;
}

.ethos-guide-page *,
.ethos-guide-page *::before,
.ethos-guide-page *::after {
  box-sizing: border-box;
}

.ethos-guide-page .container {
  margin-inline: auto;
  width: min(100% - 48px, 1420px);
}

.ethos-guide-page h1,
.ethos-guide-page h2,
.ethos-guide-page h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
}

.ethos-guide-page h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.1;
  max-width: 900px;
}

.ethos-guide-page h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.08;
  max-width: 900px;
}

.ethos-guide-page h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.ethos-guide-page p,
.ethos-guide-page li,
.ethos-guide-page td,
.ethos-guide-page th {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
}

.ethos-guide-page p:first-child {
  margin-top: 0;
}

.ethos-guide-page p:last-child {
  margin-bottom: 0;
}

.ethos-guide-eyebrow {
  color: var(--guide-gold);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3 !important;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.ethos-guide-button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 0;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.18em;
  line-height: 1;
  min-height: 52px;
  padding: 0 32px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.ethos-guide-button--gold {
  background: var(--guide-gold);
  border-color: var(--guide-gold);
  color: var(--guide-ink);
}

.ethos-guide-button--gold:hover {
  background: var(--guide-paper);
  border-color: var(--guide-paper);
  color: var(--guide-ink);
}

.ethos-guide-button:focus-visible,
.ethos-guide-page summary:focus-visible,
.ethos-guide-table-wrap:focus-visible,
.ethos-guide-page input:focus-visible {
  outline: 2px solid var(--guide-gold);
  outline-offset: 4px;
}

.ethos-guide-hero {
  align-items: center;
  background: var(--guide-ink);
  color: var(--paper);
  display: flex;
  min-height: min(84svh, 820px);
  padding: clamp(200px, 22vh, 280px) 0 clamp(92px, 12vh, 144px);
}

.ethos-guide-hero__inner {
  width: 100%;
}

.ethos-guide-hero__lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
  line-height: 1.55 !important;
  margin: 30px 0 38px;
  max-width: 660px;
}

.ethos-guide-section {
  padding: var(--guide-section-y) 0;
  scroll-margin-top: 112px;
}

.ethos-guide-section--paper {
  background: var(--guide-paper);
  color: var(--guide-ink);
}

.ethos-guide-section--paper-2 {
  background: var(--guide-paper-2);
  color: var(--guide-ink);
}

.ethos-guide-section--ink {
  background: var(--guide-ink);
  color: var(--paper);
}

.ethos-guide-section--ink-2 {
  background: var(--guide-ink-2);
  color: var(--paper);
}

.ethos-guide-section__heading {
  margin-bottom: clamp(48px, 6vw, 82px);
  max-width: 920px;
}

.ethos-guide-section__intro {
  color: rgba(10, 10, 10, 0.72);
  margin-top: 28px;
  max-width: 720px;
}

.ethos-guide-section--ink .ethos-guide-section__intro,
.ethos-guide-section--ink-2 .ethos-guide-section__intro {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-page .has-js .reveal,
.has-js .ethos-guide-page .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .ethos-guide-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ethos-guide-editorial-grid {
  display: grid;
}

.ethos-guide-editorial-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ethos-guide-editorial-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ethos-guide-editorial-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ethos-guide-editorial-item {
  border-left: 1px solid var(--guide-light-rule);
  padding: 0 clamp(24px, 3vw, 44px);
}

.ethos-guide-editorial-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.ethos-guide-editorial-item:last-child {
  padding-right: 0;
}

.ethos-guide-section--ink .ethos-guide-editorial-item,
.ethos-guide-section--ink-2 .ethos-guide-editorial-item {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-editorial-item__number {
  color: var(--guide-gold);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
}

.ethos-guide-editorial-item h3 {
  margin-bottom: 22px;
}

.ethos-guide-editorial-item p,
.ethos-guide-editorial-item li {
  color: rgba(10, 10, 10, 0.7);
  font-size: 1rem;
}

.ethos-guide-section--ink .ethos-guide-editorial-item p,
.ethos-guide-section--ink .ethos-guide-editorial-item li,
.ethos-guide-section--ink-2 .ethos-guide-editorial-item p,
.ethos-guide-section--ink-2 .ethos-guide-editorial-item li {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-editorial-item ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.ethos-guide-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 34px 0 0;
  position: relative;
}

.ethos-guide-timeline::before {
  background: var(--guide-gold);
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 6px;
}

.ethos-guide-timeline__item {
  padding: 20px clamp(18px, 2.2vw, 32px) 0 0;
  position: relative;
}

.ethos-guide-timeline__item::before {
  background: var(--guide-gold);
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: -32px;
  width: 9px;
}

.ethos-guide-timeline__kicker {
  color: var(--guide-gold);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ethos-guide-timeline__item > strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 22px;
}

.ethos-guide-timeline__item h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ethos-guide-timeline__timing {
  color: var(--guide-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: -4px 0 16px;
  text-transform: uppercase;
}

.ethos-guide-timeline__item p,
.ethos-guide-timeline__item li {
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.98rem;
}

.ethos-guide-section--ink .ethos-guide-timeline__item p,
.ethos-guide-section--ink .ethos-guide-timeline__item li,
.ethos-guide-section--ink-2 .ethos-guide-timeline__item p,
.ethos-guide-section--ink-2 .ethos-guide-timeline__item li {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-timeline__item ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.ethos-guide-numbered {
  border-top: 1px solid var(--guide-light-rule);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ethos-guide-section--ink .ethos-guide-numbered,
.ethos-guide-section--ink-2 .ethos-guide-numbered {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-numbered > li {
  align-items: start;
  border-bottom: 1px solid var(--guide-light-rule);
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: 84px minmax(0, 760px);
  padding: clamp(28px, 4vw, 52px) 0;
}

.ethos-guide-section--ink .ethos-guide-numbered > li,
.ethos-guide-section--ink-2 .ethos-guide-numbered > li {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-numbered > li > span {
  color: var(--guide-gold);
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.ethos-guide-numbered h3 {
  margin-bottom: 14px;
}

.ethos-guide-numbered p {
  color: rgba(10, 10, 10, 0.7);
  margin: 0;
}

.ethos-guide-section--ink .ethos-guide-numbered p,
.ethos-guide-section--ink-2 .ethos-guide-numbered p {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-table-wrap {
  border: 1px solid var(--guide-light-rule);
  max-width: 100%;
  overflow-x: auto;
  position: relative;
}

.ethos-guide-table-hint {
  display: none;
}

.ethos-guide-section--ink .ethos-guide-table-wrap,
.ethos-guide-section--ink-2 .ethos-guide-table-wrap {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.ethos-guide-table th,
.ethos-guide-table td {
  border-bottom: 1px solid var(--guide-light-rule);
  border-right: 1px solid var(--guide-light-rule);
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
}

.ethos-guide-section--ink .ethos-guide-table th,
.ethos-guide-section--ink .ethos-guide-table td,
.ethos-guide-section--ink-2 .ethos-guide-table th,
.ethos-guide-section--ink-2 .ethos-guide-table td {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-table tr:last-child th,
.ethos-guide-table tr:last-child td {
  border-bottom: 0;
}

.ethos-guide-table th:last-child,
.ethos-guide-table td:last-child {
  border-right: 0;
}

.ethos-guide-table thead th {
  color: var(--guide-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ethos-guide-table tbody th {
  font-weight: 600;
  width: 23%;
}

.ethos-guide-table td,
.ethos-guide-table tbody th {
  font-size: 0.98rem;
  line-height: 1.55;
}

.ethos-guide-checklist {
  display: grid;
  gap: 0 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.ethos-guide-page--financing #credit-and-rates .ethos-guide-checklist {
  gap: 0 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ethos-guide-page--buying-process #inspection-deep-dive .ethos-guide-checklist,
.ethos-guide-page--buying-process #closing-day .ethos-guide-checklist,
.ethos-guide-page--selling-process #seller-readiness .ethos-guide-checklist,
.ethos-guide-page--selling-process #contract-to-close .ethos-guide-checklist {
  gap: 0 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ethos-guide-page--relocation #relocation-checklist .ethos-guide-checklist {
  gap: 0 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ethos-guide-checklist li {
  align-items: start;
  border-top: 1px solid var(--guide-light-rule);
  display: grid;
  gap: 18px;
  grid-template-columns: 24px 1fr;
  padding: 22px 0;
}

.ethos-guide-section--ink .ethos-guide-checklist li,
.ethos-guide-section--ink-2 .ethos-guide-checklist li {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-checklist li > span {
  border: 1px solid var(--guide-gold);
  height: 18px;
  margin-top: 6px;
  position: relative;
  width: 18px;
}

.ethos-guide-checklist li > span::after {
  border-bottom: 1px solid var(--guide-gold);
  border-right: 1px solid var(--guide-gold);
  content: "";
  height: 8px;
  left: 6px;
  position: absolute;
  top: 2px;
  transform: rotate(42deg);
  width: 4px;
}

.ethos-guide-checklist h3 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ethos-guide-checklist p {
  color: rgba(10, 10, 10, 0.68);
  font-size: 0.98rem;
  margin: 8px 0 0;
}

.ethos-guide-checklist ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.ethos-guide-checklist ul li {
  border: 0;
  display: list-item;
  font-size: 0.95rem;
  padding: 4px 0;
}

.ethos-guide-calculation {
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.ethos-guide-calculation__formula {
  border-bottom: 1px solid var(--guide-gold);
  color: var(--guide-gold) !important;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-bottom: 24px;
}

.ethos-guide-calculation__explanation ul {
  margin: 28px 0 0;
  padding-left: 22px;
}

.ethos-guide-calculation__example {
  border-top: 1px solid var(--guide-dark-rule);
  margin: 0;
}

.ethos-guide-calculation__example > div {
  align-items: baseline;
  border-bottom: 1px solid var(--guide-dark-rule);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
}

.ethos-guide-calculation__example dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.ethos-guide-calculation__example dd {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
}

.ethos-guide-section--ink .ethos-guide-checklist p,
.ethos-guide-section--ink-2 .ethos-guide-checklist p {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-faq {
  border-top: 1px solid var(--guide-light-rule);
  max-width: 1040px;
}

.ethos-guide-section--ink .ethos-guide-faq,
.ethos-guide-section--ink-2 .ethos-guide-faq {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-faq details {
  border-bottom: 1px solid var(--guide-light-rule);
}

.ethos-guide-section--ink .ethos-guide-faq details,
.ethos-guide-section--ink-2 .ethos-guide-faq details {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-faq summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  gap: 24px;
  justify-content: space-between;
  line-height: 1.3;
  list-style: none;
  padding: 24px 0;
}

.ethos-guide-faq summary::-webkit-details-marker {
  display: none;
}

.ethos-guide-faq summary svg {
  fill: none;
  flex: 0 0 22px;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.25;
  transition: transform 220ms ease;
  width: 22px;
}

.ethos-guide-faq details[open] summary svg {
  transform: rotate(45deg);
}

.ethos-guide-faq__answer {
  color: rgba(10, 10, 10, 0.7);
  max-width: 760px;
  padding: 0 54px 26px 0;
}

.ethos-guide-section--ink .ethos-guide-faq__answer,
.ethos-guide-section--ink-2 .ethos-guide-faq__answer {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-prose {
  max-width: 800px;
}

.ethos-guide-prose > p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.45;
}

.ethos-guide-prose p,
.ethos-guide-prose li {
  color: rgba(10, 10, 10, 0.72);
}

.ethos-guide-section--ink .ethos-guide-prose p,
.ethos-guide-section--ink .ethos-guide-prose li,
.ethos-guide-section--ink-2 .ethos-guide-prose p,
.ethos-guide-section--ink-2 .ethos-guide-prose li {
  color: rgba(255, 255, 255, 0.78);
}

.ethos-guide-note {
  border-left: 1px solid var(--guide-gold);
  margin-top: clamp(42px, 5vw, 70px);
  max-width: 840px;
  padding-left: 28px;
}

.ethos-guide-note p {
  color: inherit;
  font-size: 0.95rem;
}

.ethos-guide-resource-links {
  border-top: 1px solid var(--guide-light-rule);
  margin-top: clamp(38px, 5vw, 62px);
  padding-top: 24px;
}

.ethos-guide-section--ink .ethos-guide-resource-links,
.ethos-guide-section--ink-2 .ethos-guide-resource-links {
  border-color: var(--guide-dark-rule);
}

.ethos-guide-resource-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ethos-guide-resource-links li {
  margin: 0;
}

.ethos-guide-resource-links a {
  align-items: baseline;
  color: var(--guide-gold-readable);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.035em;
  line-height: 1.55;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.ethos-guide-section--ink .ethos-guide-resource-links a,
.ethos-guide-section--ink-2 .ethos-guide-resource-links a {
  color: var(--guide-gold);
}

.ethos-guide-resource-links a:hover {
  text-decoration-thickness: 2px;
}

.ethos-guide-resource-links a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.ethos-guide-valuation {
  display: grid;
  grid-template-columns: 1fr 180px;
  max-width: 920px;
}

.ethos-guide-page--selling-process .ethos-guide-valuation {
  grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
}

.ethos-guide-valuation input {
  background: var(--paper);
  border: 1px solid var(--guide-light-rule);
  border-radius: 0;
  color: var(--guide-ink);
  min-height: 72px;
  padding: 0 26px;
}

.ethos-guide-valuation .ethos-guide-button {
  min-height: 72px;
}

.ethos-guide-section--paper .ethos-guide-valuation .ethos-guide-button--gold:hover,
.ethos-guide-section--paper-2 .ethos-guide-valuation .ethos-guide-button--gold:hover {
  background: var(--guide-ink);
  border-color: var(--guide-ink);
  color: var(--paper);
}

.ethos-guide-fine-print {
  color: rgba(10, 10, 10, 0.62);
  font-size: 0.85rem !important;
  margin-top: 18px;
}

.ethos-guide-cta {
  background: var(--guide-ink);
  color: var(--paper);
}

.ethos-guide-cta__grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.ethos-guide-page--relocation #close-cta .ethos-guide-cta__grid,
.ethos-guide-page--ethos-private #close-cta .ethos-guide-cta__grid {
  align-items: start;
}

.ethos-guide-page--relocation #close-cta .ethos-guide-cta__content,
.ethos-guide-page--ethos-private #close-cta .ethos-guide-cta__content {
  position: sticky;
  top: 150px;
}

.ethos-guide-cta__content h2 {
  margin-bottom: 26px;
}

.ethos-guide-cta__copy {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  max-width: 650px;
}

.ethos-guide-cta__note {
  border-left: 1px solid var(--guide-gold);
  color: rgba(255, 255, 255, 0.78);
  padding: 18px 0 18px clamp(28px, 4vw, 52px);
}

.ethos-guide-cta__note p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.ethos-guide-cta__note a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: var(--guide-gold);
  text-underline-offset: 3px;
}

.ethos-guide-source-label {
  color: var(--guide-gold);
  font-size: 0.7rem !important;
  letter-spacing: 0.14em;
  margin: 24px 0 10px;
  text-transform: uppercase;
}

.ethos-guide-source-list {
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
  max-height: none;
  overflow: visible;
  padding-left: 18px;
}

.ethos-guide-source-list li + li {
  margin-top: 7px;
}

.ethos-guide-section--paper .ethos-guide-eyebrow,
.ethos-guide-section--paper-2 .ethos-guide-eyebrow,
.ethos-guide-section--paper .ethos-guide-editorial-item__number,
.ethos-guide-section--paper-2 .ethos-guide-editorial-item__number,
.ethos-guide-section--paper .ethos-guide-timeline__kicker,
.ethos-guide-section--paper-2 .ethos-guide-timeline__kicker,
.ethos-guide-section--paper .ethos-guide-numbered > li > span,
.ethos-guide-section--paper-2 .ethos-guide-numbered > li > span,
.ethos-guide-section--paper .ethos-guide-table thead th,
.ethos-guide-section--paper-2 .ethos-guide-table thead th {
  color: var(--guide-gold-readable);
}

.ethos-guide-section--paper .ethos-guide-timeline__timing,
.ethos-guide-section--paper-2 .ethos-guide-timeline__timing {
  color: var(--guide-gold-readable) !important;
}

.ethos-guide-section--paper .ethos-guide-checklist li > span,
.ethos-guide-section--paper-2 .ethos-guide-checklist li > span {
  border-color: var(--guide-gold-readable);
}

.ethos-guide-section--paper .ethos-guide-checklist li > span::after,
.ethos-guide-section--paper-2 .ethos-guide-checklist li > span::after {
  border-color: var(--guide-gold-readable);
}

.ethos-guide-section--paper summary:focus-visible,
.ethos-guide-section--paper .ethos-guide-table-wrap:focus-visible,
.ethos-guide-section--paper input:focus-visible,
.ethos-guide-section--paper .ethos-guide-valuation .ethos-guide-button:focus-visible,
.ethos-guide-section--paper-2 summary:focus-visible,
.ethos-guide-section--paper-2 .ethos-guide-table-wrap:focus-visible,
.ethos-guide-section--paper-2 input:focus-visible,
.ethos-guide-section--paper-2 .ethos-guide-valuation .ethos-guide-button:focus-visible {
  outline-color: var(--guide-gold-readable);
}

@supports (color: color-mix(in srgb, var(--ink) 50%, var(--paper))) {
  .ethos-guide-section--paper .ethos-guide-eyebrow,
  .ethos-guide-section--paper-2 .ethos-guide-eyebrow,
  .ethos-guide-section--paper .ethos-guide-editorial-item__number,
  .ethos-guide-section--paper-2 .ethos-guide-editorial-item__number,
  .ethos-guide-section--paper .ethos-guide-timeline__kicker,
  .ethos-guide-section--paper-2 .ethos-guide-timeline__kicker,
  .ethos-guide-section--paper .ethos-guide-numbered > li > span,
  .ethos-guide-section--paper-2 .ethos-guide-numbered > li > span,
  .ethos-guide-section--paper .ethos-guide-table thead th,
  .ethos-guide-section--paper-2 .ethos-guide-table thead th {
    color: color-mix(in srgb, var(--guide-gold) 56%, var(--guide-ink));
  }

  .ethos-guide-section--paper .ethos-guide-timeline__timing,
  .ethos-guide-section--paper-2 .ethos-guide-timeline__timing {
    color: color-mix(in srgb, var(--guide-gold) 56%, var(--guide-ink)) !important;
  }

  .ethos-guide-section--paper .ethos-guide-checklist li > span,
  .ethos-guide-section--paper-2 .ethos-guide-checklist li > span {
    border-color: color-mix(in srgb, var(--guide-gold) 56%, var(--guide-ink));
  }

  .ethos-guide-section--paper .ethos-guide-checklist li > span::after,
  .ethos-guide-section--paper-2 .ethos-guide-checklist li > span::after {
    border-color: color-mix(in srgb, var(--guide-gold) 56%, var(--guide-ink));
  }

  .ethos-guide-section--paper summary:focus-visible,
  .ethos-guide-section--paper .ethos-guide-table-wrap:focus-visible,
  .ethos-guide-section--paper input:focus-visible,
  .ethos-guide-section--paper .ethos-guide-valuation .ethos-guide-button:focus-visible,
  .ethos-guide-section--paper-2 summary:focus-visible,
  .ethos-guide-section--paper-2 .ethos-guide-table-wrap:focus-visible,
  .ethos-guide-section--paper-2 input:focus-visible,
  .ethos-guide-section--paper-2 .ethos-guide-valuation .ethos-guide-button:focus-visible {
    outline-color: color-mix(in srgb, var(--guide-gold) 42%, var(--guide-ink));
  }
}

@media (max-width: 1280px) {
  .ethos-guide-page--buying-process .ethos-guide-timeline,
  .ethos-guide-page--selling-process .ethos-guide-timeline,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline {
    gap: 48px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ethos-guide-page--buying-process .ethos-guide-timeline::before,
  .ethos-guide-page--selling-process .ethos-guide-timeline::before,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline::before,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline::before {
    display: none;
  }

  .ethos-guide-page--buying-process .ethos-guide-timeline__item,
  .ethos-guide-page--selling-process .ethos-guide-timeline__item,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline__item,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline__item {
    border-top: 1px solid var(--guide-gold);
    padding-top: 28px;
  }

  .ethos-guide-page--buying-process .ethos-guide-timeline__item::before,
  .ethos-guide-page--selling-process .ethos-guide-timeline__item::before,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline__item::before,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline__item::before {
    top: -5px;
  }

  .ethos-guide-page--financing .ethos-guide-editorial-grid--4,
  .ethos-guide-page--buying-process #contingencies .ethos-guide-editorial-grid--4,
  .ethos-guide-page--selling-process #launch-and-showings .ethos-guide-editorial-grid--4,
  .ethos-guide-page--relocation #investigate-address .ethos-guide-editorial-grid--4,
  .ethos-guide-page--relocation #protect-physical-move .ethos-guide-editorial-grid--4,
  .ethos-guide-page--ethos-private #seller-reasons .ethos-guide-editorial-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ethos-guide-page--financing .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3),
  .ethos-guide-page--buying-process #contingencies .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3),
  .ethos-guide-page--selling-process #launch-and-showings .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3),
  .ethos-guide-page--relocation #investigate-address .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3),
  .ethos-guide-page--relocation #protect-physical-move .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3),
  .ethos-guide-page--ethos-private #seller-reasons .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .ethos-guide-page--financing .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--buying-process #contingencies .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--selling-process #launch-and-showings .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--relocation #investigate-address .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--relocation #protect-physical-move .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--ethos-private #seller-reasons .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3) {
    border-top: 1px solid var(--guide-light-rule);
    margin-top: 48px;
    padding-top: 48px;
  }

  .ethos-guide-page--relocation #protect-physical-move .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3),
  .ethos-guide-page--ethos-private #seller-reasons .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3) {
    border-color: var(--guide-dark-rule);
  }
}

@media (max-width: 1100px) {
  .ethos-guide-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 0;
  }

  .ethos-guide-timeline::before {
    display: none;
  }

  .ethos-guide-timeline__item {
    border-top: 1px solid var(--guide-gold);
    padding-top: 28px;
  }

  .ethos-guide-timeline__item::before {
    top: -5px;
  }

  .ethos-guide-editorial-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(n + 3) {
    border-top: 1px solid var(--guide-light-rule);
    margin-top: 48px;
    padding-top: 48px;
  }

  .ethos-guide-page--financing #credit-and-rates .ethos-guide-checklist {
    grid-template-columns: 1fr;
  }

  .ethos-guide-page--buying-process #inspection-deep-dive .ethos-guide-checklist,
  .ethos-guide-page--buying-process #closing-day .ethos-guide-checklist,
  .ethos-guide-page--selling-process #seller-readiness .ethos-guide-checklist,
  .ethos-guide-page--selling-process #contract-to-close .ethos-guide-checklist,
  .ethos-guide-page--relocation #relocation-checklist .ethos-guide-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ethos-guide-timeline,
  .ethos-guide-page--buying-process .ethos-guide-timeline,
  .ethos-guide-page--selling-process .ethos-guide-timeline,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ethos-guide-editorial-grid--3 {
    grid-template-columns: 1fr;
  }

  .ethos-guide-editorial-grid--3 .ethos-guide-editorial-item,
  .ethos-guide-editorial-grid--3 .ethos-guide-editorial-item:first-child,
  .ethos-guide-editorial-grid--3 .ethos-guide-editorial-item:last-child {
    border-left: 0;
    border-top: 1px solid var(--guide-light-rule);
    padding: 34px 0;
  }

  .ethos-guide-section--ink .ethos-guide-editorial-grid--3 .ethos-guide-editorial-item,
  .ethos-guide-section--ink-2 .ethos-guide-editorial-grid--3 .ethos-guide-editorial-item {
    border-color: var(--guide-dark-rule);
  }

  .ethos-guide-cta__grid {
    display: block;
  }

  .ethos-guide-page--relocation #close-cta .ethos-guide-cta__content,
  .ethos-guide-page--ethos-private #close-cta .ethos-guide-cta__content {
    position: static;
  }

  .ethos-guide-cta__note {
    border-left: 0;
    border-top: 1px solid var(--guide-gold);
    margin-top: 52px;
    padding: 30px 0 0;
  }

  .ethos-guide-page--investment .ethos-guide-checklist {
    grid-template-columns: 1fr;
  }

  .ethos-guide-page--ethos-private #buyer-readiness .ethos-guide-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ethos-guide-table-wrap::after {
    background: rgba(201, 169, 110, 0.7);
    bottom: 0;
    content: "";
    pointer-events: none;
    position: sticky;
    right: 0;
    top: 0;
    width: 2px;
  }

  .ethos-guide-table-hint {
    color: rgba(10, 10, 10, 0.64);
    display: block;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em;
    margin: -18px 0 12px;
    text-transform: uppercase;
  }

  .ethos-guide-section--ink .ethos-guide-table-hint,
  .ethos-guide-section--ink-2 .ethos-guide-table-hint {
    color: rgba(255, 255, 255, 0.78);
  }

  .ethos-guide-table tbody th {
    background: var(--guide-paper);
    left: 0;
    min-width: 180px;
    position: sticky;
    z-index: 1;
  }

  .ethos-guide-table thead th:first-child {
    background: var(--guide-paper);
    left: 0;
    min-width: 180px;
    position: sticky;
    z-index: 2;
  }

  .ethos-guide-section--paper-2 .ethos-guide-table thead th:first-child,
  .ethos-guide-section--paper-2 .ethos-guide-table tbody th {
    background: var(--guide-paper-2);
  }

  .ethos-guide-section--ink .ethos-guide-table thead th:first-child,
  .ethos-guide-section--ink .ethos-guide-table tbody th {
    background: var(--guide-ink);
  }

  .ethos-guide-section--ink-2 .ethos-guide-table thead th:first-child,
  .ethos-guide-section--ink-2 .ethos-guide-table tbody th {
    background: var(--guide-ink-2);
  }
}

@media (max-width: 760px) {
  .ethos-guide-page .container {
    width: min(100% - 36px, 1420px);
  }

  .ethos-guide-hero {
    min-height: min(680px, 100svh);
    padding: 170px 0 88px;
  }

  .ethos-guide-hero__lede {
    margin: 24px 0 32px;
  }

  .ethos-guide-button {
    width: 100%;
  }

  .ethos-guide-editorial-grid,
  .ethos-guide-editorial-grid--2,
  .ethos-guide-editorial-grid--3,
  .ethos-guide-editorial-grid--4 {
    display: block;
  }

  .ethos-guide-editorial-item,
  .ethos-guide-editorial-item:first-child,
  .ethos-guide-editorial-item:last-child,
  .ethos-guide-editorial-grid--4 .ethos-guide-editorial-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--guide-light-rule);
    margin: 0;
    padding: 30px 0;
  }

  .ethos-guide-section--ink .ethos-guide-editorial-item,
  .ethos-guide-section--ink-2 .ethos-guide-editorial-item {
    border-color: var(--guide-dark-rule);
  }

  .ethos-guide-timeline,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline {
    display: block;
    padding: 0 0 0 42px;
  }

  .ethos-guide-timeline::before,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline::before,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline::before {
    background: var(--guide-gold);
    bottom: 24px;
    display: block;
    height: auto;
    left: 4px;
    right: auto;
    top: 6px;
    width: 1px;
  }

  .ethos-guide-timeline__item,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline__item,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline__item {
    border: 0;
    padding: 0 0 44px 8px;
  }

  .ethos-guide-timeline__item::before,
  .ethos-guide-page--relocation #move-plan .ethos-guide-timeline__item::before,
  .ethos-guide-page--ethos-private #private-plan .ethos-guide-timeline__item::before {
    left: -42px;
    top: 4px;
  }

  .ethos-guide-timeline__item > strong {
    font-size: 3.25rem;
  }

  .ethos-guide-numbered > li {
    gap: 14px;
    grid-template-columns: 52px 1fr;
  }

  .ethos-guide-checklist {
    display: block;
  }

  .ethos-guide-valuation {
    display: block;
  }

  .ethos-guide-calculation {
    display: block;
  }

  .ethos-guide-calculation__example {
    margin-top: 42px;
  }

  .ethos-guide-valuation input {
    font-size: 16px;
    min-height: 62px;
    width: 100%;
  }

  .ethos-guide-valuation .ethos-guide-button {
    min-height: 62px;
  }

  .ethos-guide-cta__grid {
    display: block;
  }

  .ethos-guide-cta__note {
    border-left: 0;
    border-top: 1px solid var(--guide-gold);
    margin-top: 52px;
    padding: 30px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .ethos-guide-page .reveal {
    opacity: 1;
    transform: none;
  }
}
