:root {
  --slate: #29445c;
  --slate-deep: #1f3547;
  --steel: #55758e;
  --steel-soft: #dce5ea;
  --sand: #d8c9b3;
  --sand-light: #f0e9df;
  --paper: #f7f5f1;
  --paper-deep: #eeebe5;
  --white: #ffffff;
  --ink: #252a2e;
  --muted: #68727a;
  --line: #ddd9d2;
  --sage: #6e8574;
  --sage-light: #e9efeb;
  --shadow-sm: 0 8px 24px rgba(37, 42, 46, 0.055);
  --shadow-md: 0 18px 50px rgba(37, 42, 46, 0.085);
  --radius: 14px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--slate);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(85, 117, 142, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(41, 68, 92, 0.12);
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 48px));
  height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--slate);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand-name > span {
  color: var(--steel);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px 9px 9px 3px;
  background: var(--slate);
  color: white;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--slate);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--slate);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pa-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 6px 8px 6px 6px;
  font-size: 13px;
  font-weight: 670;
}

.member-chip:hover {
  border-color: #c9c3b9;
  background: white;
}

.member-chip b,
.plus-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--sage-light);
  color: #536b59;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--slate);
}

.mobile-menu-button,
.mobile-menu,
.bottom-nav {
  display: none;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.avatar-small {
  width: 30px;
  height: 30px;
  font-size: 9px;
}

.avatar-large {
  width: 48px;
  height: 48px;
  font-size: 13px;
}

.avatar-xlarge {
  width: 64px;
  height: 64px;
  font-size: 17px;
}

.avatar-slate {
  background: var(--slate);
}

.avatar-steel {
  background: var(--steel);
}

.avatar-sage {
  background: var(--sage);
}

.avatar-sand {
  background: #aa8f69;
}

.eyebrow,
.overline {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--sand);
}

.eyebrow.light {
  color: #d7e2e8;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button .icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--slate);
  box-shadow: 0 9px 22px rgba(41, 68, 92, 0.18);
  color: white;
}

.button-primary:hover {
  background: var(--slate-deep);
  box-shadow: 0 12px 26px rgba(41, 68, 92, 0.22);
}

.button-primary:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button-quiet {
  border-color: var(--line);
  background: white;
  color: var(--slate);
}

.button-quiet:hover {
  border-color: #c5bfb5;
}

.button-sand {
  background: var(--sand);
  color: var(--slate-deep);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(41, 68, 92, 0.3);
  color: var(--slate);
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 740;
}

.text-link .icon {
  width: 16px;
  height: 16px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--slate);
  padding: 0;
  font-size: 13px;
  font-weight: 740;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 760;
}

.card-link .icon {
  width: 15px;
  height: 15px;
}

.home-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.92%, rgba(41, 68, 92, 0.045) 50%, transparent 50.08%),
    var(--paper);
}

.hero-grid {
  display: grid;
  min-height: 630px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 76px;
  padding-block: 66px 82px;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--slate);
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 710;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.lede {
  max-width: 650px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.proof-row span + span::before {
  color: #b8a890;
  content: "·";
  margin: 0 11px;
}

.start-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 6px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 14px;
  transform: rotate(0.35deg);
}

.start-card::before {
  position: absolute;
  z-index: -1;
  top: -55px;
  right: 16px;
  color: rgba(41, 68, 92, 0.055);
  content: "PA";
  font-size: 94px;
  font-weight: 900;
  letter-spacing: -0.085em;
}

.start-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 16px;
}

.start-card h2 {
  margin: 5px 0 0;
  color: var(--slate);
  font-size: 21px;
  letter-spacing: -0.025em;
}

.online-pulse {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(110, 133, 116, 0.11);
}

.start-card > a:not(.start-note) {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #ebe8e2;
  padding: 17px 14px;
  transition: background 160ms ease;
}

.start-card > a:not(.start-note):hover {
  background: #faf9f6;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--steel);
  font-size: 11px;
  font-weight: 780;
}

.start-card a strong,
.start-card a small {
  display: block;
}

.start-card a strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 14px;
}

.start-card a small {
  color: var(--muted);
  font-size: 12px;
}

.start-card > a > .icon {
  width: 18px;
  height: 18px;
  color: var(--steel);
}

.start-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 4px;
  border-radius: 8px;
  background: var(--sand-light);
  color: #5d564c;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
}

.pillar-band {
  border-block: 1px solid var(--line);
  background: #eef1f1;
  padding: 68px 0 78px;
}

