@font-face {
  font-family: 'Stangith';
  src: url('fonts/stangith.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage: #6e7349;
  --sage-light: #7d9b8a;
  --sage-pale: #edf4f0;
  --white: #ffffff;
  --warm-white: #faf8f5;
  --warm-cream: #f3ede3;
  --text-dark: #2a2620;
  --text-mid: #5a5348;
  --text-light: #8a8278;
  --accent: #a0775c;
  --nav-height: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
}

h2 { font-family: ' Montserrat', sans-serif; }
/* h2 { font-family: 'Stangith', 'DM Serif Display', serif; } */

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2%;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 500px;
  height: auto;
}

.nav-logo span { color: var(--sage); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-dark); }

.nav-links .has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.75rem;
  padding: 0.375rem;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  z-index: 200;
  list-style: none;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.nav-dropdown li a:hover {
  background: var(--sage-pale);
  color: var(--text-dark);
}

.nav-cta {
  background: #963c00;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #7a3100 !important; }

.services-mobile { display: none; }

.dropdown-arrow {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 0.2em;
  transition: transform 0.2s;
  vertical-align: middle;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: calc(90vh - var(--nav-height));
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 2%;
  background: var(--warm-cream);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  right: 2%;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
}

.hero-image { display: none; }

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
}


.hero-text h1 {
  font-family: 'Stangith', 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--sage);
}

.hero-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #963c00;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #7a3100; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--sage-light);
  color: var(--text-mid);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover { border-color: #963c00; color: #963c00; transform: translateY(-1px); }

.hero-image {
  position: relative;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 2rem 2rem 8rem 2rem;
  background: var(--sage-light);
  overflow: hidden;
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--sage);
}

.hero-image-placeholder svg { opacity: 0.4; }
.hero-image-placeholder p { font-size: 0.8125rem; color: var(--sage); opacity: 0.7; }

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  font-size: 0.8125rem;
}

.hero-badge strong { display: block; font-size: 1.125rem; color: var(--sage); font-family: 'DM Serif Display', serif; }

/* ── SECTION COMMON ── */
section { padding: 2rem 2%; }

.section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Stangith', 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  font-weight: 300;
}

/* ── VALUES ── */
.values { background: var(--warm-white); }

.values-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.values-header .section-body { margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--warm-cream);
  border-radius: 1.25rem;
  padding: 2rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg { color: var(--sage); }

.value-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--sage); 
  margin-bottom: 0.625rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* ── ABOUT / SPLIT ── */
.about {
  background: var(--sage-pale);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 2rem;
  background: var(--sage-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--sage);
}

.about-image-frame p { font-size: 0.8125rem; opacity: 0.7; }

.about-text .section-body { margin-bottom: 1.5rem; }

.credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process { background: var(--warm-cream); }

.process-header { max-width: 560px; margin-bottom: 3.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: calc(25% - 24px);
  height: 1px;
  background: var(--sage-light);
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* ── SERVICES ── */
.services { background: var(--warm-cream); }

.services-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.services-header .section-body { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--warm-white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.625rem;
  font-weight: 300;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
}

.service-link:hover { text-decoration: underline; }

/* ── PULL QUOTE ── */
.pull-quote {
  position: relative;
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  border-radius: 0 1rem 1rem 0;
  padding: 1.25rem 1.75rem 1.25rem 2.25rem;
  margin: 2rem 0 0;
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  max-width: 560px;
}

.pull-quote::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--sage-light);
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

.pull-quote::after {
  content: '\201D';
  font-size: 4rem;
  color: var(--sage-light);
  line-height: 0;
  vertical-align: -1.5rem;
  margin-left: 0.25rem;
}

