@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/mulish-400.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/mulish-500.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/mulish-700.ttf") format("truetype");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/mulish-800.ttf") format("truetype");
}

:root {
  --button-green: #4F5B3E;
  --green: var(--button-green);
  --green-hover: #62714C;
  --ink: #0f172a;
  --body: #2f3b40;
  --pale: #DCE6CF;
  --line: #d5ead8;
  --white: #ffffff;
  --overlay: rgba(16, 18, 14, 0.42);
  --max: 1185px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--pale);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 64px;
  color: var(--white);
}

.site-header.solid {
  position: absolute;
  background: transparent;
}

.site-header.solid .logo-link img {
  content: url("assets/logo-banner.png");
}

.site-header.solid + main .page-hero,
.site-header.solid + main .plain-page {
  margin-top: 0;
}

.logo-link {
  flex: 0 0 auto;
}

.logo-link img {
  width: 375px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a {
  color: var(--white);
}

.primary-nav a:hover {
  color: #e4f8d9;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 13px 30px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta {
  min-width: 110px;
  min-height: 60px;
  padding: 11px 28px;
  line-height: 1.05;
  text-align: center;
  word-break: break-word;
}

.button:hover,
.nav-cta:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 18, 14, 0.35);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  color: var(--white);
  font-size: 56px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.eyebrow {
  color: #159f8c;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--white);
}

.image-section {
  position: relative;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--overlay);
}

.subpage-hero {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 120px 40px 80px;
  text-align: center;
}

.about-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.offerings-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.faq-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.costs-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.contact-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.contact-title-hero h1 {
  font-size: 52px;
}

.datenschutz-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.impressum-title-hero {
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
}

.subpage-hero-content {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.subpage-hero h1 {
  color: var(--white);
}

.hero {
  min-height: 675px;
  display: grid;
  place-items: center;
  padding: 130px 40px 90px;
  background-image: url("assets/hero-bg.png");
  background-position: center bottom;
  text-align: center;
}

.hero-content,
.cta-content {
  max-width: 1000px;
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
}

.hero-content .button {
  margin-top: 20px;
}

.home-overview {
  padding: 0 40px 52px;
  background: linear-gradient(to bottom, var(--pale) 0 110px, var(--white) 110px 100%);
}

.home-intro-panel {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 0;
  padding: 54px 68px 58px;
  background: var(--white);
}

.home-intro-panel .eyebrow {
  margin-bottom: 14px;
  color: var(--green);
}

.home-intro-panel p:not(.eyebrow) {
  max-width: 980px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.home-intro-panel p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 24px;
}

.home-nav-accent {
  max-width: var(--max);
  height: 10px;
  margin: 44px auto 10px;
  background: linear-gradient(to bottom, var(--button-green) 0 6px, var(--pale) 6px 10px);
}

.home-nav-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px;
  background: rgba(220, 230, 207, 0.62);
}

.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-nav-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 32px 26px 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(79, 91, 62, 0.13);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(20, 30, 18, 0.055);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-nav-card:hover,
.home-nav-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 91, 62, 0.32);
  box-shadow: 0 20px 48px rgba(20, 30, 18, 0.08);
}

.home-nav-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 2.2vw, 36px);
  line-height: 1.05;
}

.home-card-line {
  width: 42px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--button-green);
}

.home-nav-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
  color: var(--button-green);
  font-size: 17px;
  font-weight: 600;
}

.about-original-intro {
  padding: 0 40px;
  background: linear-gradient(to bottom, var(--pale) 0 110px, var(--white) 110px 100%);
}

.about-original-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.about-original-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 46px 60px 78px;
}

.about-original-copy .eyebrow {
  margin-bottom: 0;
  color: var(--green);
}

.about-original-copy p:not(.eyebrow) {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.68;
}

.about-original-image {
  margin: 0;
  min-height: 620px;
}

.about-original-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.about-accent-divider {
  max-width: var(--max);
  height: 10px;
  margin: 46px auto 0;
  background: linear-gradient(to bottom, var(--button-green) 0 6px, var(--pale) 6px 10px);
}

.about-timeline-section {
  padding: 51px 40px 58px;
  background: var(--white);
}

.about-timeline-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.timeline-column + .timeline-column {
  padding-left: 60px;
  border-left: 1px solid rgba(79, 91, 62, 0.18);
}

.timeline-column h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-column h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: var(--button-green);
}

