.service-page {
  background: var(--paper);
}

.service-page .main-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.service-page .text-link-light {
  border-bottom-color: var(--caramel);
  color: var(--off-white);
}

/* Breadcrumb and hero */

.service-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 52, 40, 0.16);
  background: var(--off-white);
}

.service-hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 29%;
  height: 100%;
  background: var(--greige-light);
  content: "";
}

.service-hero > .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  padding-top: 24px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b5e55;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumb li + li::before {
  color: var(--caramel);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--coffee);
}

.service-hero-layout {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: 78px;
  padding: 42px 0 48px;
}

.service-hero-copy {
  max-width: 720px;
}

.service-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 0.98;
}

.service-answer {
  max-width: 700px;
  margin-bottom: 32px;
  color: #5d4e45;
  font-size: 16px;
  line-height: 1.75;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.service-brand-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1.68;
  background: var(--coffee);
}

.service-brand-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 240, 232, 0.28);
  content: "";
  pointer-events: none;
}

.service-brand-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: auto;
  max-width: none;
}

.service-person-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 0.84;
  background: var(--greige);
}

.service-person-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 240, 232, 0.35);
  content: "";
  pointer-events: none;
}

.service-person-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.service-visual-label {
  position: relative;
  width: 82%;
  margin: -1px 0 0 auto;
  border-left: 4px solid var(--caramel);
  padding: 18px 22px;
  background: var(--coffee);
  color: var(--off-white);
}

.service-visual-label span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.service-visual-label strong {
  display: block;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-person-label {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 250px;
  margin: 0;
  box-shadow: 0 16px 40px rgba(48, 34, 25, 0.14);
}

.service-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 52, 40, 0.24);
}

.service-facts > div {
  min-height: 92px;
  border-right: 1px solid rgba(74, 52, 40, 0.24);
  padding: 20px 28px;
}

.service-facts > div:first-child {
  padding-left: 0;
}

.service-facts > div:last-child {
  border-right: 0;
}

.service-facts dt {
  margin-bottom: 5px;
  color: var(--olive-dark);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}

/* In-page navigation */

.service-anchor-nav {
  position: sticky;
  z-index: 60;
  top: var(--header-height);
  border-bottom: 1px solid rgba(245, 240, 232, 0.18);
  background: var(--coffee);
  color: var(--off-white);
}

.service-anchor-inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.service-anchor-inner::-webkit-scrollbar {
  display: none;
}

.service-anchor-inner > span {
  color: var(--caramel);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-anchor-inner a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.service-anchor-inner a:hover {
  color: var(--white);
}

.service-anchor-inner a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--caramel);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.service-anchor-inner a:hover::after,
.service-anchor-inner a.is-active::after,
.service-anchor-inner a[aria-current="location"]::after {
  transform: scaleX(1);
}

.service-anchor-inner a.is-active,
.service-anchor-inner a[aria-current="location"] {
  color: var(--white);
}

/* Shared service sections */

.service-section {
  scroll-margin-top: calc(var(--header-height) + 58px);
  padding: 112px 0;
}

.service-section .lead {
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.4;
}

.service-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 64px;
}

.service-section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.service-section-heading > p {
  margin-bottom: 5px;
  color: #66574d;
}

/* Definition */