.section-heading h2,
.section-copy h2 {
  margin: 14px 0 0;
  color: var(--slate);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.compact-heading {
  max-width: 580px;
  margin-bottom: 34px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: white;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.pillar-card.featured {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.pillar-icon,
.service-icon,
.resource-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  background: var(--steel-soft);
  color: var(--slate);
}

.pillar-card.featured .pillar-icon {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.pillar-count {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #b3bbc0;
  font-size: 12px;
  font-weight: 750;
}

.pillar-card.featured .pillar-count {
  color: rgba(255, 255, 255, 0.45);
}

.pillar-card h3 {
  margin: 34px 0 10px;
  color: var(--slate);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.pillar-card.featured h3,
.pillar-card.featured .card-link {
  color: white;
}

.pillar-card p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.pillar-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.community-preview {
  padding: 88px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 78px;
}

.sticky-copy {
  position: sticky;
  top: 112px;
  padding-top: 10px;
}

.section-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.member-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.stacked-avatars {
  display: flex;
}

.stacked-avatars .avatar {
  width: 34px;
  height: 34px;
  border: 3px solid var(--paper);
  margin-left: -8px;
  font-size: 8px;
}

.stacked-avatars .avatar:first-child {
  margin-left: 0;
}

.member-proof > span:last-child,
.member-proof strong,
.member-proof small {
  display: block;
}

.member-proof strong {
  color: var(--slate);
  font-size: 13px;
}

.member-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.preview-feed {
  display: grid;
  gap: 12px;
}

.thread-card {
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: white;
  box-shadow: 0 8px 28px rgba(41, 68, 92, 0.035);
  transition: border 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.thread-card:hover {
  border-color: #c9c4bb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.thread-card.thread-featured {
  border-left: 3px solid var(--slate);
}

.thread-main-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 21px 22px 15px;
}

.thread-featured .thread-main-link {
  padding-top: 24px;
}

.thread-content,
.thread-author,
.thread-title,
.thread-excerpt {
  display: block;
}

.thread-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.thread-author strong {
  color: var(--ink);
}

.thread-title {
  margin: 10px 0 7px;
  color: var(--slate);
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.thread-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.thread-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px 17px 78px;
}

.thread-actions button,
.thread-actions a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 650;
}

.thread-actions button:hover,
.thread-actions a:hover,
.thread-actions .active {
  background: #f0f3f4;
  color: var(--slate);
}

.thread-actions .icon {
  width: 15px;
  height: 15px;
}

.feed-more {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #c8c2b8;
  border-radius: 10px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 730;
}

.feed-more:hover {
  border-style: solid;
  background: white;
}

.resource-preview {
  border-top: 1px solid var(--line);
  background: white;
  padding: 82px 0 90px;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.resource-preview-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.mini-resource {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mini-resource:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mini-resource.wide {
  grid-row: span 3;
  min-height: 100%;
  background: var(--sand-light);
  padding: 36px;
}

.mini-resource:not(.wide) {
  display: grid;
  min-height: 145px;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 5px 18px;
  align-items: center;
}

.mini-resource .resource-icon {
  margin-bottom: 28px;
}

.mini-resource:not(.wide) .resource-icon {
  grid-row: 1 / 3;
  margin: 0;
}

.mini-resource-meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.mini-resource h3 {
  margin: 8px 0 10px;
  color: var(--slate);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mini-resource:not(.wide) h3 {
  grid-column: 2;
  margin: 0;
  font-size: 16px;
}

.mini-resource p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.mini-resource:not(.wide) p {
  display: none;
}

.mini-resource:not(.wide) .card-link {
  grid-row: 1 / 3;
  grid-column: 3;
  font-size: 0;
}

.mini-resource:not(.wide) .card-link .icon {
  width: 20px;
  height: 20px;
}

.resource-icon {
  width: 46px;
  height: 46px;
}

.resource-icon-blue {
  background: var(--steel-soft);
  color: var(--slate);
}

.resource-icon-sand {
  background: #eee3d3;
  color: #7c6545;
}

.resource-icon-sage {
  background: var(--sage-light);
  color: #58705e;
}

.services-preview {
  background: white;
  padding-bottom: 88px;
}

.services-callout {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr 0.95fr;
  border-radius: 18px 18px 18px 6px;
  background: var(--slate);
  color: white;
}

.callout-copy {
  padding: 56px;
}

.callout-copy h2 {
  max-width: 510px;
  margin: 18px 0;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 690;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.callout-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.quick-services {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
}

.quick-services > a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 21px 12px;
}

.quick-services > a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.quick-services > a > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.quick-services small,
.quick-services strong {
  display: block;
}

.quick-services small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-services strong {
  font-size: 14px;
}

.quick-services > p {
  margin: 20px 12px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

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

.page-hero-grid {
  display: grid;
  min-height: 390px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-block: 62px 68px;
}

.page-hero h1 {
  max-width: 680px;
  margin: 20px 0;
  color: var(--slate);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 1;
}

.page-hero-grid > div:first-child > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.location-card > .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--steel);
}

.location-card strong,
.location-card small {
  display: block;
}

.location-card strong {
  margin-bottom: 6px;
  color: var(--slate);
  font-size: 14px;
}

.location-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.resource-browser {
  padding-block: 54px 86px;
}

.resource-search-panel {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: -102px auto 64px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 6px;
  background: white;
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.resource-search-panel > label {
  display: block;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 760;
}

.search-input {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border: 1px solid #c9c5bd;
  border-radius: 9px;
  background: var(--paper);
  padding: 0 17px;
}

.search-input:focus-within {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(85, 117, 142, 0.12);
}

.search-input .icon {
  flex: 0 0 auto;
  color: var(--steel);
}

.search-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.resource-search-panel > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.stage-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.stage-header h2 {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.stage-header > span {
  color: var(--muted);
  font-size: 13px;
}

.filter-row {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 680;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.resource-card {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 13px 13px 13px 4px;
  background: white;
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.resource-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.read-time .icon {
  width: 14px;
  height: 14px;
}

.resource-category {
  margin: 25px 0 7px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 770;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 19px;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.resource-card > p:not(.resource-category) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.resource-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #ebe8e2;
  color: var(--slate);
  padding-top: 16px;
  font-size: 13px;
  font-weight: 740;
}

.resource-card-bottom .icon {
  width: 17px;
  height: 17px;
}

.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 940px;
  margin: 34px auto 0;
  border: 1px solid #d7ddd9;
  border-radius: 9px;
  background: #f2f6f3;
  color: #56645b;
  padding: 14px 16px;
}

.legal-note .icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.legal-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.empty-state {
  display: grid;
  min-height: 340px;
  grid-column: 1 / -1;
  place-items: center;
  align-content: center;
  border: 1px dashed #c8c2b8;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  padding: 40px;
  text-align: center;
}

.empty-state > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--steel-soft);
  color: var(--slate);
}

.empty-state h3 {
  margin: 17px 0 6px;
  color: var(--slate);
}

.empty-state p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.detail-shell {
  padding-block: 34px 90px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.resource-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 70px;
}

.resource-article {
  min-width: 0;
  max-width: 770px;
}

.resource-article header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 36px;
}

.resource-article header > .resource-icon {
  margin-bottom: 26px;
}

.resource-article header .resource-category {
  margin-top: 0;
}

.resource-article h1,
.service-detail-main h1 {
  margin: 12px 0 18px;
  color: var(--slate);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.article-deck {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.article-byline strong,
.article-byline small {
  display: block;
}

.article-byline strong {
  font-size: 12px;
}

.article-byline small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.article-body {
  color: #40474c;
  font-size: 17px;
  line-height: 1.8;
}

.article-body > p {
  margin: 22px 0;
}

.article-body .article-intro {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.68;
}

.article-body h2,
.service-copy h2 {
  margin: 40px 0 12px;
  color: var(--slate);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.article-checklist {
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: white;
  padding: 26px;
}

.article-checklist h3 {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 17px;
}

.article-checklist > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-top: 1px solid #ebe8e2;
  padding: 13px 0;
  font-size: 14px;
}

.article-checklist .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--sage);
}

.article-body blockquote {
  margin: 38px 0;
  border-left: 3px solid var(--sand);
  color: var(--slate);
  padding: 6px 0 6px 25px;
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.article-body cite {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.article-body .legal-note {
  margin-top: 40px;
}

.detail-rail {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 13px;
}

.rail-card {
  border: 1px solid var(--line);
  border-radius: 11px 11px 11px 4px;
  background: white;
  padding: 21px;
}

.rail-card > a:not(.button):not(.text-link) {
  display: block;
  border-top: 1px solid #ebe8e2;
  color: var(--muted);
  padding: 11px 0;
  font-size: 12px;
}

.rail-card .overline {
  margin-bottom: 12px;
}

.rail-card h3 {
  margin: 7px 0 10px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.4;
}

.rail-card > p:not(.overline) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.conversation-card {
  background: var(--sand-light);
}

.professional-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--steel-soft);
  color: var(--slate);
  margin-bottom: 18px;
}

.community-background {
  min-height: 100vh;
  background: #eef1f1;
  padding-bottom: 70px;
}

.community-topbar {
  border-bottom: 1px solid #d8dddd;
  background: var(--paper);
}

.community-topbar .shell {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 35px;
}

.community-topbar h1 {
  margin: 16px 0 7px;
  color: var(--slate);
  font-size: 40px;
  letter-spacing: -0.045em;
}

.community-topbar p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.community-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 270px;
  align-items: start;
  gap: 18px;
  padding-top: 26px;
}

.community-left,
.community-right {
  position: sticky;
  top: 102px;
}

.community-menu,
.topic-list {
  border-bottom: 1px solid #d4d9d8;
  padding-bottom: 15px;
}

.topic-list {
  padding-top: 18px;
}

.topic-list .overline {
  margin: 0 0 10px 12px;
  color: #859098;
  font-size: 10px;
}

.community-menu button,
.topic-list button,
.guidelines-link {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 650;
}

.community-menu button:hover,
.community-menu button.active,
.topic-list button:hover {
  background: white;
  color: var(--slate);
}

.community-menu .icon,
.guidelines-link .icon {
  width: 17px;
  height: 17px;
}

.topic-list button > span {
  width: 7px;
  height: 7px;
  border: 2px solid #9ba8af;
  border-radius: 50%;
}

.guidelines-link {
  margin-top: 14px;
  font-size: 11px;
}

.community-feed {
  min-width: 0;
}

.composer-card {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: white;
  padding: 14px;
  text-align: left;
}

.composer-card > span:nth-child(2) {
  color: #8a9398;
  font-size: 14px;
}

.composer-card > b {
  border-radius: 6px;
  background: var(--slate);
  color: white;
  padding: 9px 11px;
  font-size: 11px;
}

.feed-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 2px 12px;
}

.feed-toolbar strong,
.feed-toolbar span {
  display: block;
}

.feed-toolbar strong {
  color: var(--slate);
  font-size: 15px;
}

.feed-toolbar span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.feed-toolbar button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
}

.feed-toolbar .icon {
  width: 14px;
  height: 14px;
}

.thread-feed {
  display: grid;
  gap: 10px;
}

.rail-panel {
  border: 1px solid var(--line);
  border-radius: 11px 11px 11px 4px;
  background: white;
  padding: 18px;
}

.community-right {
  display: grid;
  gap: 11px;
}

.profile-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.profile-top strong,
.profile-top small {
  display: block;
}

.profile-top strong {
  color: var(--slate);
  font-size: 13px;
}

.profile-top small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 15px 0;
  color: var(--muted);
  font-size: 11px;
}

.profile-location .icon {
  width: 13px;
  height: 13px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #ebe8e2;
  margin-bottom: 15px;
  padding: 12px 0;
}

.profile-stats span {
  text-align: center;
}

.profile-stats strong,
.profile-stats small {
  display: block;
}

.profile-stats strong {
  color: var(--slate);
  font-size: 15px;
}

.profile-stats small {
  color: var(--muted);
  font-size: 9px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.panel-title h3 {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.panel-title .online-pulse {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 4px rgba(110, 133, 116, 0.1);
}

.snapshot-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid #ebe8e2;
  padding: 8px 0;
}

.snapshot-row strong {
  color: var(--slate);
  font-size: 14px;
}

.snapshot-row span {
  color: var(--muted);
  font-size: 10px;
}

.membership-card {
  background: var(--slate);
  color: white;
}

.membership-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 17px;
}

.membership-card .overline {
  color: #c9d9e2;
  font-size: 9px;
}

.membership-card h3 {
  margin: 6px 0 12px;
  font-size: 15px;
}

.membership-card ul {
  margin: 0 0 15px;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  list-style: none;
}

.membership-card li {
  margin: 6px 0;
}

.membership-card .text-button {
  color: white;
}

.rail-disclaimer {
  margin: 2px 6px;
  color: #7b868c;
  font-size: 9px;
  line-height: 1.5;
}

.community-mobile-topics {
  display: none;
}

.community-detail-header {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.community-detail-header .back-link {
  margin: 0;
}

.thread-detail,
.reply-card,
.reply-composer {
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: white;
}

.thread-detail {
  padding: 26px;
}

.detail-author {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
}

.detail-author > span:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.detail-author strong {
  color: var(--ink);
  font-size: 13px;
}

.detail-author small {
  display: block;
  width: 100%;
  color: var(--muted);
  font-size: 10px;
}

.more-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.topic-pill {
  display: inline-flex;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--steel-soft);
  color: var(--slate);
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 750;
}

.thread-detail h1 {
  margin: 15px 0 14px;
  color: var(--slate);
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.thread-body {
  margin: 0;
  color: #4b5358;
  font-size: 16px;
  line-height: 1.75;
}

.detail-actions {
  margin-top: 24px;
  border-top: 1px solid #ebe8e2;
  padding: 14px 0 0;
}

.reply-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 26px 2px 11px;
}

.reply-heading h2 {
  margin: 0;
  color: var(--slate);
  font-size: 16px;
}

.reply-heading span {
  color: var(--muted);
  font-size: 10px;
}

.reply-list {
  display: grid;
  gap: 9px;
}

.reply-card {
  padding: 20px 22px;
}

.reply-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}

