/* NASEEM ZORG — ambulante begeleiding jongvolwassenen Limburg */

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

:root {
  --bg: #faf7f0;
  --bg-elev: #ffffff;
  --surface: #f3eee2;
  --surface-2: #ebe4d2;
  --primary: #1f5f54;
  --primary-soft: #2d7a6b;
  --primary-deep: #144039;
  --accent: #c97c5d;
  --accent-soft: #e09b7d;
  --accent-deep: #9e5a3f;
  --ink: #1a2332;
  --ink-soft: #4a5260;
  --muted: #88857a;
  --border: #d8d2c0;
  --border-soft: #ece5d3;
  --gold: #b08d4f;
  --warning: #d4a45c;
  --success: #2d6a4f;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6.4vw, 96px); font-weight: 400; font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(34px, 4.4vw, 60px); font-weight: 500; font-variation-settings: "opsz" 80; }
h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 500; font-variation-settings: "opsz" 36; }
h4 { font-size: clamp(20px, 2vw, 24px); font-weight: 600; }
h5 { font-size: 16px; font-weight: 600; }

.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--primary);
}

/* CONTAINER */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -16px rgba(31,95,84,0.5);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(31,95,84,0.04);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover .arrow { transform: translateX(3px); }

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.logo-tagline {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

@media (max-width: 920px) {
  .nav-links { display: none; }
}

/* HERO */
.hero {
  padding-block: clamp(72px, 10vw, 140px) clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(31,95,84,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 640px;
}
.hero h1 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.trust-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 30px 60px -20px rgba(31,95,84,0.25);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,40,36,0.85));
  pointer-events: none;
  z-index: 1;
}
.hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-quote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: #fff;
}
.hero-quote-text {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 36;
}
.hero-quote-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4 / 3; max-width: 480px; }
}

/* SECTION HEAD */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 { margin-top: 16px; max-width: 18ch; }
.section-head .lead {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
}
@media (max-width: 920px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1080px) {
  .card-grid, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid, .card-grid--4, .card-grid--2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.card:hover {
  background: var(--surface);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.card-icon.accent { background: var(--accent); }
.card h3 {
  font-size: 24px;
  letter-spacing: -0.015em;
}
.card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.card-link {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link::after {
  content: '→';
  transition: transform 0.3s;
}
.card:hover .card-link::after { transform: translateX(4px); }

/* PROCESS STEPS */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 4px solid var(--bg);
}
.process-step:nth-child(2) .process-num { background: var(--accent); }
.process-step:nth-child(3) .process-num { background: var(--primary-soft); }
.process-step:nth-child(4) .process-num { background: var(--primary-deep); }
.process-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.process-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 920px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr; }
}

/* BAND */
.band {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(48px, 8vw, 100px) clamp(32px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(201,124,93,0.3), transparent 60%);
  pointer-events: none;
}
.band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.band h2 { color: #fff; max-width: 18ch; }
.band h2 em { font-style: italic; color: var(--accent-soft); font-weight: 400; }
.band p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 28px;
  max-width: 52ch;
}
.band .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.band .btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.band .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.band .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.band-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px;
  border-radius: var(--r-md);
  margin-top: 16px;
}
.band-stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 80;
}
.band-stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
@media (max-width: 920px) {
  .band-inner { grid-template-columns: 1fr; }
}

/* TESTIMONIAL */
.testimonial-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--serif);
  font-size: 120px;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--ink);
  position: relative;
  z-index: 1;
  font-variation-settings: "opsz" 60;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 600; color: var(--ink); font-size: 15px; }
.testimonial-role { color: var(--muted); font-size: 13px; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: #fff;
  padding-block: 80px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer .logo-name { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,0.6); }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* PAGE HEADER */
.page-header {
  padding-block: clamp(64px, 10vw, 120px) clamp(48px, 6vw, 80px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,124,93,0.12), transparent 60%);
  pointer-events: none;
}
.page-header-content { position: relative; z-index: 1; max-width: 720px; }
.page-header h1 { margin-top: 20px; margin-bottom: 24px; }
.page-header .lead {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}

/* TWO COLUMN PROSE */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.prose-grid h2 { margin-bottom: 16px; }
.prose-grid h3 { margin-top: 28px; margin-bottom: 10px; }
.prose-grid p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.prose-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.prose-grid ul li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.55;
}
.prose-grid ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.2;
}
.prose-grid ul li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 920px) {
  .prose-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* INFO BOX */
.info-box {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-block: 24px;
}
.info-box h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--accent-deep);
}
.info-box p { margin: 0; font-size: 15px; }

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.contact-info-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text { display: flex; flex-direction: column; }
.contact-info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}

.form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 920px) {
  .contact-grid, .form-row { grid-template-columns: 1fr; gap: 32px; }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--bg-elev);
  padding: 28px 32px;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-item:hover { background: var(--surface); }
.faq-q {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q::after {
  content: '+';
  color: var(--primary);
  font-size: 28px;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-a {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.team-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s;
}
.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  margin: 0 auto 20px;
  font-variation-settings: "opsz" 60;
}
.team-name {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.team-bio {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* SELECTION */
::selection { background: var(--primary); color: #fff; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ANIMATIONS */
@keyframes rise {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