.service-definition {
  background: var(--paper);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.editorial-aside {
  position: sticky;
  top: 180px;
  border-top: 1px solid var(--caramel);
  padding-top: 24px;
}

.aside-number {
  display: block;
  margin-bottom: 40px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
}

.editorial-aside p {
  margin: 0;
  color: #695a50;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
}

.editorial-content {
  max-width: 800px;
}

.editorial-content h2 {
  max-width: 700px;
}

.editorial-content > p:not(.eyebrow):not(.lead) {
  color: #625249;
}

.editorial-content blockquote {
  position: relative;
  margin: 52px 0;
  border-top: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 38px 54px;
}

.editorial-content blockquote::before {
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 70px;
  line-height: 1;
  content: "“";
}

.editorial-content blockquote p {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  line-height: 1.2;
}

.editorial-content blockquote cite {
  color: var(--olive-dark);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.not-list {
  margin-top: 54px;
}

.not-list h3 {
  margin-bottom: 28px;
  font-size: 30px;
}

.not-list > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.not-list p {
  min-height: 154px;
  margin: 0;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 24px;
}

.not-list strong,
.not-list span {
  display: block;
}

.not-list strong {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 22px;
}

.not-list span {
  color: #6b5c52;
  font-size: 12px;
  line-height: 1.6;
}

/* Situations */

.situations {
  background: var(--off-white);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.situation-grid article {
  min-height: 245px;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 32px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.situation-grid article:hover {
  z-index: 1;
  background: var(--paper);
  transform: translateY(-3px);
}

.situation-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

.situation-grid h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.situation-grid p {
  margin-bottom: 0;
  color: #67584f;
  font-size: 13px;
  line-height: 1.65;
}

.safety-note {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
  margin-top: 46px;
  border-left: 4px solid var(--olive);
  padding: 24px 28px;
  background: var(--greige-light);
}

.safety-note strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
}

.safety-note p {
  margin: 0;
  color: #5f5147;
  font-size: 13px;
}

.service-cta-line {
  border-top: 1px solid rgba(74, 52, 40, 0.14);
  border-bottom: 1px solid rgba(74, 52, 40, 0.14);
  padding: 38px 0;
  background: var(--greige-light);
}

.service-cta-line .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.service-cta-line p {
  max-width: 690px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.2;
}

/* Process */

.service-process {
  background: var(--coffee);
  color: var(--off-white);
}

.service-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.5fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 70px;
}

.service-process-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -50px;
}

.service-process-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 52px;
}

.service-process-heading > p:last-child {
  margin-bottom: 3px;
  color: #e5dcd2;
}

.service-process-list {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 240, 232, 0.28);
  border-left: 1px solid rgba(245, 240, 232, 0.28);
  padding: 0;
  list-style: none;
}

.service-process-list li {
  min-height: 320px;
  border-right: 1px solid rgba(245, 240, 232, 0.28);
  border-bottom: 1px solid rgba(245, 240, 232, 0.28);
  padding: 34px 28px;
}

.service-process-list li > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid var(--caramel);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

.service-process-list h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 26px;
}

.service-process-list p {
  margin: 0;
  color: #e5dcd2;
  font-size: 13px;
  line-height: 1.65;
}

/* Themes */

.themes {
  background: var(--paper);
}

.themes-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 100px;
}

.themes-intro {
  position: sticky;
  top: 180px;
}

.themes-intro p:last-child {
  margin-bottom: 0;
  color: #66574d;
}

.themes-list {
  margin: 0;
  border-top: 1px solid var(--greige);
  padding: 0;
  list-style: none;
}

.themes-list li {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--greige);
  padding: 16px 4px;
}

.themes-list span {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.15;
}

.themes-list b {
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

/* Online and geographic layer */

.online-section {
  background: var(--greige-light);
}

.online-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(470px, 1.1fr);
  align-items: start;
  gap: 100px;
}

.online-copy {
  max-width: 650px;
}

.online-copy > p:not(.eyebrow):not(.lead) {
  color: #5f5147;
}

.online-copy ul {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.online-copy li {
  position: relative;
  border-top: 1px solid rgba(74, 52, 40, 0.25);
  padding: 13px 0 13px 22px;
  color: #58483f;
  font-size: 12px;
  font-weight: 500;
}

.online-copy li:last-child {
  border-bottom: 1px solid rgba(74, 52, 40, 0.25);
}

.online-copy li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.state-preview {
  border-top: 1px solid rgba(74, 52, 40, 0.35);
}

.state-preview-heading {
  padding: 0 0 26px;
}

.state-preview-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--olive-dark);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.state-preview-heading h3 {
  margin: 0;
  font-size: 31px;
}

.state-preview > a {
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr 36px 18px;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(74, 52, 40, 0.35);
  font-family: var(--font-display);
  font-size: 25px;
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.state-preview > a:last-child {
  border-bottom: 1px solid rgba(74, 52, 40, 0.35);
}

.state-preview > a:hover {
  padding-left: 12px;
  background: rgba(245, 240, 232, 0.48);
}

.state-preview b {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
}

.state-preview a > span {
  color: var(--caramel);
  font-family: var(--font-body);
  font-size: 14px;
}

/* Professional */

.professional {
  background: var(--olive);
  color: var(--off-white);
}

.professional-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.84fr) minmax(480px, 1.16fr);
  align-items: center;
  gap: 100px;
}

