:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f4f1eb;
  --surface-tint: #e7ebde;
  --ink: #102a43;
  --muted: #536579;
  --subtle: #728095;
  --sage-bronze: #8c9476;
  --sage-bronze-strong: #60684f;
  --sage-bronze-soft: #e5e8dc;
  --accent: #687052;
  --accent-strong: #244a63;
  --accent-soft: #dfe5d2;
  --cta-bg: #244a63;
  --cta-bg-hover: #102a43;
  --line: rgba(16, 42, 67, 0.1);
  --line-strong: rgba(16, 42, 67, 0.16);
  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.05), 0 8px 24px rgba(16, 42, 67, 0.06);
  --shadow-md: 0 18px 50px rgba(16, 42, 67, 0.12);
  --shadow-border:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 1px 2px -1px rgba(0, 0, 0, 0.08),
    0 8px 24px -12px rgba(0, 0, 0, 0.14);
  --shadow-border-hover:
    0 0 0 1px rgba(0, 0, 0, 0.09),
    0 2px 4px -2px rgba(0, 0, 0, 0.1),
    0 16px 36px -18px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1168px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(4.5rem, 8vw, 6.5rem);
  --external-link-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(47, 102, 86, 0.08), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent-soft);
}

.home-main {
  background:
    linear-gradient(
      180deg,
      #fbfaf7 0%,
      #f8f6f0 18%,
      #f5f8f6 42%,
      #eef6f8 72%,
      #e7f1f7 100%
    );
  padding-bottom: clamp(2rem, 5vw, 3.25rem);
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 102, 86, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  padding: 0.62rem var(--gutter);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto var(--gutter) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 102, 86, 0.18), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3rem;
  text-decoration: none;
}

.brand-logo-link {
  flex: 0 0 auto;
  min-height: clamp(2.75rem, 5vw, 3.85rem);
}

.brand-logo {
  width: clamp(18rem, 34vw, 27rem);
  max-width: min(64vw, 27rem);
  max-height: clamp(2.65rem, 4.7vw, 3.5rem);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  aspect-ratio: 1;
  color: var(--surface);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: var(--gutter);
  right: var(--gutter);
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.portal-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  align-items: center;
  min-height: 2.9rem;
  gap: 0.45rem;
  border: 1px solid rgba(16, 42, 67, 0.13);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sage-bronze-strong);
  font-size: 0.88rem;
  font-weight: 840;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-border);
  backdrop-filter: blur(14px) saturate(150%);
  scale: 1;
  transition-property: background, border-color, box-shadow, scale, transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.portal-float::after {
  content: "";
  width: 0.95em;
  height: 0.95em;
  flex: 0 0 auto;
  background-color: currentColor;
  mask: var(--external-link-icon) center / contain no-repeat;
  -webkit-mask: var(--external-link-icon) center / contain no-repeat;
}

.portal-float:hover {
  border-color: rgba(140, 148, 118, 0.42);
  background: var(--surface);
  box-shadow: var(--shadow-border-hover);
  transform: translateY(-1px);
}

.portal-float:active {
  scale: 0.97;
}

.site-header.nav-open .site-nav {
  display: grid;
  gap: 0.2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 2.9rem;
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  scale: 1;
  transition-property: color, background, scale;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.site-nav a:hover {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-strong);
  background: rgba(229, 232, 220, 0.86);
}

.nav-services {
  position: relative;
  display: grid;
}

.nav-services-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  min-width: 2.9rem;
  height: 2.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  scale: 1;
  transition-property: background, color, scale;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-services-toggle:hover,
.nav-services-toggle:focus-visible {
  color: var(--accent-strong);
}

.nav-services-toggle:active {
  scale: 0.96;
}

.nav-services-toggle span {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-services.services-open .nav-services-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.nav-services[data-services-open="true"] .nav-services-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.nav-services-row:has(.nav-services-toggle[aria-expanded="true"]) .nav-services-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  display: none;
  gap: 0.14rem;
  margin: 0.1rem 0 0.3rem 0.8rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
}

