/* =============================================
   nitashaborah.com — Main Stylesheet
   Direction: Warm & Grounded
   Last updated: 2026-06-18
============================================= */

/* ─── Google Fonts ─── */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Design Tokens ─── */
:root {
  --bg:         #F7F3EE;
  --bg-light:   #FDFBF7;
  --bg-dark:    #EEE8E0;
  --bg-card:    #EDE7DE;
  --border:     #DDD6CC;
  --text:       #2C3B35;
  --text-muted: #5A6E66;
  --text-faint: #8A9E95;
  --accent:     #B06A4A;
  --accent-lt:  #D4956E;
  --white:      #FFFFFF;
  --green:      #2C3B35;
  --green-mid:  #3D5249;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --pad-h: 60px;
  --pad-v: 80px;
  --radius: 3px;
}

/* ─── Base ─── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--text); line-height: 1.15; }
h1 { font-size: clamp(38px, 5vw, 54px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 19px; }
p  { color: var(--text-muted); }
em { font-style: italic; color: var(--accent); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 14px 26px;
  min-height: 44px;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  padding: 0;
  min-height: unset;
  align-self: center;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-secondary:hover { color: var(--text); border-color: var(--text); transform: none; }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
}

/* ─── NAV ─── */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.nav-logo-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); font-weight: 400; }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  background: var(--green);
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; }
.nav-mobile-only { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: 56px var(--pad-h) 40px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── HERO (homepage) ─── */
.hero {
  padding: var(--pad-v) 0;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: flex-start;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 58px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
}
.hero-image-block {
  background: var(--bg-dark);
  border-radius: 4px 4px 0 0;
  min-height: 330px;
  flex: 1;
  overflow: hidden;
}
.hero-credentials {
  background: var(--bg-card);
  border-radius: 0 0 4px 4px;
  border: 1px solid var(--border);
  border-top: none;
  padding: 18px 20px;
}
.hero-cred-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 11px;
}
.hero-cred-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-cred-row strong { font-weight: 500; color: var(--text); white-space: nowrap; }
.hero-cred-row span { color: var(--text-muted); text-align: right; font-size: 11px; }