.timeline-list {
  margin-top: 28px;
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 108px 32px 1fr;
  gap: 18px;
  padding-bottom: 31px;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-entry::before {
  content: "";
  position: absolute;
  top: 23px;
  bottom: -6px;
  left: 142px;
  transform: translateX(-50%);
  width: 1px;
  background: var(--button-green);
}

.timeline-entry:last-child::before {
  display: none;
}

.timeline-date {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 1px solid var(--button-green);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px var(--pale);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--button-green);
}

.timeline-entry h3 {
  margin: 1px 0 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.timeline-entry p:not(.timeline-date) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.56;
}

.timeline-note {
  max-width: 980px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 30px;
  background: rgba(220, 230, 207, 0.48);
  border: 1px solid rgba(79, 91, 62, 0.1);
  border-radius: 14px;
}

.timeline-note-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background: rgba(220, 230, 207, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 0 11px rgba(220, 230, 207, 0.6);
}

.timeline-note-icon::before,
.timeline-note-icon::after {
  content: "";
  position: absolute;
}

.timeline-note-icon::before {
  inset: 9px;
  background: var(--button-green);
  -webkit-mask: url("assets/book-open-bookmark.svg") center / contain no-repeat;
  mask: url("assets/book-open-bookmark.svg") center / contain no-repeat;
}

.timeline-note-icon::after {
  display: none;
}

.timeline-bottom-divider {
  margin-top: 46px;
}

.timeline-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.48;
}

.memberships-section {
  padding: 0 40px 74px;
  background: var(--white);
}