.nav-services.services-open .nav-dropdown,
.nav-services[data-services-open="true"] .nav-dropdown,
.nav-services-row:has(.nav-services-toggle[aria-expanded="true"]) + .nav-dropdown {
  display: grid;
}

.site-nav .nav-dropdown a {
  min-height: 2.55rem;
  padding: 0.58rem 0.74rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.site-nav .nav-cta {
  display: none;
  flex: 0 0 auto;
  justify-content: center;
  background: var(--cta-bg);
  color: var(--surface);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.site-nav .nav-cta:hover {
  color: var(--surface);
  background: var(--cta-bg-hover);
}

.site-nav a.nav-mobile-portal {
  justify-content: flex-start;
  margin-top: 0.35rem;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding-top: 0.95rem;
  color: var(--sage-bronze-strong);
  text-align: left;
  white-space: nowrap;
}

.site-nav .nav-mobile-portal::after {
  content: "";
  width: 0.95em;
  height: 0.95em;
  flex: 0 0 auto;
  margin-left: 0.42rem;
  background-color: currentColor;
  mask: var(--external-link-icon) center / contain no-repeat;
  -webkit-mask: var(--external-link-icon) center / contain no-repeat;
}

.site-nav .nav-mobile-portal:hover {
  color: var(--accent);
  background: transparent;
}

.site-nav a:active {
  scale: 0.96;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  scale: 1;
  transition-property: scale, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.nav-toggle:active {
  scale: 0.96;
}

.nav-toggle span:not(.sr-only) {
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition-property: transform, opacity;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) clamp(3rem, 7vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.84) 45%, rgba(251, 250, 247, 0.26) 100%),
    url("assets/images/anchored-psychology-hero.jpg?v=20260529-office") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto var(--gutter) 0;
  height: 1px;
  background: var(--line);
}

.hero-media {
  display: none;
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  --ink: #061f3a;
  --muted: #263f5b;
  --accent: #123b61;
  --accent-strong: #061f3a;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.balanced-heading {
  max-width: 760px;
}

.compact-heading {
  font-size: clamp(1.25rem, 2.35vw, 1.8rem);
}

.compact-heading-tight {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
}

.consultation-heading {
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
}

p,
li,
summary,
.cta-microcopy,
.clinical-note,
.credential-line {
  text-wrap: pretty;
}

.eyebrow,
.service-label,
.footer-heading,
.button {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
}

h1 {
  font-size: clamp(2.15rem, 7vw, 4.2rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero h1 {
  max-width: min(1120px, 86vw);
  margin-inline: auto;
  font-size: clamp(2.5rem, 8vw, 5.15rem);
  text-align: center;
}

h2 {
  max-width: 860px;
  font-size: clamp(2.05rem, 5vw, 3.45rem);
}

h3 {
  font-size: clamp(1.12rem, 3vw, 1.38rem);
  font-weight: 780;
}

h4 {
  font-size: clamp(1.04rem, 2vw, 1.18rem);
  font-weight: 780;
  line-height: 1.22;
}

p {
  margin: 0;
}

.hero-content > p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.intro-text,
.split-copy > p,
.location-copy p:not(.eyebrow),
.article-content p,
.article-content li {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
}

.section-copy {
  display: grid;
  gap: 0.7rem;
}

.section-copy > p:not(.eyebrow) {
  max-width: 700px;
}

.centered .section-copy > p:not(.eyebrow),
.section-copy.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.hero-content > p:not(.eyebrow) {
  max-width: min(900px, 86vw);
  margin-inline: 0 auto;
  margin-top: 1.25rem;
  color: #102a43;
  font-weight: 560;
  text-align: left;
}

.hero-content h1 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.cta-microcopy {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero .cta-microcopy {
  max-width: 520px;
}

.clinical-note {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.5;
}

.credential-line {
  margin-top: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.centered-actions {
  justify-content: center;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-actions-primary {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.18rem;
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
  scale: 1;
  transition-property: transform, scale, box-shadow, background, border-color, color;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  scale: 0.96;
}

.button.primary {
  background: var(--cta-bg);
  color: var(--surface);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.2);
}

.button.primary:hover {
  background: var(--cta-bg-hover);
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.24);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-strong);
}

.button.secondary:hover {
  border-color: rgba(47, 102, 86, 0.28);
  background: var(--surface);
}

.button.light {
  background: var(--cta-bg);
  color: var(--surface);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.2);
}

.button.light:hover {
  background: var(--cta-bg-hover);
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.24);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-width: 820px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  border: 1px solid rgba(47, 102, 86, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.58rem 0.88rem;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.05);
}

.nowrap-label {
  white-space: normal;
}

.desktop-nowrap {
  white-space: normal;
}

.trust-list li::before,
.sidebar-card li::before,
.location-card li::before,
.location-card p:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.home-main .section {
  padding-top: clamp(3.75rem, 7vw, 5.6rem);
  padding-bottom: clamp(3.75rem, 7vw, 5.6rem);
}

.intro.section,
#services.section,
.fees-preview,
.about-preview,
.location-section {
  isolation: isolate;
}

.intro.section::before,
#services.section::before,
.fees-preview::before,
.about-preview::before,
.location-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}

