:root {
  --ivory: #f7f3ea;
  --warm-white: #fffdf8;
  --forest: #213b32;
  --forest-dark: #172d26;
  --sage: #829681;
  --pale-sage: #dde4d8;
  --mist: #edf0e8;
  --clay: #b96f57;
  --clay-dark: #a55f49;
  --sand: #d8cbb9;
  --ink: #26312d;
  --muted: #637069;
  --line: rgba(33, 59, 50, 0.16);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --shadow: 0 20px 55px rgba(33, 59, 50, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--forest);
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

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

.container {
  width: min(1312px, calc(100% - 96px));
  margin-inline: auto;
}

.container.narrow,
.narrow {
  width: min(880px, calc(100% - 96px));
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.84rem;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner a:hover {
  color: var(--clay-dark);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 59, 50, 0.08);
  background: rgba(255, 253, 248, 0.97);
}

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  color: var(--forest);
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 54px;
  border: 2px solid var(--sage);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.brand-mark::before,
.brand-mark span {
  content: "";
  position: absolute;
  border: 2px solid var(--sage);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.brand-mark::before {
  inset: 8px 8px 0;
}

.brand-mark span {
  inset: 17px 17px 0;
}

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

.brand-copy strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.brand-copy small {
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 14px;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease-out, background-color 180ms ease-out,
    color 180ms ease-out, box-shadow 180ms ease-out;
}

.nav-cta {
  background: var(--forest);
  color: white;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(33, 59, 50, 0.16);
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--forest);
  font-size: 1.45rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image: radial-gradient(rgba(33, 59, 50, 0.12) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: stretch;
  gap: 62px;
}

.hero-copy {
  align-self: center;
  padding: 84px 0 94px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(4.3rem, 6.7vw, 6.35rem);
  line-height: 0.92;
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: #3f4d47;
  font-size: clamp(1.08rem, 1.5vw, 1.27rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary {
  background: var(--clay);
  color: white;
}

.button-primary:hover {
  background: var(--clay-dark);
}

.button-secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.button-secondary:hover {
  background: var(--pale-sage);
  transform: translateY(-2px);
}

.button-light {
  background: var(--warm-white);
  color: var(--forest);
}

.button-light:hover {
  background: var(--pale-sage);
  transform: translateY(-2px);
}

.hero-location {
  margin: 30px 0 0;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-image-wrap {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 46px 0 0 46px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform 700ms ease;
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.015);
}

.reassurance-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: min(310px, calc(100% - 56px));
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.reassurance-card p {
  margin: 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.2;
}

.sprig {
  color: var(--sage);
  font-family: var(--display);
  font-size: 2.5rem;
}

.trust-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border-right: 1px solid var(--line);
  padding: 24px 28px;
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: 112px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 11%;
}

.two-column h2 {
  margin-bottom: 0;
}

.prose-large {
  font-size: 1.15rem;
  line-height: 1.8;
}

.prose-large p:last-of-type {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 700;
}

.text-link:hover {
  color: var(--clay-dark);
  border-color: var(--clay-dark);
}

.text-link.light {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

.services-preview {
  background: var(--warm-white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  padding-bottom: 10px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

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

.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px;
  background: rgba(255, 253, 248, 0.62);
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: var(--ivory);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h2,
.service-card h3 {
  margin: 42px 0 16px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.tag-row span,
.approach-list span {
  border: 1px solid var(--line);
  padding: 5px 10px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.centered-button {
  width: fit-content;
  margin: 46px auto 0;
}

.team-preview {
  background: var(--ivory);
}

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

.team-card {
  border: 1px solid var(--line);
  padding: 24px 28px 32px;
  background: var(--warm-white);
}

.monogram {
  height: 240px;
  display: grid;
  place-items: center;
  margin: -8px -12px 26px;
  background:
    radial-gradient(circle at 72% 22%, rgba(185, 111, 87, 0.2), transparent 28%),
    linear-gradient(145deg, var(--mist), var(--pale-sage));
  color: var(--forest);
  font-family: var(--display);
  font-size: 4.5rem;
}

.team-card:nth-child(2) .monogram {
  background:
    radial-gradient(circle at 30% 74%, rgba(130, 150, 129, 0.32), transparent 30%),
    linear-gradient(145deg, #eee5d9, var(--ivory));
}

.team-card:nth-child(3) .monogram {
  background:
    radial-gradient(circle at 74% 68%, rgba(216, 203, 185, 0.7), transparent 30%),
    linear-gradient(145deg, var(--pale-sage), #f6eee6);
}

.credential-line {
  margin-bottom: 7px;
  color: var(--clay-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}

.team-card .role,
.profile-content .role {
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 700;
}

.team-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.centered-link {
  width: fit-content;
  margin: 46px auto 0;
}

.first-step {
  background: var(--warm-white);
}

.first-step-grid {
  align-items: center;
}

.image-panel {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(33, 59, 50, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 59, 50, 0.06) 1px, transparent 1px),
    var(--pale-sage);
  background-size: 28px 28px;
  color: var(--forest);
}

.line-art {
  font-family: var(--display);
  font-size: 12rem;
  line-height: 0.6;
  opacity: 0.36;
}

.image-panel p {
  margin: 70px 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
}

.step-list {
  display: grid;
  gap: 0;
  margin: 36px 0 36px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 800;
}

.step-list h3 {
  margin-bottom: 3px;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.appointment-cta {
  padding: 98px 0;
  background: var(--forest);
  color: white;
}

.appointment-cta.compact {
  padding: 78px 0;
}

.appointment-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 100px;
}

.appointment-cta .eyebrow {
  color: #bdcbb9;
}

.appointment-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: white;
}

.appointment-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.page-hero {
  position: relative;
  padding: 118px 0 104px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 14%, rgba(130, 150, 129, 0.18), transparent 23%),
    radial-gradient(circle at 12% 86%, rgba(185, 111, 87, 0.1), transparent 24%),
    var(--warm-white);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.9rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.page-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.sage-section {
  background: var(--pale-sage);
}

.approach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.approach-list span {
  border-color: rgba(33, 59, 50, 0.23);
  background: rgba(255, 255, 255, 0.33);
  padding: 9px 12px;
}

.note-section {
  background: var(--warm-white);
}

.note-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 9%;
  border: 1px solid var(--line);
  padding: 58px;
  background: var(--ivory);
}

.note-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.45rem);
}

.note-card > p,
.note-card > div:last-child {
  align-self: center;
  color: var(--muted);
  font-size: 1.08rem;
}

.clinician-section {
  background: var(--warm-white);
}

.clinician-list {
  display: grid;
  gap: 94px;
}

.clinician-profile {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: 7%;
}

.clinician-profile:nth-child(even) .profile-visual {
  order: 2;
}

.profile-visual {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 68% 28%, rgba(185, 111, 87, 0.2), transparent 28%),
    linear-gradient(145deg, var(--mist), var(--pale-sage));
}

.profile-visual.visual-2 {
  background:
    radial-gradient(circle at 30% 74%, rgba(130, 150, 129, 0.32), transparent 30%),
    linear-gradient(145deg, #eee5d9, var(--ivory));
}

.profile-visual.visual-3 {
  background:
    radial-gradient(circle at 74% 68%, rgba(216, 203, 185, 0.7), transparent 30%),
    linear-gradient(145deg, var(--pale-sage), #f6eee6);
}

.profile-visual > span {
  color: var(--forest);
  font-family: var(--display);
  font-size: 7rem;
}

.profile-visual small {
  margin-top: 36px;
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-content {
  align-self: center;
}

.profile-content h2 {
  margin-bottom: 8px;
}

.profile-content h3 {
  margin: 32px 0 10px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 30px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.focus-list li::before {
  content: "—";
  margin-right: 9px;
  color: var(--clay);
}

.profile-note,
.fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.credential-note {
  background: var(--ivory);
}

.values-intro {
  align-items: start;
}

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

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

.values-grid article {
  min-height: 270px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px;
}

.values-grid span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
}

.values-grid h2 {
  margin: 54px 0 12px;
  font-size: 2rem;
}

.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  max-width: 980px;
}

.timeline article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline article > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--display);
  font-size: 1.6rem;
}

.timeline h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--warm-white);
}

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

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 28px 54px 28px 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.45rem;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 8px;
  font-family: var(--sans);
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--muted);
}

.resource-section {
  background: var(--warm-white);
}

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

.resource-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  padding: 42px;
  background: var(--ivory);
}

