/* ================================================
   Jennifer Weinstock, LCSW - Shared Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream:       #EDEBF2;
  --white:       #F6F5FA;
  --dark:        #211F2B;
  --mid:         #524F5E;
  --sage:        #6B5CC7;
  --sage-pale:   #E4E0F2;
  --sage-deep:   #574AA8;
  --border:      #DAD6E4;
}

body.theme-dark {
  --cream:       #211F2B;
  --white:       #2A2836;
  --dark:        #F2F0F8;
  --mid:         #B8B4C6;
  --sage:        #A99BF0;
  --sage-pale:   #322F42;
  --sage-deep:   #C4B8FF;
  --border:      #3A3748;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
}

/* ---- GROUNDWORK-STYLE SPLIT HERO ---- */

.gw-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  min-height: 640px;
}

.gw-hero-photo {
  padding: 56px 0 56px 56px;
  display: flex;
  align-items: center;
}

.gw-hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.gw-hero-content {
  padding: 72px 72px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255,255,255,0.82);
}

.gw-hero-content .btn {
  align-self: flex-start;
  margin-top: 14px;
}

@media (min-width: 861px) {
  .gw-hero-content .btn {
    align-self: center;
  }
}

.gw-eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.gw-headline {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  color: var(--sage);
  margin-bottom: 28px;
}

.gw-hero-content p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
}

.gw-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 16px 32px;
  background: var(--sage);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-decoration: none;
  transition: background 0.2s;
}

.gw-btn:hover {
  background: var(--sage-deep);
}

@media (max-width: 860px) {
  .gw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gw-hero-photo {
    padding: 24px;
    height: 320px;
  }

  .gw-hero-content {
    padding: 16px 28px 56px;
  }
}

/* ---- NAV DROPDOWN ---- */

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::before {
  content: ' ▾';
  font-size: 0.6em;
  vertical-align: middle;
  opacity: 0.6;
  float: right;
  margin-left: 5px;
  margin-top: 2px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  background: #F6F5FA;
  border: 1px solid #DAD6E4;
  list-style: none;
  padding: 6px 0;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 300;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #524F5E;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 10px;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  color: #574AA8;
  background: #E4E0F2;
}

/* ---- NAVIGATION ---- */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #F6F5FA;
  border-bottom: 1px solid #DAD6E4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #211F2B;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #524F5E;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #574AA8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #574AA8;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #211F2B;
  transition: all 0.25s;
}

/* ---- HERO (home page) ---- */

.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1515112569565-1e4aef316db9?fm=jpg&q=85&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43,40,37,0.38) 0%, rgba(43,40,37,0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 0 24px;
  max-width: 720px;
}

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-content .sub {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 13px 38px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-sage {
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}

.btn-sage:hover {
  background: var(--sage-deep);
  color: var(--white);
}

.btn-dark {
  color: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ---- PAGE HEADER (inner pages) ---- */

.page-header {
  background: var(--sage-pale);
  padding: 72px 48px 60px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.page-header .subtitle {
  margin-top: 14px;
  color: var(--mid);
  font-size: 0.9rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---- HOME: INTRO STRIP ---- */

.intro-strip {
  background: var(--white);
  padding: 68px 24px;
  text-align: center;
}

.intro-strip .inner {
  max-width: 620px;
  margin: 0 auto;
}

.intro-strip h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.35;
}

.intro-strip p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-strip .cta-row {
  margin-top: 40px;
}

/* ---- HOME: SERVICE CARDS ---- */

.cards-section {
  background: var(--dark);
  padding: 24px 24px 56px;
}

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

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 20px;
  text-align: center;
}

.cards-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  margin-bottom: 52px;
}

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

.card {
  background: transparent;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  border: 1px solid var(--sage);
  border-radius: 12px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(107,92,199,0.12);
  border-color: var(--sage-pale);
}

.card-accent {
  display: none;
}

.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  flex: 1;
}

.card-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AFA9EC;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card:hover .card-link {
  gap: 10px;
}

.card-link::after {
  content: '→';
}

/* ---- CALLOUT BAND ---- */

.callout-band {
  background: var(--dark);
  padding: 56px 24px;
  text-align: center;
  color: var(--white);
}