.professional-portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  aspect-ratio: 0.846;
  background: var(--greige);
}

.professional-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 240, 232, 0.3);
  content: "";
  pointer-events: none;
}

.professional-portrait img {
  position: absolute;
  top: 0;
  left: -200%;
  width: 300%;
  height: auto;
  max-width: none;
}

.money-page .professional-portrait img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.professional-copy h2 {
  max-width: 680px;
  color: var(--white);
}

.professional-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: #ece6df;
}

.professional-copy .text-link {
  margin-top: 14px;
}

/* FAQ */

.service-faq {
  background: var(--paper);
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(540px, 1.32fr);
  align-items: start;
  gap: 100px;
}

.service-faq-intro {
  position: sticky;
  top: 180px;
}

.service-faq-intro p:last-child {
  color: #66574d;
}

@media (max-width: 1120px) {
  .service-hero-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 54px;
  }

  .service-hero h1 {
    font-size: 56px;
  }

  .service-section-heading,
  .service-process-heading {
    gap: 60px;
  }

  .editorial-layout,
  .themes-layout,
  .online-layout,
  .professional-layout,
  .service-faq-layout {
    gap: 66px;
  }
}

@media (max-width: 960px) {
  .service-section {
    padding: 88px 0;
  }

  .service-hero::after {
    width: 34%;
  }

  .service-hero-layout {
    min-height: 530px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 36px;
  }

  .service-hero h1 {
    font-size: 48px;
  }

  .service-answer {
    font-size: 14px;
  }

  .service-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .service-facts dd {
    font-size: 18px;
  }

  .service-anchor-nav {
    z-index: 55;
  }

  .service-section-heading,
  .service-process-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-process-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -10px;
  }

  .editorial-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 50px;
  }

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

  .service-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .themes-layout,
  .online-layout,
  .service-faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .themes-intro,
  .service-faq-intro {
    position: static;
    max-width: 680px;
  }

  .professional-layout {
    grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .service-section {
    padding: 72px 0;
  }

  .service-hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 245px;
  }

  .breadcrumb {
    padding-top: 16px;
  }

  .service-hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 20px;
  }

  .service-hero h1 {
    font-size: 43px;
  }

  .service-answer {
    margin-bottom: 24px;
    line-height: 1.65;
  }

  .service-hero-actions .button {
    width: 100%;
  }

  .service-hero-visual {
    max-width: none;
  }

  .service-person-frame {
    height: 270px;
    aspect-ratio: auto;
  }

  .service-person-frame img {
    object-position: center 24%;
  }

  .service-person-label {
    right: 0;
    bottom: 0;
    width: 230px;
  }

  .service-visual-label {
    width: 88%;
    padding: 14px 17px;
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-facts > div,
  .service-facts > div:first-child {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(74, 52, 40, 0.24);
    padding: 14px 0;
  }

  .service-facts > div:last-child {
    border-bottom: 0;
  }

  .service-anchor-inner {
    min-height: 52px;
    gap: 22px;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .editorial-aside {
    position: static;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: start;
    gap: 18px;
    padding-top: 18px;
  }

  .aside-number {
    margin: 0;
    font-size: 42px;
  }

  .editorial-aside p {
    font-size: 19px;
  }

  .service-section .lead {
    font-size: 22px;
  }

  .editorial-content blockquote {
    margin: 38px 0;
    padding: 30px 20px 30px 42px;
  }

  .editorial-content blockquote::before {
    top: 22px;
    font-size: 56px;
  }

  .editorial-content blockquote p {
    font-size: 27px;
  }

  .not-list > div,
  .situation-grid,
  .service-process-list {
    grid-template-columns: 1fr;
  }

  .not-list p {
    min-height: 0;
  }

  .service-section-heading {
    margin-bottom: 44px;
  }

  .situation-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .situation-grid article > span {
    margin-bottom: 20px;
  }

  .safety-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .service-cta-line .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .service-cta-line .button {
    width: 100%;
  }

  .service-process-heading h2 {
    font-size: 40px;
  }

  .service-process-list li {
    min-height: 0;
    padding: 28px 24px;
  }

  .service-process-list li > span {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
  }

  .themes-list span {
    font-size: 22px;
  }

  .online-layout {
    gap: 54px;
  }

  .state-preview > a {
    min-height: 64px;
    font-size: 22px;
  }

  .professional-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .professional-portrait {
    max-width: none;
    height: 360px;
    aspect-ratio: auto;
  }

  .professional-portrait img {
    top: -18px;
  }

  .service-faq-layout {
    gap: 34px;
  }
}

@media (max-width: 390px) {
  .service-hero h1 {
    font-size: 39px;
  }

  .service-answer {
    font-size: 13px;
  }

  .service-hero-actions .text-link {
    display: none;
  }

  .service-brand-frame {
    height: 148px;
    aspect-ratio: auto;
  }

  .service-hero-layout {
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .service-person-frame {
    height: 180px;
  }

  .service-person-label {
    width: 210px;
    min-height: 66px;
    padding: 12px 15px;
  }

  .service-facts {
    display: none;
  }

  .service-section-heading h2,
  .themes-intro h2,
  .online-copy h2,
  .professional-copy h2,
  .service-faq-intro h2 {
    font-size: 35px;
  }

  .service-process-heading h2 {
    font-size: 36px;
  }

  .professional-portrait {
    height: 300px;
  }
}

/* National money page extensions */

.money-page .service-answer {
  max-width: 720px;
}

.inline-conversion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 46px;
  border-top: 1px solid rgba(74, 52, 40, 0.2);
  padding-top: 28px;
}

.inline-conversion p {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
  line-height: 1.3;
}

.process-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.definition-questions {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.definition-questions article {
  min-height: 220px;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 26px;
}

.definition-questions h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.definition-questions p {
  margin: 0;
  color: #65564d;
  font-size: 12px;
  line-height: 1.65;
}

/* Entity matrix */

.semantic-situations {
  background: var(--off-white);
}

.semantic-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.semantic-grid article {
  min-height: 230px;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 27px 22px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.semantic-grid article:hover {
  z-index: 1;
  background: var(--paper);
  transform: translateY(-3px);
}

.semantic-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
}

.semantic-grid h3 {
  margin-bottom: 11px;
  font-size: 23px;
}

.semantic-grid p {
  margin: 0;
  color: #67584f;
  font-size: 12px;
  line-height: 1.6;
}

/* First session */

.first-session {
  background: var(--greige-light);
}

.first-session-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: 90px;
}

.first-session-intro {
  position: sticky;
  top: 180px;
}

.first-session-intro .lead {
  margin-bottom: 0;
}

.first-session-questions {
  border-top: 1px solid rgba(74, 52, 40, 0.34);
}

.first-session-questions article {
  display: grid;
  min-height: 170px;
  grid-template-columns: 58px minmax(190px, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid rgba(74, 52, 40, 0.34);
  padding: 30px 0;
}

.first-session-questions article > span {
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

.first-session-questions h3 {
  margin: 0;
  font-size: 25px;
}

.first-session-questions p {
  margin: 0;
  color: #5d4e45;
  font-size: 13px;
  line-height: 1.65;
}

/* Query fan-out sections */

.topic-section {
  border-top: 1px solid rgba(74, 52, 40, 0.14);
  background: var(--paper);
}

.topic-trust,
.topic-crisis {
  background: var(--off-white);
}

.topic-intimacy {
  background: var(--greige-light);
}

.topic-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: 100px;
}

.topic-layout-reverse .topic-heading {
  order: 2;
}

.topic-layout-reverse .topic-questions {
  order: 1;
}

.topic-heading {
  position: sticky;
  top: 180px;
}

.topic-number {
  display: block;
  margin-bottom: 32px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  line-height: 1;
}

.topic-heading h2 {
  max-width: 630px;
}

.topic-heading > p:last-child {
  margin-bottom: 0;
  color: #625349;
}

.topic-questions {
  border-top: 1px solid var(--greige);
}

.topic-questions article {
  border-bottom: 1px solid var(--greige);
  padding: 30px 0;
}

.topic-questions h3 {
  margin-bottom: 11px;
  font-size: 27px;
}

.topic-questions p {
  max-width: 680px;
  margin: 0;
  color: #64554c;
  font-size: 13px;
  line-height: 1.7;
}

.topic-questions .serious-answer {
  border-left: 4px solid var(--olive);
  padding-left: 24px;
  background: rgba(102, 112, 90, 0.07);
}

.serious-answer strong {
  color: var(--coffee);
  font-family: var(--font-display);
  font-size: 21px;
}

/* Online service block */

.online-deep {
  background: var(--off-white);
}

.online-deep-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.online-deep-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.online-deep-heading > p {
  margin-bottom: 4px;
  color: #625349;
}

.online-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--greige);
  border-left: 1px solid var(--greige);
}