.reply-line strong,
.reply-line small {
  display: block;
}

.reply-line strong {
  font-size: 12px;
}

.reply-line small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.helpful-label {
  border-radius: 999px;
  background: var(--sage-light);
  color: #536b59;
  padding: 4px 7px;
  font-size: 9px;
}

.reply-card > p {
  margin: 15px 0;
  color: #4d555a;
  font-size: 14px;
  line-height: 1.65;
}

.reply-card > div:last-child {
  display: flex;
  gap: 13px;
}

.reply-card > div:last-child button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 10px;
}

.reply-card > div:last-child button.active {
  color: var(--slate);
  font-weight: 700;
}

.reply-card > div:last-child .icon {
  width: 13px;
  height: 13px;
}

.reply-composer {
  margin-top: 14px;
  padding: 20px;
}

.reply-composer-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 12px;
}

.reply-composer textarea,
.modal-form textarea,
.modal-form input,
.modal-form select {
  width: 100%;
  border: 1px solid #cec9c0;
  border-radius: 8px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
  resize: vertical;
}

.reply-composer textarea:focus,
.modal-form textarea:focus,
.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(85, 117, 142, 0.11);
}

.reply-composer > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 11px;
}

.reply-composer small {
  max-width: 450px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.services-hero {
  background: #eef1f1;
}

.partner-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  border: 1px solid #d6dcdd;
  border-radius: 15px 15px 15px 5px;
  background: white;
  padding: 27px;
}