.resource-card.urgent {
  background: var(--forest);
  color: white;
}

.resource-card.urgent h2,
.resource-card.urgent .eyebrow {
  color: white;
}

.resource-card h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.resource-card > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.resource-card.urgent > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.resource-card > a {
  margin-top: auto;
}

.grounding-list {
  display: grid;
  gap: 8px;
}

.grounding-list p {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(33, 59, 50, 0.14);
}

.grounding-list strong {
  display: inline-block;
  width: 34px;
  color: var(--clay-dark);
  font-family: var(--display);
  font-size: 1.4rem;
}

.grounding-list small {
  margin-top: 12px;
  color: var(--muted);
}

.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 7%;
}

.contact-details h2 {
  margin-bottom: 28px;
  font-size: 3.2rem;
}

.contact-details address {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  font-style: normal;
}

.contact-details dl {
  margin: 0 0 32px;
}

.contact-details dl > div {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.contact-details dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--sage);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 3px 0 0;
  color: var(--forest);
  font-weight: 700;
}

.privacy-note {
  margin-top: 42px;
  border-left: 3px solid var(--sage);
  padding: 4px 0 4px 18px;
}

.privacy-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.appointment-form {
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 58px);
  background: var(--ivory);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  margin-bottom: 8px;
  font-size: 2.8rem;
}

