/* =============================================
   NEW PATHS FAMILY COUNSELING — REDESIGN CSS
   ============================================= */

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

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

:root {
  --sage: #2d8470;
  --sage-dark: #0f332c;
  --sage-light: #e6f3f0;
  --sage-mid: #8ec4b8;
  --brand-gradient: linear-gradient(135deg, #0f332c 0%, #2d8470 100%);
  --stone: #8B7D6B;
  --stone-light: #F5F1EC;
  --warm-white: #FDFBF8;
  --cream: #F7F3EE;
  --text-dark: #0f2620;
  --text-mid: #3d5c56;
  --text-soft: #7a9a94;
  --accent: #C17F5A;
  --radius: 12px;
  --radius-lg: 20px;
}

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

/* ── NAV ── */
.np-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,251,248,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(135deg, #0f332c, #2d8470) 1;
  padding: 0 2rem;
}
.np-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-wrap: nowrap;
  gap: 1rem;
}
.np-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
}
.np-logo span { color: var(--text-soft); font-weight: 300; font-style: italic; font-size: 14px; letter-spacing: 0.04em; }
.np-nav-links { display: flex; gap: 2rem; list-style: none; }
.np-nav-links a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.np-nav-links a:hover,
.np-nav-links a.active { color: var(--sage); }
.np-nav-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.np-nav-phone:hover { color: var(--sage-dark); }
@media(max-width:960px){ .np-nav-phone { display: none; } }

.np-nav-cta {
  background: var(--sage);
  color: #fff;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.np-nav-cta:hover { background: #236858; }

/* ── PAGE HERO BANNER (inner pages) ── */
.np-page-hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid rgba(107,143,113,0.12);
}
.np-page-hero-inner { max-width: 1100px; margin: 0 auto; }
.np-page-hero .np-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.np-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}
.np-page-hero h1 em { font-style: italic; color: var(--sage); }
.np-page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.8;
}