.partner-shield {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 11px;
  background: var(--sage-light);
  color: var(--sage);
}

.partner-promise h2 {
  margin: 7px 0 10px;
  color: var(--slate);
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.partner-promise p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.services-browser {
  padding-block: 72px 90px;
}

.service-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.service-section-heading h2 {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.service-section-heading > p {
  color: var(--muted);
  font-size: 13px;
}

.service-section-heading > p a {
  border-bottom: 1px solid var(--steel);
  color: var(--slate);
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: white;
  padding: 27px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-icon {
  background: var(--steel-soft);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: var(--sage-light);
  color: #56705e;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 770;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.verified-tag .icon {
  width: 12px;
  height: 12px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.service-card > p:not(.resource-category) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 20px 0;
  border-block: 1px solid #ebe8e2;
  padding: 14px 0;
}

.service-facts span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.service-facts .icon {
  width: 14px;
  height: 14px;
  color: var(--steel);
}

.service-card .button {
  margin-top: auto;
}

.provider-section {
  border-block: 1px solid var(--line);
  background: #eef1f1;
  padding: 74px 0 82px;
}

.row-heading > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.provider-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  background: white;
  padding: 22px;
}

.provider-avatar {
  display: grid;
  width: 64px;
  height: 74px;
  place-items: center;
  border-radius: 10px 10px 10px 3px;
  background: var(--steel);
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.provider-avatar.sage {
  background: var(--sage);
}

.provider-avatar.sand {
  background: #aa8f69;
}

.provider-grid h3 {
  margin: 10px 0 3px;
  color: var(--slate);
  font-size: 16px;
}

.provider-grid p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.provider-grid small {
  color: #8a949a;
  font-size: 10px;
}

.membership-section {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr 1fr;
  align-items: stretch;
  gap: 14px;
  padding-block: 88px;
}

.membership-intro {
  padding: 30px 42px 30px 0;
}

.membership-intro h2 {
  margin: 16px 0;
  color: var(--slate);
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.membership-intro > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.plan-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  background: white;
  padding: 27px;
}

.plan-card.plus {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.plan-current {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--slate-deep);
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 780;
  text-transform: uppercase;
}

.plan-card.plus .overline {
  color: #c9d9e2;
}

.plan-card h3 {
  margin: 10px 0 18px;
  color: var(--slate);
  font-size: 22px;
}

.plan-card.plus h3 {
  color: white;
}

.plan-card > strong {
  display: block;
  color: var(--slate);
  font-size: 28px;
}

.plan-card.plus > strong {
  color: white;
}

.plan-card > strong small {
  color: inherit;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.6;
}

.plan-card ul {
  min-height: 160px;
  margin: 22px 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.plan-card.plus ul {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card li {
  margin: 10px 0;
}

.plan-card li::before {
  color: var(--sage);
  content: "✓";
  margin-right: 8px;
  font-weight: 800;
}

.plan-card.plus li::before {
  color: var(--sand);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 70px;
}

.service-detail-main {
  max-width: 730px;
}

.service-icon.large {
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
}

.service-detail-main .resource-category {
  margin-top: 0;
}

.service-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0 0;
}

.service-detail-facts > span {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  padding: 16px;
}

.service-detail-facts .icon {
  width: 18px;
  height: 18px;
  margin-bottom: 15px;
  color: var(--steel);
}

.service-detail-facts strong,
.service-detail-facts small {
  display: block;
}

.service-detail-facts strong {
  color: var(--slate);
  font-size: 13px;
}

.service-detail-facts small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.service-copy {
  margin-top: 44px;
  color: #485055;
  font-size: 16px;
  line-height: 1.75;
}

.service-copy p {
  margin: 0;
}

.service-copy ul {
  padding-left: 20px;
}

.booking-card {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 5px;
  background: white;
  box-shadow: var(--shadow-md);
  padding: 25px;
}

.booking-provider {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.booking-provider .provider-avatar {
  width: 58px;
  height: 68px;
}

.booking-provider h3 {
  margin: 9px 0 2px;
  color: var(--slate);
  font-size: 16px;
}

.booking-provider p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.booking-card hr {
  border: 0;
  border-top: 1px solid #ebe8e2;
  margin: 22px 0;
}

.availability-preview {
  display: grid;
  gap: 8px;
  margin: 13px 0 18px;
}

.availability-preview span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ebe8e2;
  border-radius: 8px;
  padding: 11px;
}

.availability-preview strong {
  color: var(--slate);
  font-size: 12px;
}

.availability-preview small {
  color: var(--muted);
  font-size: 9px;
}

.booking-note {
  display: block;
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  align-content: center;
  text-align: center;
}

.not-found > span {
  color: var(--sand);
  font-size: 72px;
  font-weight: 900;
}

.not-found h1 {
  margin: 0;
  color: var(--slate);
}

.not-found p {
  color: var(--muted);
}

.site-footer {
  background: var(--slate-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-block: 58px;
}

.brand-light {
  color: white;
}

.brand-light .brand-mark {
  background: var(--sand);
  color: var(--slate-deep);
}

.brand-light .brand-name > span {
  color: #c4d3dc;
}

.footer-brand p {
  max-width: 350px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-brand > strong {
  color: white;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h3 {
  margin: 0 0 15px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  text-align: left;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.footer-note {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  line-height: 1.5;
}

.footer-note span {
  max-width: 570px;
}

.footer-note span:last-child {
  text-align: right;
}

.modal-backdrop {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  background: rgba(20, 31, 39, 0.56);
  padding: 28px;
  backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
  border-radius: 16px 16px 16px 6px;
  outline: 0;
  background: white;
  box-shadow: 0 30px 90px rgba(18, 30, 39, 0.25);
  padding: 32px;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
}

.modal-close .icon {
  width: 17px;
  height: 17px;
}

.modal-header {
  padding-right: 40px;
}

.modal-header h2 {
  margin: 9px 0;
  color: var(--slate);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.modal-header > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.modal-form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.modal-form > label:not(.toggle-row) {
  color: var(--slate);
  font-size: 12px;
  font-weight: 730;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-block: 1px solid #ebe8e2;
  padding: 15px 0;
}

.toggle-row strong,
.toggle-row small {
  display: block;
}

.toggle-row strong {
  color: var(--slate);
  font-size: 12px;
}

.toggle-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.toggle-row input {
  width: 42px;
  height: 24px;
  margin: 0;
  accent-color: var(--slate);
}

.modal-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.membership-modal-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding-right: 40px;
}

.membership-modal-top h2 {
  margin: 8px 0 1px;
  color: var(--slate);
  font-size: 27px;
}

.membership-modal-top p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.membership-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 26px 0;
  border-radius: 11px;
  background: var(--slate);
  color: white;
  padding: 21px;
}

.membership-status > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
}

.membership-status .overline {
  color: #c8d8e1;
  font-size: 9px;
}

.membership-status h3 {
  margin: 4px 0 2px;
  font-size: 16px;
}

.membership-status p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.membership-benefits h3 {
  color: var(--slate);
  font-size: 14px;
}

.membership-benefits > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.membership-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.membership-benefits .icon {
  width: 15px;
  height: 15px;
  color: var(--sage);
}

.modal-fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.guideline-list {
  display: grid;
  gap: 0;
  margin: 26px 0;
}

.guideline-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  border-top: 1px solid #ebe8e2;
  padding: 16px 0;
}

.guideline-list > div > span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 780;
}

.guideline-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.guideline-list strong {
  color: var(--slate);
}

.booking-picker {
  margin-top: 28px;
}

.date-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.date-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 10px;
}

.date-tabs button.active {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.date-tabs strong,
.date-tabs span {
  display: block;
}

.date-tabs strong {
  font-size: 12px;
}

.date-tabs span {
  margin-top: 3px;
  font-size: 9px;
  opacity: 0.7;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0 22px;
}

.time-slots button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--slate);
  padding: 11px 7px;
  font-size: 11px;
  font-weight: 700;
}

.time-slots button:hover,
.time-slots button.active {
  border-color: var(--steel);
  background: var(--steel-soft);
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ebe8e2;
  padding-top: 18px;
}

.booking-summary strong,
.booking-summary small {
  display: block;
}

.booking-summary strong {
  color: var(--slate);
  font-size: 14px;
}

.booking-summary small {
  color: var(--muted);
  font-size: 9px;
}

.confirmation-state {
  padding: 25px 10px 8px;
  text-align: center;
}

.confirmation-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  margin: 0 auto 20px;
}

.confirmation-icon .icon {
  width: 31px;
  height: 31px;
}

.confirmation-state h2 {
  margin: 9px 0;
  color: var(--slate);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.confirmation-state > p:not(.overline) {
  max-width: 460px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.confirmation-summary {
  display: grid;
  gap: 9px;
  max-width: 430px;
  margin: 26px auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 16px;
  text-align: left;
}

.confirmation-summary span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.confirmation-summary .icon {
  width: 15px;
  height: 15px;
  color: var(--steel);
}

#toast-root {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
}

.toast {
  display: flex;
  min-width: 280px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: var(--slate-deep);
  box-shadow: var(--shadow-md);
  color: white;
  padding: 14px 16px;
  font-size: 12px;
}

.toast .icon {
  width: 17px;
  height: 17px;
  color: var(--sand);
}

.toast button {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .community-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .community-right {
    display: none;
  }

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

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

  .provider-grid article:last-child {
    grid-column: 1 / -1;
  }

  .membership-section {
    grid-template-columns: 1fr 1fr;
  }

  .membership-intro {
    grid-column: 1 / -1;
    max-width: 650px;
    padding-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .pa-pill {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .mobile-menu {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 10px 0 14px;
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-menu a.active {
    color: var(--slate);
  }

  .mobile-menu .icon {
    width: 18px;
    height: 18px;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    padding-block: 58px 70px;
  }

  .home-hero {
    background: var(--paper);
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(52px, 10vw, 76px);
  }

  .start-card {
    transform: none;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sticky-copy {
    position: static;
    max-width: 650px;
  }

  .member-proof {
    max-width: 420px;
    margin-top: 30px;
  }

  .resource-preview-grid {
    grid-template-columns: 1fr;
  }

  .mini-resource.wide {
    min-height: 330px;
  }

  .services-callout {
    grid-template-columns: 1fr;
  }

  .quick-services {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .page-hero-grid {
    min-height: auto;
    padding-block: 54px 130px;
  }

  .resource-search-panel {
    margin-top: -98px;
  }

  .resource-detail-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-rail,
  .booking-card {
    position: static;
  }

  .detail-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .rail-card:first-child {
    display: none;
  }

  .community-topbar .shell {
    min-height: 190px;
  }

  .provider-grid {
    grid-template-columns: 1fr;
  }

  .provider-grid article:last-child {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .shell,
  .header-shell {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .header-shell {
    height: 68px;
  }

  .member-name,
  .member-chip b,
  .mobile-menu-button {
    display: none;
  }

  .member-chip {
    border: 0;
    background: transparent;
    padding: 0;
  }

  .mobile-menu {
    display: none !important;
  }

  .bottom-nav {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(37, 42, 46, 0.07);
    backdrop-filter: blur(14px);
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #879096;
    font-size: 9px;
    font-weight: 700;
  }

  .bottom-nav a.active {
    color: var(--slate);
  }

  .bottom-nav .icon {
    width: 18px;
    height: 18px;
  }

  .hero-grid {
    min-height: auto;
    gap: 42px;
    padding-block: 42px 54px;
  }

  .hero-copy h1 {
    margin-top: 20px;
    font-size: 48px;
    line-height: 1.01;
  }

  .lede {
    margin-block: 23px 26px;
    font-size: 16px;
    line-height: 1.6;
  }

  .button-row .button {
    width: 100%;
  }

  .proof-row {
    row-gap: 7px;
    margin-top: 26px;
  }

  .start-card-head {
    padding: 15px 12px;
  }

  .start-card > a:not(.start-note) {
    padding: 15px 10px;
  }

  .pillar-band,
  .community-preview,
  .resource-preview {
    padding-block: 56px;
  }

  .pillar-card {
    padding: 23px;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 34px;
  }

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .thread-main-link {
    grid-template-columns: 35px 1fr;
    padding: 17px 16px 12px;
  }

  .thread-card .avatar {
    width: 35px;
    height: 35px;
  }

  .thread-author span:last-child {
    display: none;
  }

  .thread-title {
    font-size: 15px;
  }

  .thread-actions {
    gap: 2px;
    padding: 0 13px 13px 56px;
  }

  .thread-actions button,
  .thread-actions a {
    padding-inline: 6px;
    font-size: 10px;
  }

  .mini-resource.wide {
    min-height: 310px;
    padding: 27px;
  }

  .mini-resource:not(.wide) {
    min-height: 124px;
    padding: 17px;
  }

  .mini-resource h3 {
    font-size: 19px;
  }

  .callout-copy {
    padding: 34px 26px;
  }

  .callout-copy h2 {
    font-size: 37px;
  }

  .quick-services {
    padding: 16px;
  }

  .page-hero-grid {
    gap: 28px;
    padding-block: 44px 125px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .location-card,
  .partner-promise {
    padding: 19px;
  }

  .resource-search-panel {
    margin-bottom: 48px;
    padding: 19px;
  }

  .stage-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stage-header h2 {
    font-size: 27px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 310px;
  }

  .resource-detail-layout {
    display: block;
  }

  .resource-article h1,
  .service-detail-main h1 {
    font-size: 42px;
  }

  .article-deck {
    font-size: 17px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body .article-intro {
    font-size: 18px;
  }

  .detail-rail {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .community-topbar .shell {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding-block: 35px;
  }

  .community-topbar h1 {
    font-size: 34px;
  }

  .community-topbar .button {
    width: 100%;
  }

  .community-mobile-topics {
    display: flex;
    overflow-x: auto;
    gap: 7px;
    padding-block: 14px;
    scrollbar-width: none;
  }

  .community-mobile-topics button {
    flex: 0 0 auto;
    border: 1px solid #d6dcdd;
    border-radius: 999px;
    background: white;
    color: var(--muted);
    padding: 8px 11px;
    font-size: 10px;
    font-weight: 650;
  }

  .community-mobile-topics button.active {
    border-color: var(--slate);
    background: var(--slate);
    color: white;
  }

  .community-layout {
    display: block;
    padding-top: 0;
  }

  .community-left,
  .community-right {
    display: none;
  }

  .composer-card {
    margin-top: 0;
  }

  .composer-card > b {
    display: none;
  }

  .community-detail-header {
    min-height: 76px;
  }

  .community-detail-header .button {
    display: none;
  }

  .thread-detail {
    padding: 20px;
  }

  .thread-detail h1 {
    font-size: 25px;
  }

  .detail-actions {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .reply-composer > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .service-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .provider-grid,
  .membership-section {
    grid-template-columns: 1fr;
  }

  .membership-intro {
    grid-column: auto;
    padding-right: 0;
  }

  .service-card {
    min-height: 370px;
    padding: 23px;
  }

  .provider-section,
  .membership-section,
  .services-browser {
    padding-block: 58px;
  }

  .provider-grid article {
    grid-template-columns: 58px 1fr;
  }

  .provider-avatar {
    width: 58px;
    height: 68px;
  }

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

  .service-detail-facts > span {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
  }

  .service-detail-facts .icon {
    grid-row: 1 / 3;
    margin: 2px 0 0;
  }

  .footer-main {
    padding-block: 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 20px;
  }

  .footer-note span:last-child {
    text-align: left;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
    padding: 26px 20px 24px;
  }

  .membership-benefits > div {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-summary {
    align-items: stretch;
    flex-direction: column;
  }

  #toast-root {
    right: 14px;
    bottom: 78px;
    left: 14px;
  }

  .toast {
    width: 100%;
    min-width: 0;
  }
}

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