.memberships-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.memberships-inner h2 {
  margin: 0 0 30px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.memberships-inner h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 18px;
  background: var(--button-green);
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.membership-logo-card {
  display: grid;
  min-height: 138px;
  place-items: center;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid rgba(79, 91, 62, 0.16);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(20, 30, 18, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.membership-logo-card:hover,
.membership-logo-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(79, 91, 62, 0.34);
  box-shadow: 0 18px 42px rgba(20, 30, 18, 0.07);
}

.membership-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.about-approach-section {
  padding: 110px 40px;
  background: var(--pale);
}

.about-approach-grid {
  max-width: var(--max);
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.about-approach-grid article {
  padding: 0 20px;
}

.about-approach-grid h3 {
  margin-bottom: 14px;
}

.about-understanding-section {
  padding: 100px 40px;
  background: var(--white);
}

.about-understanding-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-understanding-inner h2 {
  margin-top: 16px;
}

.intro-band {
  padding: 0 40px;
  background: linear-gradient(to bottom, transparent 0 100px, var(--pale) 100px 100%);
}

.intro-card {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: -100px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 123px 60px;
}

.intro-copy .button {
  justify-self: start;
  margin-top: 14px;
}

.intro-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section-padded {
  padding: 110px 40px;
}

.section-heading {
  max-width: 960px;
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 24px;
}

.three-column {
  max-width: var(--max);
  margin: 66px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.three-column span {
  display: block;
  margin-bottom: 20px;
  color: #159f8c;
  letter-spacing: 1px;
}

.three-column h3 {
  margin-bottom: 12px;
}

.middle-cta {
  min-height: 400px;
  display: grid;
  place-items: center;
  padding: 80px 40px;
  background-image: url("assets/final-cta.png");
  text-align: center;
}

.cta-content {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.cta-content h2 {
  color: var(--white);
}

.white-band {
  background: var(--white);
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.feature-heading {
  padding-right: 110px;
}

.feature-heading .eyebrow,
.feature-heading h2 {
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 30px;
}

.feature-list article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.feature-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-list h3 {
  margin-bottom: 10px;
}

.testimonials {
  background: #edfbe2;
}

.testimonial-grid {
  max-width: var(--max);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.testimonial-grid article {
  min-height: 270px;
  padding: 32px;
  background: var(--white);
}

.testimonial-grid p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 18px;
}

.testimonial-grid strong {
  color: var(--ink);
  font-weight: 700;
}

.final-cta {
  min-height: 357px;
  display: grid;
  place-items: center;
  padding: 66px 40px;
  background-image: url("assets/final-cta.png");
  background-position: center bottom;
  text-align: center;
}

.final-cta .cta-content {
  max-width: 900px;
}

.final-cta .cta-content h2 {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.final-cta .button {
  gap: 18px;
  margin-top: 0;
  padding: 14px 28px;
  font-size: 19px;
  font-weight: 500;
  text-transform: none;
}

.page-hero {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 115px 40px 105px;
  background: var(--white);
  text-align: center;
}

.page-hero h1 {
  max-width: 950px;
  color: var(--ink);
}

.contact-page-intro {
  max-width: 920px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.65;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px 110px;
  background: var(--white);
}

.about-hero-copy {
  display: grid;
  gap: 22px;
}

.about-hero h1 {
  color: var(--ink);
}

.lead {
  max-width: 680px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.6;
}

.about-hero .button {
  justify-self: start;
  margin-top: 8px;
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: 0;
  background: var(--pale);
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: 58% 50%;
}

.about-text-section {
  padding: 105px 40px;
  background: var(--pale);
}

.about-text-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 80px;
}

.about-side-note {
  position: sticky;
  top: 28px;
  align-self: start;
}

.about-side-note h2 {
  margin-top: 16px;
}

.about-prose {
  display: grid;
  gap: 28px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.78;
}

.about-prose p {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.about-prose p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-focus-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  padding: 96px 40px;
  background: var(--white);
}

.about-focus-card,
.about-language-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-focus-card h2 {
  margin-bottom: 18px;
}

.about-focus-card p,
.about-language-card p:not(.eyebrow) {
  color: var(--ink);
  font-size: 18px;
}

.about-language-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 16px;
  background: var(--pale);
}

.about-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 40px;
  background: var(--ink);
  color: var(--white);
}

.about-closing h2 {
  max-width: 820px;
  margin-top: 14px;
  color: var(--white);
}

.contact-section {
  padding: 0 40px 70px;
  background: linear-gradient(to bottom, var(--pale) 0 110px, var(--white) 110px 100%);
}

.contact-intro-panel {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 0;
  padding: 46px 60px;
  background: var(--white);
}

.contact-intro-panel .eyebrow {
  margin-bottom: 14px;
  color: var(--green);
}

.contact-intro-panel p:not(.eyebrow) {
  max-width: 980px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.contact-intro-panel p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 24px;
}

.contact-layout {
  max-width: var(--max);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: stretch;
  background: var(--pale);
}

.plain-page {
  max-width: var(--max);
  min-height: 430px;
  margin: 0 auto;
  padding: 90px 40px;
  background: var(--white);
}

.plain-page h1 {
  color: var(--body);
  font-size: 30px;
}

.faq-page {
  padding: 0 40px 70px;
  background: linear-gradient(to bottom, var(--pale) 0 110px, var(--white) 110px 100%);
}

.costs-page {
  padding: 0 40px 70px;
  background: linear-gradient(to bottom, var(--pale) 0, var(--pale) 110px, var(--white) 110px, var(--white) 100%);
}

.costs-intro {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 48px;
  padding: 46px 60px;
  background: var(--white);
}

.costs-intro .eyebrow {
  margin-bottom: 14px;
  color: var(--green);
}

.costs-intro p:not(.eyebrow) {
  max-width: 980px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.costs-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.cost-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0 38px 38px;
  background: var(--white);
  border-top: 6px solid var(--button-green);
}

.cost-card h2 {
  margin: 0 -38px 14px;
  padding: 28px 34px 22px;
  border-top: 4px solid var(--pale);
  background:
    linear-gradient(90deg, rgba(220, 230, 207, 0.55), var(--pale), rgba(220, 230, 207, 0.55));
  font-size: 30px;
}

.cost-card p {
  color: var(--body);
  font-size: 17px;
}

.costs-page a {
  color: #1f6f3a;
  font-weight: inherit;
  text-decoration: none;
}

.faq-overview-panel {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 0;
  padding: 46px 60px;
  background: var(--white);
}

.faq-overview-panel .eyebrow {
  margin-bottom: 14px;
  color: var(--green);
}

.faq-overview-panel p:not(.eyebrow) {
  max-width: 980px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.faq-sections {
  max-width: var(--max);
  margin: 48px auto 0;
  display: grid;
  gap: 46px;
}

.faq-section {
  display: grid;
  align-items: start;
  padding: 0;
  background: var(--white);
  border-top: 6px solid var(--button-green);
}

.faq-section-heading {
  position: relative;
  display: grid;
  justify-items: start;
  align-items: center;
  min-height: 96px;
  padding: 28px 34px 22px;
  border-top: 4px solid var(--pale);
  background:
    linear-gradient(90deg, rgba(220, 230, 207, 0.55), var(--pale), rgba(220, 230, 207, 0.55));
}

.faq-section-heading h2 {
  font-size: 34px;
  text-align: left;
}

.faq-list {
  display: grid;
  padding: 10px 38px 14px;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  width: 100%;
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: var(--ink);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--pale);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 26px;
}

.stacked-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.two-column {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.narrow-grid article,
.single-testimonial {
  padding: 32px;
  background: var(--white);
}

.narrow-grid h3 {
  margin-bottom: 12px;
}

.therapy-page {
  padding: 0 40px 70px;
  background: linear-gradient(to bottom, var(--pale) 0 110px, var(--white) 110px 100%);
}

.therapy-intro {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -70px auto 34px;
  padding: 46px 60px;
  background: var(--white);
}

.therapy-intro .eyebrow {
  margin-bottom: 14px;
  color: var(--green);
}

.therapy-intro p:not(.eyebrow) {
  max-width: 980px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.service-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
  gap: 56px;
  align-items: center;
  padding: 34px 38px;
  background: var(--white);
  border-top: 6px solid var(--button-green);
  box-shadow: inset 0 4px 0 var(--pale);
}

.service-row > div {
  max-width: 680px;
}

.service-row-reverse > div {
  grid-column: 2;
  grid-row: 1;
  max-width: 680px;
}

.service-row-reverse img {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.service-row-reverse > div {
  justify-self: start;
}

.service-row-reverse {
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row img {
  width: 100%;
  max-width: 390px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  justify-self: end;
}

.service-row-reverse img {
  justify-self: start;
}

.service-row h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

.service-row h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  background: var(--button-green);
}

.service-row p {
  max-width: 790px;
  color: var(--ink);
  font-size: 19.5px;
  line-height: 1.74;
}

.service-row p + p {
  margin-top: 18px;
}

.single-testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.single-testimonial p {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.contact-form-image {
  margin: 0;
  min-height: 100%;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 46px;
  background: var(--pale);
}

.contact-form h2 {
  margin-bottom: 8px;
  font-size: 32px;
  color: var(--ink);
}

.form-intro {
  margin-bottom: 6px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form label[hidden] {
  display: none;
}

.privacy-consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
  margin-top: 4px;
  font-weight: 500 !important;
  line-height: 1.5;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.contact-form .privacy-consent a {
  color: var(--green);
  text-decoration: none;
  text-decoration-line: none;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.form-status.error {
  border-left-color: #b42318;
}

.form-status.ok {
  border-left-color: var(--green);
}

.legal-page {
  padding: 78px 40px;
  background: var(--pale);
}

.legal-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px;
  background: var(--white);
}

.legal-content h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.legal-content h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}

.legal-content h2 + h3 {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 800;
}

.legal-content ul {
  margin: 0 0 18px 20px;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content a[target="_blank"]::after {
  content: " ↗";
  font-size: 0.78em;
}

.legal-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--body);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 160px;
}

input::placeholder,
textarea::placeholder {
  color: #87949a;
  font-weight: 400;
}

.site-footer {
  padding: 28px 40px 26px;
  background: var(--white);
  color: #25251e;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1.15fr 1.7fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.footer-brand {
  color: #202017;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  line-height: 1.42;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-brand:hover {
  color: var(--button-green);
}

.footer-item {
  min-height: 70px;
  display: flex;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid #d6d0c3;
  font-size: 16px;
  line-height: 1.55;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: #3d3d31;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.footer-icon-location {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.footer-icon-contact {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.78a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.3-1.26a2 2 0 0 1 2.11-.45c.89.34 1.82.57 2.78.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.78a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.3-1.26a2 2 0 0 1 2.11-.45c.89.34 1.82.57 2.78.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.footer-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.78a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.3-1.26a2 2 0 0 1 2.11-.45c.89.34 1.82.57 2.78.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.89.7 2.78a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.3-1.26a2 2 0 0 1 2.11-.45c.89.34 1.82.57 2.78.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.footer-icon-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.footer-icon-document {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M9 13h6M9 17h6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8Z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M9 13h6M9 17h6'/%3E%3C/svg%3E");
}

.footer-icon-shield {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-8 9-4.5-1.5-8-4-8-9V5l8-3 8 3v8Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-8 9-4.5-1.5-8-4-8-9V5l8-3 8 3v8Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.footer-item p {
  margin: 0;
}

.footer-address {
  display: inline-block;
}

.footer-item a[href^="mailto:"] {
  white-space: nowrap;
}

.footer-item a:hover {
  color: var(--green);
}

.footer-links {
  font-size: 16px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d6d0c3;
  text-align: center;
  font-size: 16px;
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 0;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background-color 180ms ease;
}

.scroll-top::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--green-hover);
}

@media (max-width: 1080px) {
  .site-header {
    padding: 21px 32px;
  }

  .primary-nav {
    gap: 20px;
    font-size: 13.5px;
  }

  .logo-link img {
    width: 315px;
  }

  .intro-copy {
    padding: 45px 35px;
  }

  .intro-card img {
    min-height: 500px;
  }

  .three-column {
    gap: 30px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 32px;
    display: none;
    width: min(285px, calc(100vw - 48px));
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: rgba(16, 18, 14, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  }

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

  .primary-nav a {
    padding: 10px 12px;
    line-height: 1.2;
  }

  .nav-cta {
    min-width: 0;
    min-height: 44px;
    margin-top: 6px;
    padding: 10px 14px;
  }

  .intro-card,
  .split {
    grid-template-columns: 1fr;
  }

  .intro-card {
    margin-top: -80px;
  }

  .intro-card img {
    order: -1;
    min-height: 380px;
  }

  .feature-heading {
    padding-right: 0;
  }

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

  .two-column,
  .service-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-text-grid,
  .about-focus-section,
  .about-original-grid,
  .about-approach-grid,
  .about-understanding-inner,
  .faq-section,
  .costs-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-hero {
    gap: 44px;
  }

  .portrait-frame {
    max-width: 560px;
  }

  .about-side-note {
    position: static;
  }

  .final-cta {
    min-height: 310px;
    padding: 52px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-item {
    min-height: auto;
    gap: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .about-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    gap: 22px;
    padding: 24px 22px;
  }

  .service-row img {
    max-width: 430px;
    justify-self: start;
  }

  .service-row-reverse > div,
  .service-row-reverse img {
    grid-column: auto;
    grid-row: auto;
  }

  .about-original-grid {
    margin-top: -50px;
  }

  .about-original-image {
    order: -1;
    min-height: 430px;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 86px;
    padding: 18px 24px;
  }

  .primary-nav {
    right: 24px;
    width: min(255px, calc(100vw - 48px));
    padding: 10px;
  }

  .primary-nav a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .primary-nav .nav-cta {
    min-height: 42px;
    margin-top: 5px;
  }

  .logo-link img {
    width: 230px;
    filter: brightness(0) invert(1) contrast(1.18) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
  }

  .hero {
    min-height: 0;
    padding: 119px 24px 108px;
  }

  .subpage-hero {
    min-height: 330px;
    padding: 100px 24px 62px;
  }

  .contact-title-hero h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .intro-band {
    padding: 0 24px;
  }

  .home-overview {
    padding: 0 18px 34px;
  }

  .home-intro-panel {
    margin: -50px auto 0;
    padding: 30px 24px 34px;
  }

  .home-intro-panel p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .home-nav-accent {
    margin: 30px auto 10px;
  }

  .home-nav-band {
    padding: 20px 16px;
  }

  .home-nav-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-nav-card {
    min-height: 0;
    padding: 24px 22px 22px;
  }

  .home-nav-card h2 {
    font-size: 31px;
  }

  .home-card-line {
    margin: 18px 0 16px;
  }

  .home-nav-card p,
  .home-card-link {
    font-size: 16px;
  }

  .home-card-link {
    padding-top: 20px;
  }

  .about-original-intro {
    padding: 0 24px;
  }

  .about-original-copy {
    padding: 32px 25px;
  }

  .about-original-image {
    min-height: 360px;
  }

  .about-accent-divider {
    margin-top: 34px;
  }

  .about-timeline-section {
    padding: 37px 24px 48px;
  }

  .about-timeline-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .timeline-column + .timeline-column {
    padding-left: 0;
    border-left: 0;
  }

  .timeline-column h2 {
    font-size: 19px;
    letter-spacing: 0.11em;
  }

  .timeline-entry {
    grid-template-columns: 86px 26px 1fr;
    gap: 13px;
    padding-bottom: 28px;
  }

  .timeline-entry::before {
    left: 112px;
  }

  .timeline-date {
    font-size: 14px;
  }

  .timeline-marker {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 3px var(--pale);
  }

  .timeline-marker::after {
    inset: 7px;
  }

  .timeline-entry h3 {
    font-size: 16px;
  }

  .timeline-entry p:not(.timeline-date),
  .timeline-note p {
    font-size: 14.5px;
  }

  .timeline-note {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    padding: 22px 20px;
    border-radius: 12px;
  }

  .timeline-note-icon {
    margin: 0 auto;
  }

  .timeline-bottom-divider {
    margin-top: 38px;
  }

  .memberships-section {
    padding: 0 24px 58px;
  }

  .memberships-inner h2 {
    font-size: 19px;
    letter-spacing: 0.11em;
  }

  .memberships-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .membership-logo-card {
    min-height: 118px;
    padding: 20px;
  }

  .membership-logo-card img {
    max-height: 62px;
  }

  .about-approach-section,
  .about-understanding-section {
    padding: 64px 24px;
  }

  .costs-page {
    padding: 0 18px 42px;
  }

  .therapy-page {
    padding: 0 18px 42px;
  }

  .faq-page {
    padding: 0 18px 42px;
  }

  .costs-intro {
    margin: -50px auto 46px;
    padding: 28px 24px;
  }

  .costs-intro p:not(.eyebrow) {
    font-size: 17px;
  }

  .therapy-intro {
    margin: -50px auto 30px;
    padding: 28px 24px;
  }

  .therapy-intro p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.65;
  }

  .cost-card {
    padding: 0 22px 22px;
  }

  .cost-card h2 {
    margin: 0 -22px 8px;
    padding: 20px 22px 16px;
    font-size: 26px;
  }

  .cost-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .contact-layout {
    margin-top: 30px;
  }

  .contact-form-image img {
    min-height: 420px;
  }

  .contact-form-image {
    height: auto;
  }

  .legal-page {
    padding: 44px 20px;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .legal-content h2 {
    font-size: 28px;
  }

  .legal-content h3 {
    margin: 30px 0 12px;
    font-size: 20px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .legal-content p {
    margin-bottom: 18px;
  }

  .legal-separator {
    margin: 28px 0;
  }

  .faq-overview-panel {
    margin-top: -50px;
    padding: 30px 25px;
  }

  .faq-overview-panel p:not(.eyebrow) {
    font-size: 17px;
  }

  .faq-section {
    padding: 0;
  }

  .faq-section-heading {
    min-height: 82px;
    padding: 24px 24px 18px;
  }

  .faq-section-heading h2 {
    font-size: 28px;
  }

  .faq-list {
    padding: 6px 24px 10px;
  }

  .faq-question {
    font-size: 19px;
    padding: 21px 0;
  }

  .service-list {
    gap: 22px;
  }

  .service-row {
    gap: 18px;
    padding: 22px 18px;
  }

  .service-row > div {
    max-width: none;
  }

  .service-row h2 {
    margin-bottom: 12px;
    font-size: 31px;
  }

  .service-row h2::after {
    margin-top: 12px;
  }

  .service-row p {
    font-size: 16.5px;
    line-height: 1.64;
  }

  .service-row img {
    width: 100%;
    max-width: 310px;
    justify-self: center;
  }

  .about-approach-grid {
    margin-top: 45px;
    gap: 35px;
  }

  .about-approach-grid article {
    padding: 0;
  }

  .intro-card {
    margin-top: -60px;
  }

  .intro-copy {
    padding: 25px;
  }

  .intro-card img {
    min-height: 300px;
  }

  .section-padded,
  .middle-cta,
  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-footer {
    padding: 22px 24px 20px;
  }

  .footer-brand {
    font-size: 20px;
    line-height: 1.28;
  }

  .footer-item {
    font-size: 15px;
    line-height: 1.42;
  }

  .footer-contact,
  .footer-links {
    gap: 7px;
  }

  .footer-line {
    gap: 11px;
  }

  .footer-icon {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    font-size: 14px;
  }

  .section-padded {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero {
    padding: 74px 24px;
  }

  .contact-page-intro {
    font-size: 19px;
  }

  .contact-section {
    padding: 0 18px 42px;
  }

  .contact-intro-panel {
    margin-top: -50px;
    padding: 28px 24px;
  }

  .contact-intro-panel p:not(.eyebrow) {
    font-size: 17px;
  }

  .about-hero,
  .about-text-section,
  .about-focus-section,
  .about-closing {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .about-text-section,
  .about-focus-section,
  .about-closing {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .lead {
    font-size: 19px;
  }

  .about-prose {
    font-size: 17px;
  }

  .about-focus-card,
  .about-language-card {
    padding: 28px;
  }

  .portrait-frame::before {
    inset: 16px -12px -16px 16px;
  }

  .contact-form {
    padding: 25px;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 430px) {
  .logo-link img {
    width: 205px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .service-row h2 {
    font-size: 32px;
  }

  .service-row p {
    font-size: 17px;
    line-height: 1.72;
  }

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