:root {
    --navy: #2d2b5e;
    --pink: #e8426a;
    --blue: #29b6e8;
    --light-pink: #fde8ee;
    --light-blue: #e8f7fd;
    --bg: #fafaf9;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --text: #1a1a2e;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 88px;
    box-shadow: 0 2px 12px rgba(45,43,94,0.07);
  }

  .nav-logo img, .nav-logo canvas {
    height: 72px;
    width: auto;
    display: block;
  }

  .nav-links {
    display: flex; gap: 2rem; list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--pink); }

  .nav-cta {
    background: var(--pink);
    color: white !important;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover {
    background: #c73059 !important;
    color: white !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    align-items: stretch;
  }

  .hero-left {
    background: var(--navy);
    padding: 5rem 5% 5rem 7%;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,66,106,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-left::after {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(41,182,232,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(232,66,106,0.15);
    color: var(--pink);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
    border: 1px solid rgba(232,66,106,0.25);
  }

  .hero-h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--blue);
  }

  .hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--pink);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(232,66,106,0.35);
  }

  .btn-primary:hover {
    background: #c73059;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,66,106,0.45);
  }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid rgba(255,255,255,0.35);
  }

  .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
  }

 .hero-right {
    position: relative;
    overflow: hidden;
    min-height: 100%;
  }

  .hero-img-placeholder {
    position: absolute;
    inset: 0;
  }

  .hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ── STAT BAR ── */
  .stat-bar {
    background: var(--navy);
    padding: 1.5rem 7%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .stat-item {
    padding: 0.5rem;
  }

  .stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--blue);
    display: block;
    line-height: 1;
  }

  .stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  /* ── SECTION COMMONS ── */
  section { padding: 5rem 7%; }

  .section-tag {
    display: inline-block;
    background: var(--light-pink);
    color: var(--pink);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-tag.blue {
    background: var(--light-blue);
    color: #0a8ab5;
  }

  .section-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3rem;
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    opacity: 0;
    transition: opacity 0.2s;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45,43,94,0.1);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* ── WHO WE SERVE ── */
  .who-serve {
    background: linear-gradient(135deg, #f7f5ff 0%, #fde8ee 50%, #e8f7fd 100%);
    border-radius: 32px;
    padding: 4rem;
    margin: 0 7% 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .serve-tags {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem;
  }

  .serve-tag {
    background: white;
    color: var(--navy);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(45,43,94,0.12);
    box-shadow: 0 2px 8px rgba(45,43,94,0.06);
    transition: all 0.2s;
  }

  .serve-tag:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }

  .serve-right {
    display: flex; flex-direction: column; gap: 1.25rem;
  }

  .serve-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(45,43,94,0.06);
  }

  .serve-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }

  .icon-pink { background: var(--light-pink); }
  .icon-blue { background: var(--light-blue); }

  .serve-feature h4 {
    font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem;
  }

  .serve-feature p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

  /* ── ABOUT ── */
  .about-section {
    background: var(--white);
  }

  /* Default: vertical stacking for mobile/tablets */
.about-inner {
  display: flex;
  flex-direction: column; /* vertical on small screens */
  gap: 2rem; /* spacing between card and text */
  align-items: flex-start;
}

