/* ============================================================
   HUMAN LOOP SERVICES — DESIGN SYSTEM
   Modernist Spread · Inter Tight + IBM Plex Mono
   ivory · sand · teal · sienna · black
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --ivory: #faf6ed;
  --sand: #e3d9c4;
  --sand-deep: #d3c8b0;
  --teal: #1a4d4f;
  --teal-deep: #0c3a40;
  --black: #0a0a0a;
  --cool-gray: #6e6961;
  --sienna: #c25d36;
  --sienna-deep: #984525;
  --ink: #0a0a0a;
  --ink-on-dark: #faf6ed;
  --ink-muted-dark: rgba(250, 246, 237, 0.78);
  --ink-muted-light: #54504a;
  --rule: #b8aea0;
  --max: 1180px;
  --display: "Inter Tight", -apple-system, sans-serif;
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.55;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ===== NAV ===== */
nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  text-decoration: none;
}
.brand-svg {
  display: block;
  flex-shrink: 0;
  color: var(--teal);
}
footer .brand-svg { color: var(--ivory); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.035em;
  color: var(--black);
}
footer .brand-name { color: var(--ivory); }
.brand-tag {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  color: var(--sienna);
  letter-spacing: 0.14em;
  margin-top: 5px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a:not(.btn) { transition: color 0.12s ease; }
.nav-links a:not(.btn):hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0;
  border: 1.5px solid var(--black);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--teal); border-color: var(--teal); }
.btn-teal { background: var(--teal); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); }
.btn-sienna { background: var(--sienna); border-color: var(--sienna); }
.btn-sienna:hover { background: var(--sienna-deep); border-color: var(--sienna-deep); }
.btn-ghost-light {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-ghost-light:hover { background: var(--black); color: var(--ivory); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid var(--ivory);
}
.btn-ghost-dark:hover { background: var(--ivory); color: var(--black); }

/* ===== TYPOGRAPHY ===== */
.section-num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.034em;
  margin-bottom: 24px;
  max-width: 800px;
}
.section-title em { font-style: italic; font-weight: 600; }
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
}
.section-header { margin-bottom: 64px; }
.text-mono { font-family: var(--mono); }

/* ===== SECTIONS ===== */
section { padding: 110px 0; }

.section-black {
  background: var(--black);
  color: var(--ink-on-dark);
}
.section-black .section-num,
.section-black .section-eyebrow,
.section-black .section-title em { color: var(--sienna); }
.section-black .section-lede { color: var(--ink-muted-dark); }

.section-sand { background: var(--sand); }
.section-sand .section-num,
.section-sand .section-eyebrow,
.section-sand .section-title em { color: var(--teal); }
.section-sand .section-lede { color: var(--ink-muted-light); }

.section-teal {
  background: var(--teal);
  color: var(--ink-on-dark);
}
.section-teal .section-num,
.section-teal .section-eyebrow,
.section-teal .section-title em { color: var(--sienna); }
.section-teal .section-lede { color: rgba(250, 246, 237, 0.85); }

.section-ivory { background: var(--ivory); }
.section-ivory .section-num,
.section-ivory .section-eyebrow,
.section-ivory .section-title em { color: var(--teal); }
.section-ivory .section-lede { color: var(--ink-muted-light); }

