.vmg-intake {
  --vmg-sage: #d2e3d7;
  --vmg-sage-light: #edf4ee;
  --vmg-forest: #285b3b;
  --vmg-forest-dark: #1d452e;
  --vmg-ink: #28352d;
  --vmg-muted: #63736a;
  --vmg-line: #d9e3dc;
  --vmg-white: #fff;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(22px, 5vw, 64px) 18px;
  background: var(--vmg-sage);
  color: var(--vmg-ink);
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.52;
}
.vmg-intake *, .vmg-intake *::before, .vmg-intake *::after { box-sizing: border-box; }
.vmg-intake [hidden] { display: none !important; }
.vmg-intake button, .vmg-intake input, .vmg-intake textarea { font: inherit; }
.vmg-intake button { cursor: pointer; }
.vmg-intake-shell {
  max-width: 900px;
  margin: auto;
  background: var(--vmg-white);
  border: 1px solid rgba(40, 91, 59, .10);
  border-radius: 22px;
  box-shadow: 0 20px 58px rgba(26, 57, 36, .09);
  overflow: hidden;
}
.vmg-intake-header { padding: clamp(27px, 5vw, 52px) clamp(24px, 6vw, 64px) 29px; }
.vmg-intake-header .vmg-eyebrow {
  margin: 0 0 12px;
  color: var(--vmg-forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.vmg-intake-header h2 {
  margin: 0 0 12px;
  color: var(--vmg-ink);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.vmg-intake-header p:last-child { max-width: 630px; margin: 0; color: var(--vmg-muted); font-size: 15px; }
.vmg-loading { padding: 22px 64px 46px; color: var(--vmg-muted); }
.vmg-intake.is-enhanced .vmg-loading { display: none; }
.vmg-intake:not(.is-enhanced) .vmg-tabs,
.vmg-intake:not(.is-enhanced) .vmg-flow { display: none; }
.vmg-tabs { display: flex; gap: 7px; padding: 0 clamp(24px, 6vw, 64px); border-bottom: 1px solid var(--vmg-line); }
.vmg-tabs button {
  position: relative;
  flex: 1;
  min-height: 72px;
  padding: 12px 14px 15px;
  color: var(--vmg-muted);
  border: 0;
  border-radius: 9px 9px 0 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: color .2s ease, background-color .2s ease;
}
.vmg-tabs button span { display: block; margin-top: 3px; font-size: 11px; font-weight: 500; }
.vmg-tabs button[aria-selected="true"] { color: var(--vmg-forest-dark); background: var(--vmg-sage-light); }
.vmg-tabs button[aria-selected="true"]::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--vmg-forest); content: ""; }
.vmg-tabs button:hover { color: var(--vmg-forest-dark); }
.vmg-flow { padding: 37px clamp(24px, 6vw, 64px) 47px; }
.vmg-flow-intro h3 { margin: 0 0 5px; color: var(--vmg-ink); font-size: 23px; font-weight: 600; line-height: 1.2; }
.vmg-flow-intro p { margin: 0 0 26px; color: var(--vmg-muted); font-size: 14px; }
.vmg-progress { margin-bottom: 38px; }
.vmg-progress-label { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--vmg-forest); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.vmg-progress-track { height: 6px; overflow: hidden; border-radius: 20px; background: var(--vmg-sage-light); }
.vmg-progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--vmg-forest); transition: width .28s ease; }
.vmg-step-heading { display: flex; align-items: flex-start; gap: 17px; margin-bottom: 27px; }
.vmg-step-number { display: grid; flex: 0 0 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--vmg-sage-light); color: var(--vmg-forest); font-size: 11px; font-weight: 700; }
.vmg-step-heading h4 { margin: 0 0 5px; color: var(--vmg-ink); font-size: clamp(23px, 3vw, 30px); font-weight: 600; line-height: 1.2; letter-spacing: -.025em; }
.vmg-step-heading p { margin: 0; color: var(--vmg-muted); font-size: 14px; }
.vmg-fields { display: grid; gap: 24px; }
.vmg-field { min-width: 0; }
.vmg-field label:not(.vmg-choice), .vmg-field legend { display: block; margin: 0 0 8px; color: var(--vmg-ink); font-size: 14px; font-weight: 700; line-height: 1.4; }
.vmg-field fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.vmg-field .vmg-required { color: var(--vmg-forest); }
.vmg-hint { margin: -2px 0 9px; color: var(--vmg-muted); font-size: 12px; font-weight: 400; }
.vmg-field input:not([type="checkbox"]):not([type="radio"]), .vmg-field textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--vmg-line);
  border-radius: 9px;
  outline: 0;
  background: var(--vmg-white);
  box-shadow: none;
  color: var(--vmg-ink);
  font-size: 15px;
  line-height: 1.45;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vmg-field textarea { min-height: 104px; resize: vertical; }
