/* ─── Neurodiversity Page Styles ──────────────────────────────────── */

/* ─── Hero ──────────────────────────────────────────────────────── */
.nd-hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}

.nd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 20%, rgba(42,122,122,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 80%, rgba(245,124,32,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.nd-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.nd-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.nd-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 680px;
}

.nd-hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 32px;
}

.nd-hero-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.nd-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nd-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.nd-meta-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.nd-hero-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nd-hero-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ─── What is Neurodiversity-Affirming ─────────────────────────── */
.nd-what {
  background: var(--surface);
  padding: 80px 24px;
}

.nd-what-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nd-what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.nd-what-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 620px;
  margin-bottom: 40px;
}

.nd-what-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.nd-what-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

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

.nd-experience-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 24px;
}

.nd-experience-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.nd-experience-quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 16px;
}

.nd-experience-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── Specialties ───────────────────────────────────────────────── */
.nd-specialties {
  background: var(--bg-warm);
  padding: 80px 24px;
}

.nd-specialties-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nd-specialties-header {
  margin-bottom: 48px;
}

.nd-section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.nd-section-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 12px;
}

.nd-section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

.nd-spec-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.nd-spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
}

.nd-spec-card--adhd::before { background: var(--orange); }
.nd-spec-card--autism::before { background: var(--teal); }
.nd-spec-card--trauma::before { background: var(--teal); }
.nd-spec-card--grief::before { background: var(--orange); }

.nd-spec-card-inner { padding-left: 4px; }

.nd-spec-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.nd-spec-icon { flex-shrink: 0; }

.nd-spec-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.nd-spec-card-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.nd-spec-card-inner p:last-of-type { margin-bottom: 0; }

.nd-spec-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.nd-spec-keywords span {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal-dark);
  background: rgba(42,122,122,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(42,122,122,0.15);
}

.nd-spec-cta {
  display: flex;
  align-items: flex-start;
}

.nd-spec-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nd-spec-btn:hover { background: var(--navy-light); }

/* ─── Philosophy ────────────────────────────────────────────────── */
.nd-philosophy {
  background: linear-gradient(160deg, var(--navy) 0%, #152033 100%);
  padding: 80px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.nd-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(42,122,122,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.nd-philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

.nd-philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 24px;
}

.nd-philosophy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

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

.nd-philosophy-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.nd-credential-item {
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.nd-credential-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.nd-credential-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.nd-philosophy-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.nd-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nd-link:hover { color: #fff; }

/* ─── Sessions ───────────────────────────────────────────────────── */
.nd-sessions {
  background: var(--surface);
  padding: 80px 24px;
}

.nd-sessions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.nd-sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.nd-session-item {
  padding: 28px 24px;
  background: var(--bg-warm);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nd-session-icon { flex-shrink: 0; }

.nd-session-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.nd-session-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* ─── Contact ────────────────────────────────────────────────────── */
.nd-contact {
  background: var(--bg-warm);
  padding: 80px 24px;
  text-align: center;
}

.nd-contact-inner {
  max-width: 700px;
  margin: 0 auto;
}

.nd-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.nd-contact-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}

.nd-contact-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.nd-contact-ways {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
}

.nd-contact-way {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.nd-contact-way-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nd-contact-way-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.nd-contact-way-value:hover { color: var(--teal); }

.nd-contact-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 28px;
  padding: 10px 20px;
  background: rgba(42,122,122,0.08);
  border-radius: 8px;
  border-left: 3px solid var(--teal);
  display: inline-block;
}

.nd-contact-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nd-contact-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ─── Breadcrumb Links Bar ─────────────────────────────────────────── */
.nd-links-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.nd-links-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nd-breadcrumb-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

.nd-breadcrumb-link:hover { color: var(--teal-dark); text-decoration: underline; }

.nd-breadcrumb-sep {
  font-size: 13px;
  color: var(--border);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nd-what-grid { grid-template-columns: 1fr; }
  .nd-philosophy-inner { grid-template-columns: 1fr; }
  .nd-spec-card { grid-template-columns: 1fr; }
  .nd-spec-cta { justify-content: flex-start; }
  .nd-sessions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nd-hero, .nd-what, .nd-specialties, .nd-philosophy,
  .nd-sessions, .nd-contact { padding: 56px 20px; }
  .nd-sessions-grid { grid-template-columns: 1fr 1fr; }
  .nd-hero-meta { gap: 16px; }
}

@media (max-width: 480px) {
  .nd-sessions-grid { grid-template-columns: 1fr; }
  .nd-spec-card { padding: 28px 24px; }
  .nd-hero-headline { font-size: 28px; }
}