.intro.section::before {
  background: linear-gradient(180deg, #fbfaf7 0%, #f7faf9 100%);
}

.intro {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.intro-text {
  display: grid;
  gap: 1rem;
}

.about-preview {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}

.about-preview .section-copy > p:not(.eyebrow) {
  margin-top: 0.35rem;
}

.about-preview h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4.25vw, 3.15rem);
}

.about-preview .hero-actions,
.location-copy .hero-actions {
  margin-top: clamp(1.25rem, 3vw, 1.7rem);
}

.bio-aside {
  display: grid;
  gap: 1rem;
}

.bio-photo {
  align-self: start;
  overflow: hidden;
  min-height: 14rem;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-border);
}

.bio-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 44%;
  display: block;
}

.visual-break {
  padding-top: 0;
}

.trust-grid,
.expect-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.trust-grid article,
.expect-grid article {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-border);
  padding: clamp(1.1rem, 3vw, 1.4rem);
}

.trust-grid strong {
  display: block;
  color: var(--accent-strong);
  font-size: 1.08rem;
  line-height: 1.25;
}

.trust-grid span,
.expect-grid p {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.62;
}

#services.section::before {
  background: linear-gradient(180deg, #eef6f8 0%, #fbfaf7 100%);
}

.fees-preview::before {
  background: linear-gradient(180deg, #fbfaf7 0%, #eef6f8 100%);
}

.about-preview::before {
  background: linear-gradient(180deg, #f7faf9 0%, #eef6f8 100%);
}

.location-section::before {
  background: linear-gradient(180deg, #fbfaf7 0%, #f1f8fb 100%);
}

.home-main .intro.section::before,
.home-main .about-preview::before,
.home-main #services.section::before,
.home-main .fees-preview::before,
.home-main .location-section::before {
  background: transparent;
}

.faq-section {
  background: linear-gradient(180deg, rgba(238, 244, 240, 0.72), rgba(251, 250, 247, 0));
}

.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-copy.centered .desktop-nowrap {
  width: fit-content;
  margin-inline: 0 auto;
  text-align: left;
}

.section-copy.centered > h2.desktop-nowrap {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.section-copy.centered > .service-page-heading {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

.about-expertise-heading {
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.about-expertise-heading .eyebrow,
.about-expertise-heading .desktop-nowrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-expertise-heading > h2.desktop-nowrap {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.method-grid,
.service-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.services-subsection {
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

#services > .section-copy,
#services > .section-copy h2,
#services > .section-copy > p:not(.eyebrow) {
  max-width: none;
}

.section-copy-wide {
  width: 100%;
  max-width: none;
}

.section-copy-wide h2,
.section-copy-wide > p:not(.eyebrow) {
  width: 100%;
  max-width: none;
}

.home-overview-copy {
  display: block;
  width: 100%;
  max-width: none;
  text-align: center;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.home-overview-copy h2,
.home-overview-copy > p:not(.eyebrow) {
  display: block;
  width: 100%;
  max-width: none !important;
}

.home-overview-copy h2 {
  margin-top: 0.75rem;
  text-wrap: balance;
}

.home-overview-copy > p:not(.eyebrow) {
  max-width: 1040px !important;
  margin: 0.8rem auto 0;
}

.fees-preview > .section-copy,
.fees-preview > .section-copy h2,
.fees-preview > .section-copy > p:not(.eyebrow) {
  max-width: none;
}

.services-subsection:first-of-type {
  margin-top: clamp(1.5rem, 3vw, 2.35rem);
}

.services-kicker h3 {
  max-width: 780px;
  margin-inline: auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
}

.services-kicker p:not(.eyebrow) {
  margin-top: 0.7rem;
}

.services-kicker {
  padding-bottom: clamp(0.25rem, 1vw, 0.6rem);
  text-align: center;
}

.services-kicker::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: var(--accent-soft);
}

.specialty-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-top: clamp(1rem, 2.5vw, 1.55rem);
}

.specialty-grid .service-card {
  flex: 0 1 20rem;
  width: min(100%, 20rem);
  max-width: 20rem;
}

.method-grid article,
.service-card,
.article-content section,
.sidebar-card,
.location-card,
.faq-list details {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-border);
}

.method-grid article {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 15rem;
  padding: 1.35rem;
}

.method-grid span {
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.32rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.method-grid p,
.service-card p,
.credentials span,
.location-card p,
.faq-list p,
.site-footer p,
.sidebar-card li {
  color: var(--muted);
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  overflow: hidden;
  padding: 1.2rem;
  text-decoration: none;
  scale: 1;
  transition-property: transform, scale, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-border-hover);
}

.service-card:active {
  scale: 0.96;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(0.78);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.service-card h3,
.service-card h4 {
  margin-top: 0.85rem;
}

.method-grid h4 {
  margin-top: 0;
}

.specialty-grid .service-card h4 {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 720;
  line-height: 1.3;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.specialty-grid .card-title-nowrap {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.service-card p {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-label {
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.54rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 850;
}

.specialty-grid .service-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4rem;
  padding: 0.72rem 1rem;
  text-align: center;
  font-size: clamp(0.86rem, 1vw, 0.94rem);
  line-height: 1.22;
  overflow-wrap: normal;
  white-space: normal;
  word-break: normal;
}

.service-label-tight {
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
}

.service-label-wide {
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
}

.services-page-grid .service-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-self: start;
  height: fit-content;
  min-height: 21rem;
  padding: 1.35rem;
  text-align: center;
}

.services-page-grid .service-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.15rem;
  padding: 0.78rem 1.15rem;
  text-align: center;
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
  line-height: 1.16;
  white-space: normal;
}

.services-page-grid .service-label-tight {
  font-size: clamp(1.08rem, 1.24vw, 1.2rem);
}

.services-page-grid .service-card h3 {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 760;
  line-height: 1.25;
  text-wrap: balance;
}

.services-page-grid .service-card p {
  margin-top: 0;
  align-self: start;
  font-size: clamp(1.08rem, 1.18vw, 1.17rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.expect-section {
  padding-top: 0;
}

.expect-grid article {
  display: grid;
  gap: 0.7rem;
}

.expect-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.9rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.split-section {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.portrait-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-border);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: center 24%;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.split-copy {
  align-self: center;
}

.split-copy > p {
  margin-top: 1rem;
}

.credentials {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.credentials div {
  display: grid;
  gap: 0.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-border);
}

.credentials strong {
  color: var(--accent-strong);
}

.location-section {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.location-card {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.location-card h3 {
  margin-bottom: 0.6rem;
}

.location-card p {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.location-card p:first-of-type {
  color: var(--ink);
  font-weight: 760;
}

.location-card .clean-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.location-card li {
  display: flex;
  align-items: center;
  color: var(--muted);
}

.location-card .button {
  width: 100%;
  margin-top: 1.35rem;
}

.map-card {
  overflow: hidden;
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-border);
}

.map-card address {
  display: grid;
  gap: 0.18rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
}

.map-card address strong {
  color: var(--ink);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: clamp(18rem, 48vw, 28rem);
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin: 2rem auto 0;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list details[open] {
  box-shadow: var(--shadow-border-hover);
}

.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
  scale: 1;
  transition-property: scale, color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.faq-list summary:active {
  scale: 0.96;
}

.faq-list p {
  margin-top: 0.75rem;
}

section.cta-section {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  max-width: var(--max);
  margin: 0 auto var(--section);
  padding: clamp(2rem, 6vw, 3.2rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(191, 220, 236, 0.94), rgba(221, 237, 234, 0.9)),
    var(--accent-soft);
  color: var(--ink);
  box-shadow: var(--shadow-border-hover);
}

section.cta-section h2,
section.cta-section p,
section.cta-section .eyebrow {
  color: var(--ink);
}

section.cta-section .eyebrow {
  color: var(--accent-strong);
}

section.cta-section p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 0.35rem;
  color: var(--muted);
}

.cta-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.home-main > .cta-section {
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  gap: clamp(1.55rem, 4vw, 2.35rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  gap: 0.38rem;
  margin-bottom: 0.9rem;
}

.footer-brand .brand-mark {
  width: 2.9rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.58rem;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  text-wrap: pretty;
}

.site-footer nav a:hover {
  color: var(--accent-strong);
}

.site-footer a[href="https://www.anchored-psychology.com/sign-in"]::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.36rem;
  background-color: currentColor;
  mask: var(--external-link-icon) center / contain no-repeat;
  -webkit-mask: var(--external-link-icon) center / contain no-repeat;
  transform: translateY(0.12em);
}

.footer-heading {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.emergency-note {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--subtle);
  font-size: 0.86rem;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 24%, rgba(47, 102, 86, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f7f5ef);
}

.page-hero > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .about-title span {
  display: block;
  max-width: 100%;
}

.page-hero .eyebrow,
.page-hero p {
  text-align: center;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 1.2rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.page-hero .cta-microcopy {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.payment-hero p:not(.eyebrow),
.payment-hero .cta-microcopy {
  max-width: 900px;
}

.content-layout {
  display: grid;
  gap: 1.4rem;
}

.article-content {
  display: grid;
  gap: 1rem;
}

.article-content section {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.article-content h2 {
  max-width: 680px;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 820;
  line-height: 1.14;
}

.article-content p,
.article-content ul {
  margin-top: 0.85rem;
}

.article-visual {
  overflow: hidden;
  margin: 1.35rem 0 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-border);
}

.article-visual img {
  width: 100%;
  height: auto;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.article-content ul,
.sidebar-card ul {
  padding-left: 1.2rem;
}

.article-content li + li {
  margin-top: 0.45rem;
}

.sidebar-card {
  align-self: start;
  padding: 1.25rem;
}

.location-details-card {
  display: none;
}

.payment-consultation-card {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.sidebar-card h2 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 820;
}

.payment-consultation-card h2 {
  max-width: 680px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.14;
}

.payment-consultation-card > p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
}

.sidebar-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.sidebar-card li {
  display: flex;
  align-items: flex-start;
  line-height: 1.45;
}

.sidebar-card li::before {
  margin-top: 0.5em;
}

.sidebar-card.payment-consultation-card ul {
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  list-style: disc;
}

.sidebar-card.payment-consultation-card li {
  display: list-item;
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
}

.sidebar-card.payment-consultation-card li::marker {
  color: var(--accent);
}

.sidebar-card.payment-consultation-card li::before {
  content: none;
  display: none;
}

.sidebar-card.payment-consultation-card .button {
  width: fit-content;
  margin-top: 1.1rem;
}

.sidebar-card .button {
  width: 100%;
}

.sidebar-card .sidebar-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-cta {
  background: var(--accent-soft);
}

.service-cta h2 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
}

.service-cta h2,
.service-cta p,
.service-cta .eyebrow {
  color: var(--ink);
}

section.service-cta .eyebrow {
  color: var(--accent-strong);
}

.service-cta p:not(.eyebrow) {
  color: var(--muted);
}

.hiring-page {
  overflow: hidden;
}

.hiring-hero {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(3rem, 7vw, 5rem);
}

.hiring-hero::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(63, 120, 148, 0.13), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}

.hiring-hero-copy {
  display: grid;
  align-content: center;
}

.hiring-hero-copy h1 {
  max-width: 820px;
}

.hiring-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
}

.hiring-hero-card {
  display: grid;
  gap: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow-border-hover);
}

.hiring-hero-card img {
  width: min(100%, 18rem);
  height: auto;
}

.hiring-hero-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.hiring-hero-card dl div {
  display: grid;
  gap: 0.18rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.hiring-hero-card dt {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hiring-hero-card dd {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.3;
}

.hiring-infographic {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.hiring-infographic::before,
.hiring-audience::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}

.hiring-infographic::before {
  background: linear-gradient(180deg, #f7f5ef 0%, #eff7f6 100%);
}

.hiring-audience::before {
  background: linear-gradient(180deg, #eff7f6 0%, #fbfaf7 100%);
}

.infographic-header {
  display: grid;
  gap: 0.7rem;
  max-width: 780px;
}

.infographic-header > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  line-height: 1.7;
}

.infographic-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.infographic-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(1.15rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-border);
}

.infographic-card h3 {
  font-size: clamp(1.14rem, 2.4vw, 1.48rem);
}

.infographic-card p {
  color: var(--muted);
  line-height: 1.62;
}

.card-kicker {
  width: fit-content;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.34rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(191, 220, 236, 0.54), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.hiring-list {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hiring-list li {
  display: flex;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.48;
}

.hiring-list li::before,
.focus-stack div::before {
  content: "";
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  flex: 0 0 auto;
  margin: 0.54rem 0.55rem 0 0;
  border-radius: 50%;
  background: var(--accent);
}

.benefit-pill-grid,
.value-row,
.method-mini-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.benefit-pill-grid span,
.value-row span,
.method-mini-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-strong);
  padding: 0.45rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 780;
  line-height: 1.2;
}

.focus-stack {
  display: grid;
  gap: 0.8rem;
}

.focus-stack div {
  position: relative;
  display: grid;
  gap: 0.18rem;
  padding-left: 1.05rem;
}

.focus-stack div::before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 0;
}

.focus-stack strong {
  color: var(--accent-strong);
  line-height: 1.25;
}

.focus-stack span {
  color: var(--muted);
  line-height: 1.45;
}

.schedule-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.schedule-metrics div {
  display: grid;
  gap: 0.3rem;
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 1rem;
}

.schedule-metrics strong {
  color: var(--accent-strong);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 500;
  line-height: 0.95;
}

.schedule-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
}

.method-mini-grid span {
  min-width: 3.75rem;
  justify-content: center;
  background: var(--accent-strong);
  color: var(--surface);
}

.hiring-audience {
  isolation: isolate;
  padding-top: 0;
}

.hiring-apply {
  margin-top: 0;
}

.mobile-cta {
  display: none;
}

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

@media (min-width: 640px) {
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-actions .button {
    width: 100%;
  }

  .button {
    min-width: 11rem;
  }

  .service-grid,
  .method-grid,
  .trust-grid,
  .expect-grid,
  .about-preview,
  .infographic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview .bio-aside {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .about-preview .hero-actions {
    grid-column: 1;
  }

  .services-page-grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 24rem));
    justify-content: center;
    justify-items: center;
  }

  .services-page-grid .service-card {
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 24rem;
    min-height: 0;
    width: 100%;
  }

}

@media (min-width: 700px) {
  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1.6rem, 4vw, 3rem);
  }

  .site-footer > div:first-child,
  .emergency-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .site-footer {
    grid-template-columns: minmax(18rem, 1.15fr) minmax(7.5rem, 0.55fr) minmax(15rem, 1fr) minmax(15rem, 1fr);
    column-gap: clamp(1.5rem, 3vw, 3rem);
  }

  .site-footer > div:first-child {
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .nowrap-label {
    white-space: nowrap;
  }

  .desktop-nowrap {
    max-width: none;
    white-space: nowrap;
  }

  .site-header {
    padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2));
    padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2));
  }

  .about-preview {
    grid-template-columns: minmax(0, 1.18fr) minmax(14rem, 0.46fr);
    align-items: center;
  }

  .bio-photo {
    min-height: 0;
    height: clamp(17rem, 28vw, 21.5rem);
    max-height: 21.5rem;
    aspect-ratio: 4 / 4.25;
  }

  .hero {
    min-height: 720px;
    display: grid;
    align-items: center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.84) 45%, rgba(251, 250, 247, 0.22) 100%),
      url("assets/images/anchored-psychology-hero.jpg?v=20260529-office") center / cover;
  }

  .intro,
  .location-section {
    grid-template-columns: minmax(0, 1fr) 22rem;
  }

  .intro {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .centered {
    text-align: center;
  }

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

  .trust-list {
    max-width: 980px;
    grid-template-columns: repeat(4, max-content);
  }

  .trust-list li {
    white-space: nowrap;
  }

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

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

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

  .services-page-grid {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 24rem));
    justify-content: center;
    justify-items: center;
  }

  .services-page-grid .service-card {
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 24rem;
    min-height: 0;
    width: 100%;
  }

  .services-page-grid .service-card h3 {
    white-space: normal;
  }

  .split-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }

  .sidebar-card {
    position: static;
  }

  .cta-section {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .hiring-hero {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.5fr);
  }

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

  .feature-card,
  .benefit-card,
  .focus-card,
  .culture-card,
  .candidate-card {
    grid-column: span 2;
  }

  .schedule-card,
  .training-card,
  .compensation-card {
    grid-column: span 2;
  }
}