/* ===== HERO ===== */
.hero {
  background: var(--ivory);
  padding: 100px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-grid.single { grid-template-columns: 1fr; }
.hero-issue {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  letter-spacing: 0.04em;
}
.hero-issue .divider {
  height: 1px; flex: 1;
  background: var(--cool-gray);
  max-width: 100px;
}
.hero-issue .accent { color: var(--sienna); }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.038em;
  color: var(--black);
  margin-bottom: 36px;
}
.hero h1 em { font-style: italic; font-weight: 600; color: var(--teal); }
.hero h1 .sienna { color: var(--sienna); }
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted-light);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  letter-spacing: 0.04em;
}
.hero-meta strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ===== HERO SHAPES + PORTRAIT ===== */
.hero-shapes { position: relative; height: 460px; }
.shape { position: absolute; }
.hero-portrait {
  position: absolute;
  width: 240px;
  height: 320px;
  top: 60px;
  right: 0;
  background: var(--teal);
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.portrait-label {
  position: absolute;
  bottom: -52px;
  right: 0;
  width: 240px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.portrait-label strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.portrait-label .role {
  color: var(--sienna);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
}
.shape-rect-sand { width: 120px; height: 160px; background: var(--sand); bottom: 80px; right: 200px; }
.shape-circle-sienna { width: 70px; height: 70px; background: var(--sienna); border-radius: 50%; top: 20px; right: 80px; z-index: 2; }
.shape-rule-black { width: 100px; height: 2px; background: var(--black); top: 180px; left: 40px; }
.shape-text-mark {
  position: absolute;
  top: 240px;
  left: 30px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  max-width: 150px;
  line-height: 1.5;
}
.shape-text-mark .underline {
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
}

/* ===== PROBLEM CARDS ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--sienna);
}
.problem-card {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid rgba(194, 93, 54, 0.3);
  border-right: 1px solid rgba(194, 93, 54, 0.3);
}
.problem-card:nth-child(2n) {
  padding-right: 0;
  padding-left: 32px;
  border-right: none;
}
.problem-card:nth-last-child(-n+2) { border-bottom: none; }
.problem-num {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--sienna);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.problem-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.18;
  margin-bottom: 12px;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 16px;
  color: var(--ink-muted-dark);
  line-height: 1.65;
}

/* ===== SERVICES GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--ivory);
  padding: 32px 26px;
  transition: background 0.15s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { background: var(--sand); }
.service-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  margin-bottom: 18px;
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.service-card.tag-sienna .service-tag { color: var(--sienna); border-color: var(--sienna); }
.service-card.tag-black .service-tag { color: var(--black); border-color: var(--black); }
.service-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-muted-light);
  line-height: 1.6;
}
.service-card .service-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.02em;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.team-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.team-card {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
}
.team-photo {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: var(--teal);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.team-info { padding: 20px 22px 24px; }
.team-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--sienna);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.team-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.team-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--ink-muted-light);
  line-height: 1.55;
}

/* ===== DETAIL PAGE ELEMENTS ===== */
.deliverables-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--sienna);
}
.deliverables-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(194, 93, 54, 0.3);
}
.deliverables-list li:last-child { border-bottom: none; }
.deliverables-list .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--sienna);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.deliverables-list .item {
  font-size: 16px;
  line-height: 1.6;
}
.deliverables-list .item strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.022em;
  margin-bottom: 6px;
  color: var(--ink);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.process-step {
  background: var(--ivory);
  padding: 32px 26px;
}
.process-step .step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--sienna);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.process-step p {
  font-size: 14.5px;
  color: var(--ink-muted-light);
  line-height: 1.6;
}
.process-step .step-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cool-gray);
  letter-spacing: 0.06em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* ===== ENGAGEMENT FORMATS ===== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.format-card {
  background: var(--ivory);
  padding: 36px 28px;
}
.format-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 18px;
  background: var(--sienna);
  color: var(--ivory);
}
.format-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
  color: var(--ink);
}
.format-card p {
  font-size: 15px;
  color: var(--ink-muted-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.format-card .format-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cool-gray);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.04em;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 130px 0;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.036em;
  max-width: 880px;
  margin: 0 auto 28px;
  color: var(--ivory);
}
.final-cta h2 em { font-style: italic; font-weight: 600; color: var(--sienna); }
.final-cta p {
  font-size: 19px;
  color: rgba(250, 246, 237, 0.82);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BRIDGE TO GOVERNMY ===== */
.bridge {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--black);
  color: var(--ink-on-dark);
  padding: 56px;
}
.bridge-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 18px;
}
.bridge h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.bridge h3 em { font-style: italic; color: var(--sienna); }
.bridge p {
  font-size: 15px;
  color: rgba(250, 246, 237, 0.7);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--ink-on-dark);
  padding: 80px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}
.footer-brand-block { max-width: 320px; }
.footer-brand-block .brand { color: var(--ivory); margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(250, 246, 237, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-tagline a {
  color: var(--sienna);
  border-bottom: 1px solid var(--sienna);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--sienna);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(250, 246, 237, 0.7);
  padding: 5px 0;
  transition: color 0.12s ease;
}
.footer-col a:hover { color: var(--ivory); }
.partnership-band {
  border-top: 1px solid rgba(250, 246, 237, 0.1);
  padding: 36px 32px 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.band-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--sienna);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
}
.band-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.band-logos a {
  display: block;
  transition: opacity 0.2s ease;
  opacity: 0.55;
}
.band-logos a:hover {
  opacity: 1;
}
.band-logos img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 237, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(250, 246, 237, 0.4);
  letter-spacing: 0.04em;
  max-width: var(--max);
  margin: 24px auto 0;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-bottom a { color: rgba(250, 246, 237, 0.6); }