.callout-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.35;
}

.callout-band p {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---- STANDARD CONTENT SECTION ---- */

.content-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px;
}

.content-section + .content-section {
  padding-top: 0;
}

.content-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.content-section p {
  color: var(--mid);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* ---- TWO-COLUMN WITH PHOTO ---- */

.two-col {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.two-col .text-col h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.25;
}

.two-col .text-col p {
  color: var(--mid);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
}

.two-col .text-col p:last-child {
  margin-bottom: 0;
}

.two-col .photo-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- DIVIDER ---- */

.rule {
  width: 48px;
  height: 2px;
  background: var(--sage);
  margin: 0 0 28px;
}

.rule-center {
  margin: 0 auto 28px;
}

/* ---- EFT BOX ---- */

.eft-box {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  padding: 40px 44px;
  margin: 0 0 52px;
}

.eft-box .box-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: block;
  margin-bottom: 14px;
}

.eft-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}

.eft-box p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.eft-box p:last-child {
  margin-bottom: 0;
}

/* ---- TOPIC LIST ---- */

.topic-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}

.topic-list li {
  color: var(--mid);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.topic-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.85rem;
}

.topic-list-sm li {
  font-size: 0.87rem;
}

/* ---- RATES ---- */

.rates-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.rate-label {
  color: var(--mid);
  font-size: 1rem;
}

.rate-amount {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
}

.insurance-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.insurance-wrap h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
}

.insurance-wrap p {
  color: var(--mid);
  margin-bottom: 18px;
  line-height: 1.8;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 32px;
}

.badge {
  background: var(--sage-pale);
  color: var(--dark);
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- CONTACT ---- */

.contact-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.form-intro {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 7px;
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.92rem;
  color: #211F2B;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  border-radius: 6px;
}

.field input:not([type="checkbox"]):not([type="radio"]):focus,
.field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 92, 199, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9A96A6;
}

.field textarea {
  height: 110px;
  resize: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-info-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
}

.contact-detail {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-detail span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.contact-detail a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--sage-deep);
}

.profile-links {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.profile-links a {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.profile-links a:hover {
  color: var(--sage-deep);
}

.eft-section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  margin-top: 24px;
}

.eft-rule {
  margin-top: 40px;
  margin-bottom: 28px;
}

.eft-q {
  font-weight: 700;
  color: var(--dark) !important;
  margin-bottom: 6px !important;
  margin-top: 24px;
}

.rate-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.95rem;
}

.rate-line:last-child {
  border-bottom: none;
}

.rate-figure {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
}

.insurer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.insurer-tags span {
  background: var(--sage-pale);
  color: var(--dark);
  padding: 6px 15px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 64px 72px;
  align-items: start;
}

.about-photo-v2 img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.92);
}

@media (max-width: 860px) {
  .about-layout-v2 {
    grid-template-columns: 1fr;
    padding: 40px 24px 56px;
    gap: 32px;
  }

  .about-photo-v2 {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }
}

.field-note {
  font-size: 0.78rem !important;
  color: var(--mid);
  line-height: 1.6;
  margin: 0 0 12px !important;
  font-style: italic;
}

.checkbox-row {
  display: flex;
  gap: 28px;
  align-items: center;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--mid) !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.checkbox-label input {
  width: 16px !important;
  height: 16px;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  accent-color: var(--sage);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-details-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.contact-details-inline .contact-detail {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 240px;
}

.contact-details-inline .contact-detail span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.contact-details-inline .contact-detail a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details-inline .contact-detail a:hover {
  color: var(--sage-deep);
}

.btn-submit-purple {
  display: inline-block;
  padding: 13px 38px;
  background: var(--sage);
  color: #ffffff;
  border: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-submit-purple:hover {
  background: var(--sage-deep);
}

/* ---- INDIVIDUAL THERAPY PAGE ---- */

.indiv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  align-items: start;
}

.indiv-photo {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 56px 0 56px 56px;
}

.indiv-photo::after {
  content: '';
  position: absolute;
  inset: 56px 0 56px 56px;
  background: linear-gradient(160deg, rgba(43,58,66,0.06), rgba(74,122,140,0.12));
  pointer-events: none;
  mix-blend-mode: multiply;
}

.indiv-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92);
}