@media (min-width: 1200px) {
  .content-layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 21rem);
  }

  .content-layout .sidebar-card {
    position: sticky;
    top: 6rem;
  }

  .content-layout .location-details-card {
    display: block;
  }

  .content-layout .payment-consultation-card {
    padding: 1.25rem;
  }

  .content-layout .payment-consultation-card h2 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .content-layout .payment-consultation-card > p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .content-layout .payment-consultation-card ul {
    gap: 0.55rem;
    margin: 1rem 0 1.25rem;
  }

  .content-layout .payment-consultation-card li {
    display: list-item;
    font-size: inherit;
    line-height: 1.45;
  }

  .content-layout .payment-consultation-card .button {
    display: flex;
    width: fit-content;
    min-width: 0;
    max-width: none;
    position: relative;
    left: 50%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 1.18rem;
    padding-left: 1.18rem;
    text-align: center;
    translate: -50% 0;
    white-space: nowrap;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.16rem;
    width: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .nav-services {
    display: inline-flex;
    align-items: center;
  }

  .nav-services-row {
    display: inline-flex;
  }

  .nav-services-trigger::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.46rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
  }

  .nav-services-toggle {
    display: none;
  }

  .nav-services::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.9rem;
  }

  .nav-dropdown {
    display: grid;
    position: absolute;
    top: calc(100% + 0.46rem);
    left: 0;
    min-width: 18.5rem;
    margin: 0;
    padding: 0.45rem;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-border-hover);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.25rem);
    transition-property: opacity, transform, visibility;
    transition-duration: 160ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
    visibility: hidden;
  }

  .nav-services:hover .nav-services-trigger,
  .nav-services:focus-within .nav-services-trigger {
    color: var(--accent-strong);
    background: var(--accent-soft);
  }

  .nav-services:hover .nav-dropdown,
  .nav-services:focus-within .nav-dropdown,
  .nav-services[data-services-open="true"] .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav .nav-dropdown a {
    min-height: 2.6rem;
    border-radius: 10px;
    padding: 0.62rem 0.72rem;
  }

  .site-nav a {
    min-height: 2.6rem;
    padding: 0.56rem 0.68rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    margin-left: 0.35rem;
    padding-left: 0.86rem;
    padding-right: 0.86rem;
  }

  .site-nav .nav-mobile-portal {
    display: none;
  }
}