.form-heading > p:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-grid .full-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(33, 59, 50, 0.25);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--warm-white);
  color: var(--ink);
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--sage);
  outline: 2px solid rgba(130, 150, 129, 0.22);
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin: 26px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--forest);
}

.form-status {
  margin: 18px 0 0;
  border-left: 3px solid var(--sage);
  padding-left: 14px;
  color: var(--forest);
  font-size: 0.88rem;
}

.legal-section {
  background: var(--warm-white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 90px;
}

.legal-layout aside {
  position: sticky;
  top: 30px;
  height: fit-content;
  display: grid;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.legal-layout aside strong {
  margin-bottom: 8px;
  color: var(--forest);
}

.legal-layout aside a {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-layout aside a:hover {
  color: var(--clay-dark);
}

.legal-copy {
  display: grid;
  gap: 54px;
}

.legal-copy section {
  scroll-margin-top: 30px;
}

.legal-copy h2 {
  margin-bottom: 18px;
  font-size: 2.5rem;
}

.legal-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.site-footer {
  padding: 86px 0 24px;
  background: #172b25;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.7fr);
  gap: 66px;
}

.site-footer .brand {
  color: white;
}

.site-footer .brand-mark,
.site-footer .brand-mark::before,
.site-footer .brand-mark span {
  border-color: #9fb29f;
}

.footer-brand > p {
  max-width: 340px;
  margin-top: 28px;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: #c7d4c4;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 7px;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: white;
}

.crisis-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  font-size: 0.82rem;
}

.crisis-strip p {
  margin: 0;
}

.crisis-strip a {
  flex: 0 0 auto;
  color: white;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 56px, 1312px);
  }

  .container.narrow,
  .narrow {
    width: min(100% - 56px, 880px);
  }

  .header-inner {
    min-height: 94px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.83rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 7vw, 5.3rem);
  }

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

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-card {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .utility-inner {
    justify-content: center;
  }

  .utility-inner > a:first-child {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding: 14px 28px 28px;
    background: var(--warm-white);
    box-shadow: 0 20px 30px rgba(33, 59, 50, 0.12);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a:not(.nav-cta) {
    border-bottom: 1px solid var(--line);
    padding: 16px 2px;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 72px 0 64px;
  }

  .hero-image-wrap {
    min-height: 560px;
    border-radius: 40px 40px 0 0;
  }

  .two-column,
  .split-heading,
  .appointment-inner,
  .note-card,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section {
    padding: 84px 0;
  }

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

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

  .team-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto;
    gap: 0 28px;
  }

  .team-card .monogram {
    grid-row: 1 / span 5;
    height: 100%;
    min-height: 300px;
    margin: 0;
  }

  .clinician-profile {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

  .clinician-profile:nth-child(even) .profile-visual {
    order: 0;
  }

  .profile-visual {
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .container,
  .container.narrow,
  .narrow {
    width: min(100% - 36px, 1312px);
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 42px;
  }

  .brand-mark::before {
    inset: 6px 6px 0;
  }

  .brand-mark span {
    inset: 13px 13px 0;
  }

  .brand-copy strong {
    font-size: 1.22rem;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 0.54rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 17vw, 4.65rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-image-wrap {
    min-height: 430px;
  }

  .reassurance-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .trust-grid,
  .service-grid,
  .values-grid,
  .resource-grid,
  .form-grid,
  .focus-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-card {
    min-height: 320px;
  }

  .team-card {
    display: block;
  }

  .team-card .monogram {
    min-height: 250px;
    margin-bottom: 24px;
  }

  .image-panel {
    min-height: 390px;
  }

  .appointment-inner {
    gap: 34px;
  }

  .page-hero {
    padding: 86px 0 76px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 15vw, 4.8rem);
  }

  .note-card {
    padding: 32px;
  }

  .clinician-profile {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    min-height: 350px;
  }

  .timeline article {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .timeline article > span {
    width: 50px;
    height: 50px;
  }

  .contact-details h2,
  .form-heading h2 {
    font-size: 2.35rem;
  }

  .form-grid .full-field {
    grid-column: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-layout aside {
    position: static;
  }

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

  .crisis-strip,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