.online-question-grid article {
  min-height: 250px;
  border-right: 1px solid var(--greige);
  border-bottom: 1px solid var(--greige);
  padding: 30px;
}

.online-question-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
}

.online-question-grid h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.online-question-grid p {
  margin: 0;
  color: #66574d;
  font-size: 12px;
  line-height: 1.65;
}

.online-practical {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  align-items: stretch;
  gap: 50px;
  margin-top: 58px;
}

.online-practical > div {
  border-top: 1px solid var(--caramel);
  padding-top: 24px;
}

.online-practical h3 {
  margin-bottom: 22px;
  font-size: 29px;
}

.online-practical ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.online-practical li {
  border-top: 1px solid rgba(74, 52, 40, 0.2);
  padding: 12px 0;
  color: #5d4e45;
  font-size: 12px;
}

.online-practical li:last-child {
  border-bottom: 1px solid rgba(74, 52, 40, 0.2);
}

.price-note {
  padding-right: 26px;
}

.price-note p {
  max-width: 610px;
  margin-bottom: 25px;
  color: #5d4e45;
}

/* Psychoanalysis differentiation */

.psychoanalysis {
  overflow: hidden;
  background: var(--coffee);
  color: var(--off-white);
}

.psychoanalysis-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 90px;
}

.psychoanalysis-mark {
  display: grid;
  width: 280px;
  height: 280px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 50%;
}