.vmg-field input:not([type="checkbox"]):not([type="radio"]):focus, .vmg-field textarea:focus {
  border-color: var(--vmg-forest);
  box-shadow: 0 0 0 3px rgba(40, 91, 59, .14);
}
.vmg-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.vmg-choice { display: block; position: relative; margin: 0; cursor: pointer; }
.vmg-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.vmg-choice span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--vmg-line);
  border-radius: 9px;
  background: var(--vmg-white);
  color: var(--vmg-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color .2s ease, background-color .2s ease;
}
.vmg-choice span::before { display: block; flex: 0 0 17px; width: 17px; height: 17px; margin-right: 10px; border: 1.5px solid #9eafa2; border-radius: 5px; content: ""; }
.vmg-choice input[type="radio"] + span::before { border-radius: 50%; }
.vmg-choice input:checked + span { border-color: var(--vmg-forest); background: var(--vmg-sage-light); color: var(--vmg-forest-dark); }
.vmg-choice input:checked + span::before { border-color: var(--vmg-forest); background: var(--vmg-forest); box-shadow: inset 0 0 0 4px var(--vmg-sage-light); }
.vmg-choice input[type="checkbox"]:checked + span::before { background: var(--vmg-forest); box-shadow: none; color: #fff; content: "✓"; font-size: 12px; font-weight: 700; line-height: 15px; text-align: center; }
.vmg-choice input:focus-visible + span, .vmg-tabs button:focus-visible, .vmg-button:focus-visible, .vmg-intake-footer a:focus-visible { outline: 3px solid rgba(40, 91, 59, .42); outline-offset: 3px; }
.vmg-choice:hover span { border-color: #a3bda9; }
.vmg-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 37px; padding-top: 25px; border-top: 1px solid var(--vmg-line); }
.vmg-action-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.vmg-save-note { max-width: 190px; color: var(--vmg-muted); font-size: 11px; line-height: 1.3; text-align: right; }
.vmg-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 47px; padding: 11px 20px; border-radius: 7px; font-size: 13px; font-weight: 700; line-height: 1.2; white-space: nowrap; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.vmg-button:hover { transform: translateY(-1px); }
.vmg-button:disabled { opacity: .7; cursor: progress; transform: none; }
.vmg-button-primary { border: 1px solid var(--vmg-forest); background: var(--vmg-forest); color: #fff; }
.vmg-button-primary:hover { border-color: var(--vmg-forest-dark); background: var(--vmg-forest-dark); color: #fff; }
.vmg-button-quiet { border: 1px solid var(--vmg-line); background: #fff; color: var(--vmg-forest); }
.vmg-button-quiet:hover { background: var(--vmg-sage-light); }
.vmg-form-message { margin-top: 18px; padding: 13px 16px; border: 1px solid #e8b6b0; border-radius: 8px; background: #fff5f3; color: #8e3129; font-size: 13px; }
.vmg-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.vmg-review { display: grid; gap: 20px; }
.vmg-review-group { padding: 20px 21px; border: 1px solid var(--vmg-line); border-radius: 11px; background: #fbfdfb; }
.vmg-review-group h5 { margin: 0 0 13px; color: var(--vmg-forest); font-size: 15px; font-weight: 700; }
.vmg-review-row { display: grid; grid-template-columns: minmax(145px, .8fr) minmax(0, 1.6fr); gap: 16px; padding: 9px 0; border-top: 1px solid var(--vmg-line); font-size: 12px; overflow-wrap: anywhere; }
.vmg-review-row strong { font-weight: 600; }
.vmg-review-row span { white-space: pre-line; color: var(--vmg-muted); }
.vmg-success { padding: 40px 0 8px; text-align: center; }
.vmg-success-icon { display: grid; width: 60px; height: 60px; margin: 0 auto 20px; place-items: center; border-radius: 50%; background: var(--vmg-sage-light); color: var(--vmg-forest); font-size: 26px; }
.vmg-success h3 { margin: 0 0 9px; color: var(--vmg-ink); font-size: 27px; font-weight: 600; }
.vmg-success p { margin: 0 0 27px; color: var(--vmg-muted); font-size: 14px; }
.vmg-intake-footer { padding: 17px clamp(24px, 6vw, 64px) 24px; border-top: 1px solid var(--vmg-line); color: var(--vmg-muted); font-size: 11px; }
.vmg-intake-footer a { color: var(--vmg-forest); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 600px) {
  .vmg-intake { padding: 14px 10px; }
  .vmg-intake-shell { border-radius: 15px; }
  .vmg-intake-header { padding-bottom: 22px; }
  .vmg-tabs { gap: 0; }
  .vmg-tabs button { min-height: 65px; padding: 10px 7px 12px; font-size: 12px; }
  .vmg-tabs button span { font-size: 10px; }
  .vmg-flow { padding-top: 29px; padding-bottom: 32px; }
  .vmg-progress { margin-bottom: 30px; }
  .vmg-step-heading { gap: 11px; }
  .vmg-step-number { flex-basis: 32px; height: 32px; }
  .vmg-choice-grid { grid-template-columns: 1fr; }
  .vmg-actions { align-items: stretch; flex-wrap: wrap; }
  .vmg-action-right { flex: 1; justify-content: flex-end; gap: 10px; }
  .vmg-save-note { display: none; }
  .vmg-review-row { grid-template-columns: 1fr; gap: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .vmg-intake *, .vmg-intake *::before, .vmg-intake *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