/* Photo on the right (couples page): mirror the padding */
.indiv-content + .indiv-photo {
  padding: 56px 56px 56px 0;
}

.indiv-content + .indiv-photo::after {
  inset: 56px 56px 56px 0;
}

.indiv-photo.mute-strong img {
  filter: saturate(0.7) brightness(0.96);
}

.indiv-content {
  padding: 52px 64px 72px;
  background: var(--cream);
}

.indiv-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  font-style: normal;
  color: var(--sage);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.indiv-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.indiv-location {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.indiv-rule {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 22px 0;
}

.indiv-content p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.indiv-content p:last-of-type {
  margin-bottom: 0;
}

.indiv-areas-box {
  border: 1px solid var(--border);
  padding: 24px 28px;
  background: var(--white);
}

.indiv-areas-intro {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage) !important;
  margin-bottom: 14px !important;
}

.indiv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  columns: 2;
  gap: 8px;
}

.indiv-list li {
  color: var(--mid);
  font-size: 0.88rem;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
  break-inside: avoid;
}

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

.indiv-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.indiv-rates-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.indiv-rates-link:hover {
  color: var(--sage-deep);
  border-color: var(--sage-deep);
}

@media (max-width: 860px) {
  .indiv-layout {
    grid-template-columns: 1fr;
  }

  .indiv-photo {
    position: relative;
    top: 0;
    height: 380px;
    padding: 24px 24px 0;
  }

  .indiv-photo::after,
  .indiv-content + .indiv-photo::after {
    inset: 24px 24px 0;
  }

  .indiv-content + .indiv-photo {
    padding: 24px 24px 0;
    order: -1;
  }

  .indiv-content {
    padding: 40px 24px 56px;
  }

  .indiv-list {
    columns: 1;
  }
}

.couples-credential {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 10px;
}

.eft-content p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 640px;
}

/* ---- ABOUT PAGE LAYOUT ---- */

.about-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 40px 88px;
}

.about-head h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 56px;
  align-items: start;
}

.about-prose p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

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

.about-portrait img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 640px) {
  .about-wrap {
    padding: 48px 20px 64px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-portrait {
    order: -1;
  }

  .about-portrait img {
    width: 160px;
    height: 210px;
  }
}

/* ---- ABOUT PAGE LOWER SECTION ---- */

.inline-page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.about-two-col {
  padding-top: 64px;
  padding-bottom: 0;
}

.about-lower {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.about-lower h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-lower p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 640px;
}

/* ---- FOOTER ---- */

footer {
  background: #1A1822;
  color: rgba(255,255,255,0.55);
  padding: 48px 48px 36px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  clear: both;
  width: 100%;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}

.footer-badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-badge img {
  height: 40px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-badge:hover img {
  opacity: 1;
}

.footer-badge.ack img {
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
}

.crisis-bar-footer {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-align: center;
}

.crisis-bar-footer strong {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 860px) {
  .card-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col .photo-col {
    order: -1;
  }

  .two-col .photo-col img {
    height: 380px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #F6F5FA;
    border-top: 1px solid #DAD6E4;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

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

  .nav-links li a {
    display: block;
    padding: 14px 24px;
  }

  /* Show dropdown submenu inline on mobile since there's no hover */
  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }

  .nav-dropdown .dropdown-menu li a {
    padding: 12px 24px 12px 40px;
    font-size: 0.68rem;
    color: var(--mid);
  }

  /* Hide the redundant duplicate "Couples Therapy" inside the submenu on mobile */
  .nav-dropdown .dropdown-menu li:first-child {
    display: none;
  }

  /* Remove the dropdown arrow indicator on mobile */
  .nav-dropdown > a::before {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    height: 78vh;
  }

  .page-header {
    padding: 56px 20px 44px;
  }

  .intro-strip {
    padding: 64px 20px;
  }

  .eft-box {
    padding: 28px 24px;
  }

  .topic-list {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 28px 20px;
  }

  .two-col {
    padding: 56px 20px;
  }
}