.psychoanalysis-mark img {
  width: 88%;
  height: auto;
  mix-blend-mode: lighten;
}

.psychoanalysis-copy h2 {
  max-width: 800px;
  color: var(--white);
}

.psychoanalysis-copy .lead {
  max-width: 760px;
  color: var(--off-white);
}

.psychoanalysis-copy > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #e5dcd2;
}

/* Professional proof */

.professional-facts {
  display: grid;
  margin: 34px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(245, 240, 232, 0.28);
}

.professional-facts > div {
  min-height: 86px;
  border-right: 1px solid rgba(245, 240, 232, 0.28);
  padding: 18px 20px;
}

.professional-facts > div:first-child {
  padding-left: 0;
}

.professional-facts > div:last-child {
  border-right: 0;
}

.professional-facts dt {
  margin-bottom: 6px;
  color: #ddd6cd;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.professional-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
}

.professional-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

/* National crawl hub */

.national-hub {
  background: var(--greige-light);
}

.national-hub-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 62px;
}

.national-hub-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.national-hub-heading > p {
  margin-bottom: 4px;
  color: #605148;
}

.states-subtitle {
  margin-bottom: 26px;
  font-size: 31px;
}

.state-region-groups {
  border-top: 1px solid rgba(74, 52, 40, 0.32);
}

.state-region-group {
  border-bottom: 1px solid rgba(74, 52, 40, 0.32);
}

.state-region-group > summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-right: 46px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.1;
  list-style: none;
  cursor: pointer;
}

.state-region-group > summary::-webkit-details-marker {
  display: none;
}

.state-region-group > summary::after {
  position: absolute;
  right: 4px;
  color: var(--caramel);
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
}

.state-region-group[open] > summary::after {
  content: "−";
}

.state-region-group > summary small {
  margin-left: auto;
  color: var(--olive-dark);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.state-region-group .state-grid {
  margin-bottom: 26px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 52, 40, 0.32);
  border-left: 1px solid rgba(74, 52, 40, 0.32);
}