/* ── INTRODUCTION ── */
.introduction { background: var(--warm-white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-panels { display: flex; flex-direction: column; gap: 2.5rem; }

.intro-panel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.intro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.intro-list li {
  font-size: .775rem;
  color: var(--text-dark);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.area-list {
  column-count: 2;
  padding-left: 1rem;
}
.area-list li {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;

}

.intro-areas {
  display: block;
  columns: 2;
  column-gap: 1.5rem;
}

.intro-list li::before {
  content: '–';
  color: var(--sage);
  position: absolute;
  left: 0;
}

.intro-approach li { padding-left: 0; }
.intro-approach li::before { display: none; }

.intro-approach li strong {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.introduction .section-title,
.introduction .section-body,
.introduction .pull-quote {
  max-width: none;
}

.introduction .section-body { margin-bottom: 1.5rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--sage);
  padding: 4rem 5%;
  text-align: center;
}

.cta-band h2 {
  /* font-family: 'Stangith', 'DM Serif Display', serif; */
 font-family: 'Montserrat ', serif; 
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #963c00;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-white:hover { background: var(--warm-cream); color: #7a3100; transform: translateY(-1px); }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  background: var(--white);
}

.contact-info .section-title { margin-bottom: 1.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg { color: var(--sage); }

.contact-detail-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.contact-form {
  background: var(--warm-cream);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 0.625rem;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 0.75rem;
  background: #963c00;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.form-submit:hover { background: #7a3100; }

/* ── FOOTER ── */
footer {
  background: var(--warm-white);
  color: var(--text-mid);
  padding: 3rem 5%;
  border-top:1px solid rgba(0,0,0,0.1);
}

.footer-inner {
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { color: var(--text-dark); font-size: 1.125rem; display: block; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.footer-nav li + li::before {
  content: '|';
  padding: 0 0.75rem;
  color: var(--sage-light);
}

.footer-nav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-dark); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-logo-span { color: var(--sage-light); }

/* ── INTERNAL PAGE HEADER ── */
.nav-links a.active {
  color: var(--sage);
  font-weight: 500;
}

.page-header {
  background: var(--warm-cream);
  padding: 3.5rem 5% 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--sage);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.page-header-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.page-header h1 {
  font-family: 'Stangith', 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
   font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.page-header h1 em {
  font-style: italic;
  color: var(--sage);
}

/* ── BIO / PRACTITIONER ── */
.bio {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 5rem;
  align-items: start;
  background: var(--warm-white);
}

.bio-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bio-image-frame {
  width: 100%;
  border-radius: 1.5rem;
  background: var(--sage-light);
  overflow: hidden;
}

.bio-image-frame p { margin: 0; line-height: 0; }

.bio-image-frame img { width: 100%; height: auto; display: block; }

.bio-image-wrap h3 { margin-bottom: 0.75rem; }


.cred-image-frame {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
}

.cred-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}






.bio-tag {
  display: block;
  width: fit-content;
  /* background: var(--sage-pale); */
  color: var(--sage); 
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.bio-subtitle {
  font-size: 1rem;
  color: var(--sage);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.bio-body {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.bio-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 2rem 0;
}

.credentials + .credentials-title {
  margin-top: 2rem;
}

.credentials-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.credential-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.credential-text strong {
  font-size: 0.9375rem;
  color: var(--sage);
  font-weight: 500;
}

.credential-text span {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 300;
}

.bio-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── APPROACH GRID ── */
.approach { background: var(--sage-pale); }

.approach-header { max-width: 640px; margin-bottom: 3.5rem; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.approach-card {
  background: var(--warm-white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.approach-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--sage);
  margin-bottom: 0.625rem;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* ── ASSOCIATIONS BAR ── */
.associations {
  background: var(--warm-white);
  padding: 2.5rem 5%;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.associations > p {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
}

.assoc-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.assoc-pill {
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4375rem 1rem;
  border-radius: 100px;
}

/* ── FEES SECTION ── */
.fees-section { background: var(--warm-white); padding-top: 2.5rem; padding-bottom: 2.5rem; }

.fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem auto 0;
  max-width: 720px;
}

.fee-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--warm-cream);
}

.fee-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sage-light);
}

.fee-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fee-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.fee-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.375rem;
 
}

.fee-card-header h3 {
  /* font-family: 'montserrat', serif; */
 font-family: 'DM Serif Display', serif; 
  font-size: 1.25rem;
  font-weight: 200; 
  color: var(--accent);
}

.fee-price {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--accent);
}

.fee-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
}

.fees-info { background: var(--warm-white); }

.fees-info .bio-body { margin-bottom: 1rem; }

.fees-info-heading  {
  /* font-family: 'montserrat', serif; */
 font-family: 'DM Serif Display', serif; 
  font-size: 1.25rem;
  color: var(--accent);
  margin: 2rem 0 0.75rem;
  font-weight: 300;
}

.fees-insurance-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}

/* ── INDIVIDUALS ── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--warm-cream);
}

.services-text .section-body { margin-bottom: 1.5rem; max-width: none; }

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

.bullet-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 7px;
}

.services-image {
  float: right;
  width: 42%;
  margin: 0 0 2rem 3.5rem;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--sage-pale);
}

.services-image img {
  width: 100%;
  height: auto ;
  display: block;
}

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

.services-body .bio-body { margin-bottom: 1.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-desktop { display: none; }
  .services-mobile { display: block; }
}

@media (max-width: 1100px) {
  .hero-bg-img {
    height: 92%;
    width: auto;
    right: 2%;
    bottom: 0;
    top: auto;
  }
  .hero-text { max-width: 50%; }
}

@media (max-width: 900px) {
  .hero, .about, .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero { padding: 2.5rem 5%; min-height: unset; }
  .hero-bg-img { display: none; }
  .hero-text { max-width: 600px; }
  .hero-text .section-label { white-space: normal; }
  .values-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-content { order: -1; }
  .bio-image-wrap { order: 0; }
  .services-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-image { float: none; width: 100%; margin: 0 0 2rem; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 850px) {
  .services-desktop { display: list-item; }
  .services-mobile { display: none; }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown { display: none; }
  .services-mobile .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    min-width: unset;
  }
  .services-mobile.mobile-open .nav-dropdown { display: block; }
  .services-mobile.mobile-open .nav-dropdown li { border-bottom: none !important; }
  .services-mobile.mobile-open .nav-dropdown li a {
    padding: 0.5rem 0 0.5rem 1.25rem !important;
    font-size: 0.875rem;
    color: var(--text-light);
  }
  .services-mobile.mobile-open .dropdown-arrow { transform: rotate(180deg); }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 0.5rem 5% 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    gap: 0;
    z-index: 99;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open a { display: block; padding: 0.75rem 0; }
  .nav-links.open .nav-cta {
    margin-top: 0.5rem;
    display: inline-block;
    border-radius: 2rem;
    padding: 0.65rem 2rem;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .values-grid, .services-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col { text-align: left; justify-self: start; }
  .footer-col ul { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.25rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .associations { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 425px) {
  .nav-logo img { width: 350px; }
}