@media (min-width: 900px) {
  .portal-float {
    display: inline-flex;
  }
}

@media (max-width: 899px) {
  .about-detail {
    justify-items: center;
    padding-top: clamp(1.25rem, 5vw, 2rem);
  }

  .portrait-panel {
    width: min(100%, 20rem);
    aspect-ratio: 4 / 5;
  }

  .portrait-panel img {
    min-height: 0;
  }

  .section > .section-copy > .eyebrow,
  .location-copy > .eyebrow {
    margin-inline: auto;
    text-align: center;
  }

  .section > .section-copy > h2,
  .location-copy > h2 {
    margin-inline: 0 auto;
    text-align: left;
  }

  .services-kicker > h3 {
    margin-inline: auto;
    text-align: center;
  }

  .home-overview-copy > p:not(.eyebrow) {
    text-align: left;
  }

  .brand-logo {
    width: clamp(18rem, 34vw, 22rem);
    max-width: calc(100vw - (var(--gutter) * 2) - 4.5rem);
  }

  body {
    padding-bottom: 4.25rem;
  }

  .mobile-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    border-radius: 999px;
    background: var(--cta-bg);
    color: var(--surface);
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(16, 42, 67, 0.2);
    scale: 1;
    transition-property: scale, background, box-shadow;
    transition-duration: 180ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  }

  .mobile-cta:active {
    scale: 0.96;
  }
}

@media (max-width: 639px) {
  .page-hero p:not(.eyebrow) {
    text-align: left;
  }

  .about-preview {
    justify-items: center;
  }

  .about-preview > .section-copy > .eyebrow {
    margin-inline: auto;
    text-align: center;
  }

  .bio-aside {
    justify-items: center;
  }

  .bio-photo {
    width: min(100%, 18rem);
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .bio-photo img {
    min-height: 0;
  }

  .portrait-panel {
    width: min(100%, 18rem);
  }

  .brand-mark {
    width: 2.55rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .page-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card img {
    aspect-ratio: 16 / 9;
  }

  .cta-section {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-cta,
  .hiring-hero .hero-actions,
  .hiring-apply .button {
    display: none;
  }

  body {
    background: #ffffff;
    color: #102a43;
    padding-bottom: 0;
  }

  .hiring-hero,
  .section,
  section.cta-section {
    max-width: none;
    padding: 0.4in 0;
  }

  .hiring-hero::before,
  .hiring-infographic::before,
  .hiring-audience::before {
    display: none;
  }

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

  .infographic-card,
  .hiring-hero-card,
  .trust-grid article,
  section.cta-section {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid rgba(16, 42, 67, 0.16);
  }
}
