:root {
  --ink: #17352f;
  --ink-soft: #46605a;
  --paper: #fbfaf6;
  --paper-deep: #f1eee6;
  --white: #ffffff;
  --forest: #173f37;
  --forest-light: #dce9e3;
  --clay: #b8543e;
  --clay-soft: #f4dfd8;
  --wine: #742d45;
  --gold: #d8a94b;
  --line: #d8ddd8;
  --shadow: 0 18px 50px rgba(23, 53, 47, 0.12);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.site-header.is-solid,
.interior .site-header {
  position: relative;
  background: var(--forest);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 24px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

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

.brand-copy span {
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--gold);
  left: 0;
  right: 100%;
  bottom: -8px;
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px 18px;
  background: var(--clay);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover {
  background: #9e3e2d;
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  border-color: currentColor;
  color: currentColor;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest) url("../images/counseling-room.jpg") center 58% / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 36, 31, 0.68);
}

.hero::after {
  content: "";
  position: absolute;
  top: 150px;
  right: 6vw;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 78px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #efd7ca;
  font-style: italic;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-surface {
  background: var(--forest);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.article-library {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 48px;
}

.surface-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 26px;
}

.surface-heading h2,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
}

.surface-heading p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.article-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.tab-button {
  min-height: 50px;
  margin: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.tab-button:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.tab-button[aria-selected="true"] {
  background: var(--gold);
  color: #19362f;
}

.tab-panel {
  padding-top: 22px;
}

.tab-panel[hidden] {
  display: none;
}

.article-link-grid,
.published-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.article-link-grid.single {
  grid-template-columns: 1fr;
}

.article-link-grid:not(.single) > .article-link:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.article-link {
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease;
}

.article-link:hover {
  background: #24564c;
}

.article-index {
  color: var(--gold);
  font-family: var(--display);
  font-size: 26px;
}

.article-link strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.article-link small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.article-arrow {
  color: var(--gold);
  font-size: 22px;
}

.published-list:empty {
  display: none;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 70px 0;
}

.section.tint {
  background: var(--paper-deep);
}

.section.dark {
  background: var(--wine);
  color: var(--white);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 640px;
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

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

.service-item {
  min-height: 285px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-item:nth-child(2) {
  background: var(--clay-soft);
}

.service-item:nth-child(3) {
  background: var(--forest-light);
}

.service-number {
  display: block;
  color: var(--clay);
  font-family: var(--display);
  font-size: 20px;
}

.service-item h3 {
  margin: 46px 0 12px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.1;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.service-item a {
  display: inline-block;
  margin-top: 18px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.portrait-block {
  position: relative;
  min-height: 490px;
  background: var(--forest);
  color: var(--white);
  padding: 42px;
  overflow: hidden;
}

.portrait-block::after {
  content: "RL";
  position: absolute;
  right: -16px;
  bottom: -56px;
  color: rgba(255, 255, 255, 0.07);
  font-family: var(--display);
  font-size: 220px;
  line-height: 1;
}

.portrait-block blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.12;
}

.portrait-block cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 34px;
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
}

.prose h2 { font-size: 38px; margin: 0 0 20px; }
.prose h3 { font-size: 27px; margin: 38px 0 12px; }
.prose p { margin: 0 0 20px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential-list div {
  background: var(--paper);
  padding: 18px;
}

.credential-list strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.credential-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.trust-strip div {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.trust-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  background: var(--clay-soft);
  border-left: 8px solid var(--clay);
  padding: 44px;
}

.contact-band h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.08;
}

.contact-band p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-actions .secondary {
  color: var(--ink);
}

.page-hero,
.article-hero {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner,
.article-hero-inner {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding: 94px 0 72px;
}

.page-hero h1,
.article-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(45px, 6vw, 76px);
}

.page-hero p,
.article-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-shell {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 72px;
  align-items: start;
}

.sidebar-note {
  position: sticky;
  top: 24px;
  border-top: 4px solid var(--gold);
  background: var(--forest);
  color: var(--white);
  padding: 24px;
}

.sidebar-note strong {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.sidebar-note p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.sidebar-note a {
  color: var(--gold);
  font-size: 14px;
  font-weight: 750;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 76px;
  margin: 0;
  border-left: 3px solid var(--clay);
  background: var(--paper-deep);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 650;
}

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

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

.faq-list summary {
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
}

.faq-list details p {
  padding: 0 0 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 0 100px;
}

.article-body > p:first-of-type {
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.45;
}

.article-body h2 {
  margin: 52px 0 17px;
  font-size: 38px;
}

.article-body h3 {
  margin: 38px 0 12px;
  font-size: 26px;
}

.article-callout {
  margin: 38px 0;
  border-left: 5px solid var(--gold);
  background: var(--forest-light);
  padding: 24px 28px;
}

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

.journal-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 28px;
  text-decoration: none;
}

.journal-card:nth-child(3n + 2) { background: var(--clay-soft); }
.journal-card:nth-child(3n + 3) { background: var(--forest-light); }

.journal-card small {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-card h2 {
  margin: 34px 0 12px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.12;
}

.journal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.journal-card span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 750;
}

.site-footer {
  background: #102b26;
  color: var(--white);
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 70px;
  padding: 64px 0 50px;
}

.footer-brand h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 500;
}

.footer-brand p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 22px 0 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }

  .menu-toggle {
    position: relative;
    z-index: 31;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    background: #102b26;
    padding: 110px 30px 40px;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-family: var(--display);
    font-size: 28px;
  }

  .nav-links .nav-cta {
    font-family: var(--body);
    font-size: 15px;
  }

  .hero { min-height: 610px; }

  .surface-heading,
  .section-heading,
  .split,
  .contact-band,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .surface-heading,
  .section-heading { gap: 18px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.26); }
  .contact-actions { justify-content: flex-start; }
  .sidebar-note { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-shell { width: min(100% - 28px, 1180px); min-height: 74px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy span { display: none; }
  .hero { min-height: 555px; background-position: 61% 50%; }
  .hero::after { width: 92px; height: 92px; top: 118px; right: 18px; }
  .hero-inner { width: min(100% - 28px, 1180px); padding: 130px 0 48px; }
  .hero h1 { font-size: 47px; }
  .hero-copy { font-size: 16px; }
  .article-library,
  .shell,
  .page-hero-inner,
  .article-hero-inner,
  .content-shell,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }
  .article-library { padding: 34px 0 38px; }
  .surface-heading h2,
  .section-heading h2 { font-size: 38px; }
  .tab-list { display: grid; grid-template-columns: 1fr 1fr; }
  .tab-button { width: 100%; border-left: 1px solid rgba(255, 255, 255, 0.22); border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
  .tab-button:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .article-link-grid,
  .published-list,
  .service-grid,
  .credential-list,
  .journal-grid { grid-template-columns: 1fr; }
  .article-link { grid-template-columns: 38px 1fr 18px; padding: 16px 12px; }
  .article-link strong { font-size: 18px; }
  .section { padding: 68px 0; }
  .section.compact { padding: 52px 0; }
  .service-item { min-height: 230px; }
  .portrait-block { min-height: 390px; padding: 28px; }
  .portrait-block blockquote { font-size: 31px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.26); }
  .trust-strip div:last-child { border-bottom: 0; }
  .contact-band { padding: 30px 24px; }
  .contact-band h2 { font-size: 34px; }
  .page-hero-inner,
  .article-hero-inner { padding: 68px 0 54px; }
  .page-hero h1,
  .article-hero h1 { font-size: 44px; }
  .content-shell { padding: 54px 0 70px; }
  .feature-list { grid-template-columns: 1fr; }
  .article-body { width: min(100% - 28px, 760px); padding: 52px 0 76px; }
  .article-body h2 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