/* ─── SERVICES STRIP ─── */
.services-strip {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--bg-card); }
.service-num {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  display: block;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.service-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link::after { content: '→'; }

/* ─── SECTIONS ─── */
.section {
  padding: var(--pad-v) 0;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.section-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section-bg-dark {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── PRACTICE COMMONS BANNER ─── */
/* OPTION B — Dark: PC's Deep Ink (#1F2521) */
.pc-banner {
  background: #1F2521;
  color: #F5F1E8;
  padding: var(--pad-v) 0;
}
.pc-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.pc-banner .eyebrow { color: rgba(245,241,232,0.45); }
.pc-banner .eyebrow::before { background: #7A8B7A; }
.pc-banner h2 { color: #F5F1E8; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; }
.pc-banner p { color: rgba(245,241,232,0.6); max-width: 560px; }
.pc-banner .btn-outline { border-color: rgba(245,241,232,0.35); color: #F5F1E8; }
.pc-banner .btn-outline:hover { background: rgba(245,241,232,0.08); border-color: #F5F1E8; }
.pc-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pc-service-item {
  border-top: 1px solid rgba(245,241,232,0.15);
  padding-top: 20px;
}
.pc-service-item h4 { font-family: var(--font-serif); font-size: 18px; color: #F5F1E8; margin-bottom: 8px; }
.pc-service-item p { font-size: 14px; color: rgba(245,241,232,0.5); line-height: 1.65; }

/* ─── CONTACT CTA ─── */
.cta-section {
  padding: var(--pad-v) 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 480px; margin: 0 auto 32px; }

/* ─── WHO I WORK WITH ─── */
.section-bg-light {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.who-card {
  padding: 20px 22px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.who-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ─── WHAT HAPPENS NEXT ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  text-align: center;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.step-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}
.step-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}

/* ─── ABOUT PAGE ─── */
.about-bio {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}
.about-bio p + p { margin-top: 20px; }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.credential-item {
  padding: 20px 22px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.credential-item {
  transition: border-left-color 0.2s, background 0.2s;
}
.credential-item:hover {
  background: var(--bg-card);
  border-left-color: var(--accent-lt);
}
.credential-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.credential-item span {
  font-size: 12px;
  color: var(--text-faint);
}

/* ─── SERVICES PAGE ─── */
.service-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}
.service-block:last-child { border-bottom: none; }
.service-meta { padding-top: 4px; }
.service-duration {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
  display: block;
}
.service-mode {
  font-size: 11px;
  color: var(--accent);
  font-weight: 400;
}
.service-content h3 { font-size: 26px; margin-bottom: 14px; }
.service-content p { line-height: 1.8; margin-bottom: 16px; }
.waitlist-notice {
  background: #FFF8F4;
  border: 1px solid #F0C9B0;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: #7A4030;
  margin: 16px 0 20px;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.therapy-item {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 24px;
}
.therapy-item h4 { font-size: 17px; margin-bottom: 10px; }
.therapy-item p { font-size: 14px; line-height: 1.75; }

.help-with-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.help-with-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  min-height: 36px;
  display: flex;
  align-items: flex-end;
}
.help-with-col ul {
  list-style: none;
}
.help-with-col ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.help-with-col ul li::before {
  content: '—';
  color: var(--border);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FEES PAGE ─── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.fees-table th {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--border);
}
.fees-table td {
  padding: 16px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  vertical-align: top;
}
.fees-table td:first-child { color: var(--text); font-weight: 400; }
.fees-table tr:last-child td { border-bottom: none; }
.fee-amount {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.fee-note { font-size: 12px; color: var(--text-faint); margin-top: 4px; }

.policy-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.policy-block {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 28px;
}
.policy-block h4 { font-size: 18px; margin-bottom: 12px; }
.policy-block p { font-size: 14px; line-height: 1.75; }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.3s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 1200px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; line-height: 1.8; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer ul { list-style: none; padding: 0; }
.faq-answer ul li { padding: 4px 0; font-size: 15px; color: var(--text-muted); padding-left: 16px; position: relative; }
.faq-answer ul li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }

/* ─── ORGANIZATIONS PAGE ─── */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.org-service {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 32px;
}
.org-service-num {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin-bottom: 16px;
}
.org-service h3 { font-size: 21px; margin-bottom: 12px; }
.org-service p { font-size: 14px; line-height: 1.75; }

.clients-strip {
  background: var(--bg-dark);
  padding: 32px var(--pad-h);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
  display: block;
}
.clients-list {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ─── CLIENTS TICKER ─── */
.clients-ticker {
  background: var(--bg-dark);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-ticker .clients-label {
  display: block;
  margin-bottom: 16px;
  padding: 0 var(--pad-h);
}
.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 32s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 20px;
}
.ticker-sep {
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  font-size: 11px;
  padding: 0 4px;
  user-select: none;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CLIENTS GRID ─── */
.clients-section {
  background: var(--bg-dark);
  padding: 48px var(--pad-h);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-section .clients-label {
  display: block;
  text-align: center;
  margin-bottom: 32px;
}
.clients-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.client-card {
  border: 1px solid var(--border);
  border-top: 2px solid rgba(176, 106, 74, 0.3);
  padding: 20px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  text-align: center;
  transition: border-top-color 0.25s ease, background 0.25s ease;
}
.client-card:hover {
  border-top-color: var(--accent);
  background: rgba(255,255,255,0.03);
}
.client-card span {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CONTACT FORM ─── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9E95' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-note {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
  margin-top: 16px;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}
.legal-content h2 { font-size: 26px; margin: 40px 0 16px; }
.legal-content h3 { font-size: 18px; margin: 28px 0 12px; font-family: var(--font-sans); font-weight: 500; color: var(--text); }
.legal-content p + p { margin-top: 14px; }
.legal-content ul { padding-left: 20px; margin-top: 12px; }
.legal-content ul li { margin-bottom: 6px; }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  :root { --pad-h: 32px; --pad-v: 56px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    gap: 16px;
    z-index: 99;
  }

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

  .hero-image-block {
    min-height: 360px;
    background-position: center 20%;
  }

  .services-strip-inner { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  .section-2col { grid-template-columns: 1fr; }

  .pc-banner-inner { grid-template-columns: 1fr; }
  .pc-services { grid-template-columns: 1fr 1fr; }

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

  .service-block { grid-template-columns: 1fr; gap: 20px; }
  .service-meta { padding-bottom: 4px; }

  .therapy-grid { grid-template-columns: 1fr; }
  .help-with-grid { grid-template-columns: 1fr; }

  .policy-blocks { grid-template-columns: 1fr; }

  .org-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .who-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .step-item p { margin: 0; }

  /* Allow hero CTAs to wrap on narrow screens — nowrap risks overflow */
  .hero-ctas { flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .site-footer { margin-top: 56px; }

  /* Hide nav CTA — accessible via hamburger menu */
  .nav-cta { display: none; }
  .nav-mobile-only { display: list-item; }

  /* Prevent iOS auto-zoom on form inputs */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
}

@media (max-width: 600px) {
  :root { --pad-h: 20px; --pad-v: 44px; }
  .pc-services { grid-template-columns: 1fr; }
  .site-footer { margin-top: 40px; }
}

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed;
  bottom: max(1.75rem, calc(env(safe-area-inset-bottom) + 1rem));
  right: 1.75rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  z-index: 190;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.07); box-shadow: 0 5px 18px rgba(0,0,0,0.25); text-decoration: none; }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ─── DARK MODE ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:         #1C2420;
    --bg-light:   #202C27;
    --bg-dark:    #171E1B;
    --bg-card:    #1F2B25;
    --border:     #2C3D37;
    --text:       #E8E4DE;
    --text-muted: #9BB0A8;
    --text-faint: #5A7268;
    --accent:     #C97B56;
    --accent-lt:  #D4956E;
    --white:      #FFFFFF;
    --green:      #141A17;
    --green-mid:  #1F2A24;
  }

  /* Form inputs — override white background */
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--border);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-faint);
  }

  /* Primary button — use accent so it's visible on dark bg */
  .btn-primary {
    background: var(--accent);
    color: var(--white);
  }
  .btn-primary:hover { opacity: 0.88; }

  /* Outline button — border was using --green which is now very dark */
  .btn-outline {
    border-color: var(--border);
    color: var(--text);
  }
  .btn-outline:hover {
    background: var(--bg-card);
    color: var(--text);
    border-color: var(--text-muted);
  }

  /* Waitlist notice — hardcoded warm-cream colors in base CSS */
  .waitlist-notice {
    background: #1E1510;
    border-color: #4A2E1A;
    color: var(--text-muted);
  }

  /* Navigation — text color on links */
  .nav-links a { color: var(--text-muted); }
  .nav-links a:hover { color: var(--text); }
  .nav-cta { color: var(--text); border-color: var(--border); }

  /* PC banner — shift to a distinctly greener dark so it stays visible against the warm-dark page */
  .pc-banner { background: #2C3B35; }
  /* Override the global btn-outline dark mode rule inside the banner — keep PC's cream styling */
  .pc-banner .btn-outline { border-color: rgba(245,241,232,0.35); color: #F5F1E8; }
  .pc-banner .btn-outline:hover { background: rgba(245,241,232,0.08); border-color: #F5F1E8; color: #F5F1E8; }

  /* Client cards — border-top hardcoded rgba needs dark mode refresh */
  .client-card { border-top-color: rgba(201, 123, 86, 0.35); }
}