/* ── HOMEPAGE HERO ── */
.np-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EBF0EC 0%, #F7F3EE 60%, #F5F1EC 100%);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 2rem 5rem;
}
.np-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(107,143,113,0.08);
  pointer-events: none;
}
.np-hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(193,127,90,0.07);
  pointer-events: none;
}
.np-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.np-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,143,113,0.12);
  color: var(--sage);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.np-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.np-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 3.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 2.25rem;
}
.np-hero h1 em { font-style: italic; color: var(--sage); }
.np-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.np-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.np-consult-card {
  background: linear-gradient(135deg, #0f332c 0%, #2d8470 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(15,51,44,0.22);
}
.np-consult-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
}
.np-check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.np-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.88); }
.np-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 10px; color: #fff; font-weight: 700;
}
.np-consult-btn {
  margin-top: 1.5rem;
  display: block;
  text-align: center;
  background: #fff;
  color: #0f332c;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.np-consult-btn:hover { background: var(--sage-light); }
.np-consult-hint { text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ── SECTIONS ── */
.np-section { padding: 5rem 2rem; }
.np-section-inner { max-width: 1100px; margin: 0 auto; }
.np-section-alt { background: var(--cream); }
.np-section-stone { background: var(--stone-light); }
.np-section-sage { background: linear-gradient(135deg, #e6f3f0 0%, #f7f3ee 100%); border-top: 4px solid #2d8470; }

.np-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: block;
}
.np-section-sage .np-label { color: #7a9a94; }

h2.np-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
h2.np-heading em { font-style: italic; color: var(--sage); }
.np-section-sage h2.np-heading { color: #0f2620; }

.np-section-intro {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.np-section-sage .np-section-intro { color: #3d5c56; max-width: 520px; margin-left: auto; margin-right: auto; text-align: center; }

/* ── BUTTONS ── */
.np-btn-primary {
  background: var(--sage);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.np-btn-primary:hover { background: #236858; transform: translateY(-1px); }
.np-btn-secondary {
  background: transparent;
  color: var(--sage);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--sage);
  transition: all 0.2s;
  display: inline-block;
}
.np-btn-secondary:hover { background: var(--sage-light); }
.np-section-sage .np-btn-primary { background: #2d8470; color: #fff; }
.np-section-sage .np-btn-primary:hover { background: #236858; }
.np-section-sage .np-btn-secondary { border-color: #2d8470; color: #2d8470; }
.np-section-sage .np-btn-secondary:hover { background: rgba(45,132,112,0.08); }
.np-btn-sm {
  font-size: 0.75rem;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.np-btn-sm-primary { background: var(--sage); color: #fff; }
.np-btn-sm-primary:hover { background: #236858; }
.np-btn-sm-outline { background: transparent; color: var(--sage); border: 1.5px solid var(--sage); }
.np-btn-sm-outline:hover { background: var(--sage-light); }

/* ── WHY CARDS ── */
.np-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.np-why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(107,143,113,0.1);
}
.np-why-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
  font-size: 16px;
}
.np-why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}
.np-why-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

/* ── SERVICE CARDS ── */
.np-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.np-service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107,143,113,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.np-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107,143,113,0.15); }
.np-service-img {
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.np-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.np-service-card:hover .np-service-img img {
  transform: scale(1.04);
}
.np-service-body { padding: 1.25rem; }
.np-service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.np-service-body p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.np-service-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.np-service-links a { font-size: 0.875rem; color: var(--sage); text-decoration: none; font-weight: 500; }
.np-service-links a:hover { text-decoration: underline; }

/* ── COUNSELOR CARDS ── */
.np-counselors-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.np-counselor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(107,143,113,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.np-counselor-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(107,143,113,0.15); }
.np-counselor-photo {
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.np-counselor-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
}
.np-counselor-photo-placeholder {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.np-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: #fff;
}
.np-counselor-body { padding: 1.25rem; }
.np-counselor-license { font-size: 0.6875rem; color: var(--sage); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 2px; }
.np-counselor-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--text-dark); }
.np-counselor-role { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.np-counselor-fee {
  font-size: 0.875rem; color: var(--text-soft);
  margin-bottom: 1rem; padding: 8px 12px;
  background: var(--cream); border-radius: 8px;
  text-align: center; font-weight: 500;
}
.np-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.np-tag {
  font-size: 0.6875rem; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
  background: var(--sage-light); color: var(--sage);
}
.np-counselor-links { display: flex; gap: 8px; }

/* ── FEES ── */
.np-fees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.np-fee-table, .np-insurance-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(107,143,113,0.1);
}
.np-fee-table h3, .np-insurance-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.np-fee-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
}
.np-fee-row:last-of-type { border-bottom: none; }
.np-fee-name { font-size: 1rem; color: var(--text-dark); }
.np-fee-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--sage); }
.np-fee-note { font-size: 0.875rem; color: var(--text-soft); margin-top: 1rem; }
.np-insurance-box p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.np-insurance-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; counter-reset: steps; }
.np-insurance-steps li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.875rem; color: var(--text-mid);
  line-height: 1.7;
  counter-increment: steps;
}
.np-insurance-steps li::before {
  content: counter(steps);
  min-width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-light); color: var(--sage);
  font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

/* ── LOCATION ── */
.np-location-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; }
.np-location-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 1rem;
}
.np-location-info p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.np-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(107,143,113,0.15);
}
.np-map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CTA ── */
.np-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.np-cta-phone { font-size: 0.875rem; color: #7a9a94; text-align: center; }
.np-cta-phone strong { color: #0f2620; font-size: 1.125rem; }

/* ── FOOTER ── */
.np-footer { background: linear-gradient(135deg, #0f332c 0%, #2d8470 100%); color: rgba(255,255,255,0.6); padding: 3rem 2rem; }
.np-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
}
.np-footer-brand .np-logo { color: #fff; }
.np-footer-brand .np-logo span { color: rgba(255,255,255,0.4); }
.np-footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.np-footer-col h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-mid); margin-bottom: 1rem;
}
.np-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.np-footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.np-footer-col a:hover { color: #fff; }
.np-footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 0.75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .np-hero-inner { grid-template-columns: 1fr; }
  .np-consult-card { display: none; }
  .np-why-grid { grid-template-columns: 1fr 1fr; }
  .np-services-grid { grid-template-columns: 1fr 1fr; }
  .np-counselors-grid { grid-template-columns: 1fr 1fr; }
  .np-fees-grid { grid-template-columns: 1fr; }
  .np-location-grid { grid-template-columns: 1fr; }
  .np-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .np-nav-links { display: none; }
  .np-hamburger { display: flex; }
  .np-nav-phone { display: none; }
  .np-why-grid, .np-services-grid, .np-counselors-grid { grid-template-columns: 1fr; }
}

/* ── HAMBURGER MENU ── */
.np-hamburger {
  display: none;
  /* shown below 960px */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.np-hamburger:hover { background: var(--sage-light); }
.np-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.np-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.np-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.np-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.np-mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(253,251,248,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(135deg, #0f332c, #2d8470) 1;
  padding: 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.np-mobile-menu.open {
  max-height: 400px;
  padding: 1rem 0 1.5rem;
}
.np-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 0;
}
.np-mobile-menu ul li a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,132,112,0.1);
  transition: color 0.2s;
}
.np-mobile-menu ul li:last-child a { border-bottom: none; }
.np-mobile-menu ul li a:hover { color: var(--sage); }
.np-mobile-menu .np-mobile-cta {
  display: block;
  margin: 1.25rem 2rem 0;
  text-align: center;
  background: var(--sage);
  color: #fff;
  padding: 12px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 960px) {
  .np-nav-links { display: none; }
  .np-hamburger { display: flex; }
  .np-nav-phone { display: none; }
  .np-nav-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.np-nav-phone:hover { color: var(--sage-dark); }
@media(max-width:960px){ .np-nav-phone { display: none; } }

.np-nav-cta { display: none; }
  .np-hamburger { display: flex; }
  .np-nav { position: sticky; top: 0; }
  .np-mobile-menu { display: block; }
}