.footer-bottom a:hover { color: var(--ivory); }

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-shapes { height: 320px; }
  .hero-portrait { width: 200px; height: 280px; }
  .portrait-label { width: 200px; }
  .shape-rect-sand { width: 80px; height: 100px; }
  .shape-circle-sienna { width: 50px; height: 50px; }
  .problem-grid, .service-grid, .format-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .team-grid.cols-4 { grid-template-columns: 1fr; }
  .problem-card, .problem-card:nth-child(2n) {
    padding: 24px 0;
    border-right: none;
  }
  .problem-card:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(194, 93, 54, 0.3);
  }
  .problem-card:last-child { border-bottom: none; }
  .deliverables-list li { grid-template-columns: 1fr; gap: 8px; }
  .bridge { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  section { padding: 64px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partnership-band { padding: 28px 20px 24px; }
  .band-logos { gap: 32px; }
  .band-logos img { height: 22px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 520px) {
  .container, .nav-inner, .footer-inner, .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== PRINT ===== */
@media print {
  body { background: #fff; color: #000; }
  nav, footer, .hero-shapes { display: none; }
  section { padding: 24px 0; page-break-inside: avoid; }
}

/* ============================================================
   CONTACT / INTAKE FORM
   ============================================================ */
.intake-section { padding: 80px 0 96px; background: var(--ivory); }
.intake-section .container { max-width: 760px; }
.intake-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sienna-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.intake-section h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}
.intake-section h1 em { font-style: italic; font-weight: 400; }
.intake-section .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-muted-light);
  margin-bottom: 48px;
  max-width: 560px;
}
.intake-form { display: grid; gap: 24px; }
.intake-row { display: grid; gap: 8px; }
.intake-row.two-col { grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .intake-row.two-col { grid-template-columns: 1fr; gap: 12px; } }
.intake-row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}
.intake-row label .req { color: var(--sienna-deep); margin-left: 2px; }
.intake-row label .help {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-muted-light);
  margin-top: 2px;
}
.intake-row input[type="text"],
.intake-row input[type="email"],
.intake-row textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--black);
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
}
.intake-row input:focus, .intake-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 77, 79, 0.15);
}
.intake-row textarea { min-height: 110px; resize: vertical; }
.engagement-grid { display: grid; gap: 12px; }
.engagement-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}
.engagement-card:has(input:checked) {
  border-color: var(--teal);
  background: rgba(26, 77, 79, 0.05);
}
.engagement-card input { margin-top: 4px; flex-shrink: 0; }
.engagement-card-body { flex: 1; }
.engagement-card-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--black);
}
.engagement-card-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted-light);
  line-height: 1.55;
  display: block;
}
.engagement-card-desc em {
  display: block;
  margin-top: 4px;
  font-style: italic;
  color: var(--cool-gray);
  font-size: 12px;
}
.intake-submit { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.intake-submit button {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
  cursor: pointer;
  transition: background 0.15s ease;
}
.intake-submit button:hover { background: var(--teal-deep); }
.intake-submit button:disabled { background: var(--cool-gray); border-color: var(--cool-gray); cursor: not-allowed; }
.intake-message {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid var(--rule);
  background: #fff;
}
.intake-message.success { border-left-color: var(--teal); background: #e7f0f0; color: var(--teal-deep); }
.intake-message.error { border-left-color: var(--sienna); background: #fbe8e0; color: var(--sienna-deep); }
.intake-privacy {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted-light);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.intake-privacy a { color: var(--sienna-deep); text-decoration: underline; }

.intake-success-panel {
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 4px solid var(--teal);
  text-align: center;
}
.intake-success-panel h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--black);
}
.intake-success-panel p { font-size: 16px; line-height: 1.6; color: var(--ink-muted-light); margin-bottom: 24px; }
.intake-success-panel .btn { display: inline-block; }