/* Desktop / Laptop: horizontal layout */
@media (min-width: 1024px) { /* adjust if needed */
  .about-inner {
    flex-direction: row;           /* horizontal layout */
    justify-content: space-between; /* space between card and text */
    align-items: flex-start;       /* align top edges */
  }

  /* Optional: make the card a fixed width, text takes remaining space */
  .about-inner > div:first-child {
    flex: 0 0 250px; /* card width */
  }

  .about-inner > div:last-child {
    flex: 1; /* text fills remaining space */
  }
}

  .about-avatar {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-pink), var(--light-blue));
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(45,43,94,0.12);
  }

  .about-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
  }

  .credential-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: center; margin-top: 1.25rem;
  }

  .cred-tag {
    background: var(--navy);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .about-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .about-text p {
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  /* ── LOCATIONS ── */
  .locations-section { background: var(--light-gray); }

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .location-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45,43,94,0.1);
  }

  .location-card.virtual {
    border: 2px solid var(--blue);
    background: linear-gradient(135deg, var(--light-blue), white);
  }

  .location-pill {
    display: inline-block;
    background: var(--light-blue);
    color: #0a8ab5;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }

  .location-pill.virtual {
    background: linear-gradient(90deg, var(--pink), var(--blue));
    color: white;
  }

  .location-card h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy); font-size: 1.2rem; margin-bottom: 0.4rem;
  }

  .location-card p { color: var(--gray); font-size: 0.875rem; line-height: 1.6; }

  /* ── INTAKE FORM ── */
  .intake-section {
    background: var(--navy);
    color: white;
  }

  .intake-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
  }

  .intake-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .intake-left p {
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .trust-badges {
    display: flex; flex-direction: column; gap: 0.75rem;
  }

  .trust-badge {
    display: flex; align-items: center; gap: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
  }

  .trust-badge span { font-size: 1.2rem; }

  .form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
  }

  .form-card h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy); font-size: 1.4rem; margin-bottom: 1.5rem;
  }

  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: #fafaf9;
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
  }

  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--pink), #c73059);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(232,66,106,0.35);
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,66,106,0.45);
  }

  .form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.75rem;
  }

  /* ── FOOTER ── */
  footer {
    background: #1a1833;
    color: rgba(255,255,255,0.65);
    padding: 3rem 7% 2rem;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }

  .footer-brand img { height: 40px; margin-bottom: 1rem;  opacity: 0.9; }

  .footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

  .footer-col h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 4rem 7%; }
    .hero-right { display: none; }
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .who-serve { grid-template-columns: 1fr; padding: 2.5rem; margin: 0 0 3rem; border-radius: 0; }
    .about-inner { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .intake-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    /* show mobile menu */
    .nav-mobile-open .nav-links {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 88px;
      left: 0; right: 0;
      background: white;
      padding: 1.5rem 5%;
      gap: 1.25rem;
      box-shadow: 0 8px 24px rgba(45,43,94,0.12);
      z-index: 99;
      border-top: 1px solid #eee;
    }
  }

  @media (max-width: 600px) {
    section { padding: 3.5rem 5%; }
    .services-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .stat-bar { padding: 1.5rem 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
  }

  /* ── BURGER ── */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    z-index: 110;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  @media (max-width: 900px) {
    .burger { display: flex; }
    nav { position: relative; }
  }

  /* ── INTAKE FORM SECTION ── */
  .intake-page-section {
    background: var(--navy);
    padding: 0;
  }

  .intake-page-header {
    background: var(--navy);
    padding: 4rem 7% 3rem;
    position: relative;
    overflow: hidden;
  }

  .intake-page-header::before {
    content: '';
    position: absolute; bottom: -60px; right: 5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,66,106,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }

  .intake-page-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(232,66,106,0.15);
    color: var(--pink);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(232,66,106,0.25);
  }

  .intake-page-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: white; line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .intake-page-header h2 em { font-style: italic; color: var(--blue); }

  .intake-page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem; max-width: 500px; line-height: 1.7;
  }

  .intake-body {
    background: var(--light-gray);
    padding: 4rem 7%;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    align-items: start;
  }

  /* Sidebar */
  .intake-sidebar h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy); font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .intake-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

  .intake-feature {
    display: flex; gap: 0.9rem; align-items: flex-start;
    background: white; padding: 1rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(45,43,94,0.06);
  }

  .intake-feature-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }

  .intake-feature h4 { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.15rem; }
  .intake-feature p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

  .intake-note {
    background: white; border-radius: 14px;
    padding: 1.1rem; font-size: 0.78rem;
    color: var(--gray); line-height: 1.6;
    border-left: 3px solid var(--blue);
  }

  /* Form card */
  .intake-form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 32px rgba(45,43,94,0.08);
    border: 1px solid #eee;
  }

  .intake-form-card h3 {
    font-family: 'DM Serif Display', serif;
    color: var(--navy); font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .intake-form-card .form-subtitle {
    color: var(--gray); font-size: 0.875rem; margin-bottom: 1.75rem;
  }

  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .ifield { margin-bottom: 1rem; }

  .ifield label {
    display: block;
    font-size: 0.78rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.35rem;
    text-transform: uppercase; letter-spacing: 0.04em;
  }

  .ifield input,
  .ifield select,
  .ifield textarea {
    width: 100%;
    padding: 0.72rem 0.95rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit; font-size: 0.9rem;
    color: var(--text); background: #fafaf9;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; appearance: none;
  }

  .ifield input:focus,
  .ifield select:focus,
  .ifield textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(45,43,94,0.08);
    background: white;
  }

  .ifield textarea { resize: vertical; min-height: 80px; }

  .ifield select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem; cursor: pointer;
  }

  .section-label-form {
    font-size: 0.78rem; font-weight: 600;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.75rem;
    margin-top: 0.5rem; display: block;
  }

  .checkbox-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.5rem; margin-bottom: 1.25rem;
  }

  .checkbox-item {
    display: flex; align-items: center; gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.82rem; color: var(--navy); font-weight: 500;
  }

  .checkbox-item:hover { border-color: var(--navy); background: #f7f5ff; }

  .checkbox-item input[type="checkbox"] {
    accent-color: var(--navy);
    width: 15px; height: 15px; flex-shrink: 0; cursor: pointer;
  }

  .consent-row {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 1rem; background: var(--light-blue);
    border-radius: 10px; margin-bottom: 1.5rem;
    border: 1.5px solid rgba(41,182,232,0.2);
  }

  .consent-row input[type="checkbox"] {
    accent-color: var(--navy);
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px; cursor: pointer;
  }

  .consent-row label { font-size: 0.85rem; color: var(--navy); line-height: 1.5; cursor: pointer; }

  .intake-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pink), #c73059);
    color: white; border: none;
    padding: 1rem; border-radius: 12px;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(232,66,106,0.35);
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }

  .intake-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,66,106,0.45);
  }

  .intake-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

  .intake-spinner {
    display: none; width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: white; border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  .intake-submit-btn.loading .intake-spinner { display: block; }

  @keyframes spin { to { transform: rotate(360deg); } }

  .intake-error-alert {
    background: #fef2f2; border: 1.5px solid #fca5a5;
    color: #dc2626; border-radius: 10px;
    padding: 0.85rem 1rem; font-size: 0.875rem;
    margin-bottom: 1rem; display: none;
  }

  /* Success screen */
  #intakeSuccess {
    display: none; padding: 5rem 7%;
    text-align: center; flex-direction: column;
    align-items: center; background: var(--light-gray);
    animation: fadeIn 0.5s ease;
  }

  #intakeSuccess.show { display: flex; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .success-circle {
    width: 84px; height: 84px;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(232,66,106,0.3);
  }

  .success-circle svg {
    width: 38px; height: 38px;
    stroke: white; stroke-width: 3; fill: none;
  }

  #intakeSuccess h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem;
  }

  #intakeSuccess p {
    color: var(--gray); font-size: 1rem;
    max-width: 460px; line-height: 1.7;
    margin: 0 auto 2rem;
  }

  .success-back-btn {
    background: var(--navy); color: white;
    padding: 0.85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(45,43,94,0.2);
  }

  .success-back-btn:hover {
    background: var(--pink); color: white;
    transform: translateY(-2px);
  }

  /* intake responsive */
  @media (max-width: 900px) {
    .intake-body { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5%; }
    .intake-page-header { padding: 3rem 5%; }
  }

  @media (max-width: 600px) {
    .field-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .intake-form-card { padding: 1.75rem; }
  }

  .about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