.state-grid a {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(74, 52, 40, 0.32);
  border-bottom: 1px solid rgba(74, 52, 40, 0.32);
  padding: 15px 20px;
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.state-grid a:hover {
  padding-left: 25px;
  background: rgba(245, 240, 232, 0.55);
}

.state-grid span {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.15;
}

.state-grid b {
  color: var(--olive-dark);
  font-size: 9px;
  font-weight: 600;
}

.hub-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.money-page .service-faq-intro {
  max-width: 420px;
}

@media (max-width: 1120px) {
  .semantic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .first-session-layout,
  .topic-layout,
  .online-deep-heading,
  .psychoanalysis-layout,
  .national-hub-heading {
    gap: 60px;
  }

  .state-grid span {
    font-size: 17px;
  }
}

@media (max-width: 960px) {
  .definition-questions {
    grid-template-columns: 1fr;
  }

  .definition-questions article {
    min-height: 0;
  }

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

  .first-session-layout,
  .topic-layout,
  .online-deep-heading,
  .psychoanalysis-layout,
  .national-hub-heading {
    grid-template-columns: 1fr;
  }

  .first-session-intro,
  .topic-heading {
    position: static;
  }

  .topic-layout-reverse .topic-heading,
  .topic-layout-reverse .topic-questions {
    order: initial;
  }

  .topic-number {
    margin-bottom: 20px;
  }

  .online-question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psychoanalysis-mark {
    width: 210px;
    height: 210px;
  }

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

@media (max-width: 760px) {
  .inline-conversion,
  .professional-actions,
  .hub-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-conversion .button,
  .process-action .button,
  .professional-actions .button,
  .hub-links .button {
    width: 100%;
  }

  .semantic-grid,
  .online-question-grid,
  .state-grid {
    grid-template-columns: 1fr;
  }

  .state-region-group > summary {
    min-height: 66px;
    font-size: 24px;
  }

  .state-region-group > summary small {
    font-size: 9px;
  }

  .semantic-grid article,
  .online-question-grid article {
    min-height: 0;
    padding: 27px 24px;
  }

  .semantic-grid article > span,
  .online-question-grid article > span {
    margin-bottom: 20px;
  }

  .first-session-layout,
  .topic-layout,
  .online-deep-heading,
  .online-practical,
  .psychoanalysis-layout,
  .national-hub-heading {
    gap: 42px;
  }

  .first-session-questions article {
    min-height: 0;
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .first-session-questions article p {
    grid-column: 2;
  }

  .topic-questions article {
    padding: 26px 0;
  }

  .topic-questions h3 {
    font-size: 24px;
  }

  .online-practical {
    grid-template-columns: 1fr;
  }

  .psychoanalysis-mark {
    width: 170px;
    height: 170px;
  }

  .professional-facts {
    grid-template-columns: 1fr;
  }

  .professional-facts > div,
  .professional-facts > div:first-child {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.28);
    padding: 14px 0;
  }

  .professional-facts > div:last-child {
    border-bottom: 0;
  }

  .state-grid a {
    min-height: 64px;
  }
}

@media (max-width: 390px) {
  .money-page .service-answer {
    font-size: 13px;
  }

  .inline-conversion p {
    font-size: 22px;
  }

  .first-session-intro h2,
  .topic-heading h2,
  .online-deep-heading h2,
  .psychoanalysis-copy h2,
  .national-hub-heading h2 {
    font-size: 35px;
  }

  .psychoanalysis-mark {
    width: 140px;
    height: 140px;
  }
}

/* Readability typography pass */
.service-answer {
  font-size: 17px;
}

.service-anchor-inner > span,
.service-anchor-inner a {
  font-size: 12px;
}

.not-list span,
.situation-grid p,
.safety-note p,
.service-process-list p,
.online-copy li,
.definition-questions p,
.semantic-grid p,
.first-session-questions p,
.topic-questions p,
.online-question-grid p,
.online-practical li {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .money-page .service-answer {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-anchor-inner > span,
  .service-anchor-inner a {
    font-size: 12px;
  }
}

/* Client-approved larger typography */
.service-answer {
  font-size: 18px;
  line-height: 1.75;
}

.service-anchor-inner > span,
.service-anchor-inner a {
  font-size: 13px;
}

.not-list span,
.situation-grid p,
.safety-note p,
.service-process-list p,
.online-copy li,
.definition-questions p,
.semantic-grid p,
.first-session-questions p,
.topic-questions p,
.online-question-grid p,
.online-practical li {
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .money-page .service-answer {
    font-size: 17px;
  }

  .service-anchor-inner > span,
  .service-anchor-inner a {
    font-size: 13px;
  }

  .not-list span,
  .situation-grid p,
  .safety-note p,
  .service-process-list p,
  .online-copy li,
  .definition-questions p,
  .semantic-grid p,
  .first-session-questions p,
  .topic-questions p,
  .online-question-grid p,
  .online-practical li {
    font-size: 16px;
  }
}

/* Método Reencontrar */
.service-method {
  background: #F5F0E8;
  border-top: 1px solid rgba(74, 52, 40, 0.16);
  border-bottom: 1px solid rgba(74, 52, 40, 0.16);
}

.service-method-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.service-method-heading h2 {
  max-width: 620px;
  margin: 18px 0 0;
}

.service-method-lead {
  margin: 0;
  color: #4A3428;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.45vw, 40px);
  line-height: 1.2;
}

.service-method-heading blockquote {
  margin: 30px 0 0;
  padding: 5px 0 5px 24px;
  border-left: 2px solid #A67C52;
  color: #66705A;
  font-family: var(--font-display);
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.25;
}

.service-method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(48px, 6vw, 82px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(74, 52, 40, 0.24);
  border-bottom: 1px solid rgba(74, 52, 40, 0.24);
}

.service-method-steps li {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 38px) 34px;
}

.service-method-steps li + li {
  border-left: 1px solid rgba(74, 52, 40, 0.24);
}

.service-method-steps span {
  color: #A67C52;
  font-size: 13px;
  font-weight: 600;
}

.service-method-steps h3 {
  margin: 18px 0 12px;
  color: #4A3428;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.25vw, 38px);
}

.service-method-steps p,
.service-method-note p {
  color: #4A3428;
  font-size: 18px;
  line-height: 1.78;
}

.service-method-steps p {
  margin: 0;
}

.service-method-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  margin-top: 34px;
  padding-left: 24px;
  border-left: 3px solid #66705A;
}

.service-method-note p {
  margin: 0;
}

@media (max-width: 820px) {
  .service-method-heading,
  .service-method-note,
  .service-method-steps {
    grid-template-columns: 1fr;
  }

  .service-method-steps li + li {
    border-top: 1px solid rgba(74, 52, 40, 0.24);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-method-steps p,
  .service-method-note p {
    font-size: 17px;
  }
}

.service-method-definition {
  margin: 24px 0 0;
  color: #4A3428;
  font-size: 18px;
  line-height: 1.82;
}

.service-method-audience {
  margin-top: clamp(50px, 7vw, 88px);
}

.service-method-audience > h3 {
  margin: 0 0 24px;
  color: #4A3428;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 46px);
}

.service-method-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(74, 52, 40, 0.24);
  border-bottom: 1px solid rgba(74, 52, 40, 0.24);
}

.service-method-audience-grid article {
  min-width: 0;
  padding: 32px clamp(24px, 4vw, 52px) 38px;
}

.service-method-audience-grid article + article {
  border-left: 1px solid rgba(74, 52, 40, 0.24);
}

.service-method-audience-grid span {
  color: #A67C52;
  font-size: 13px;
  font-weight: 600;
}

.service-method-audience-grid h4 {
  margin: 18px 0 12px;
  color: #4A3428;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.35vw, 38px);
}

.service-method-audience-grid p,
.service-method-meaning p {
  color: #4A3428;
  font-size: 18px;
  line-height: 1.82;
}

.service-method-audience-grid p {
  margin: 0;
}

.service-method-meaning {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  margin-top: clamp(48px, 6vw, 76px);
  padding: clamp(32px, 5vw, 58px) 0;
  border-top: 3px solid #66705A;
}

.service-method-meaning blockquote {
  margin: 18px 0 0;
  color: #4A3428;
  font-family: var(--font-display);
  font-size: clamp(29px, 2.8vw, 44px);
  line-height: 1.18;
}

.service-method-meaning p {
  margin: 0;
}

.service-method-meaning .service-method-closing {
  margin-top: 28px;
  color: #66705A;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.28;
}

@media (max-width: 820px) {
  .service-method-audience-grid,
  .service-method-meaning {
    grid-template-columns: 1fr;
  }

  .service-method-audience-grid article + article {
    border-top: 1px solid rgba(74, 52, 40, 0.24);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .service-method-definition,
  .service-method-audience-grid p,
  .service-method-meaning p {
    font-size: 17px;
  }
}
