/* ask.css: the ONE stylesheet for the Ask component (site/ask.js).
   Decided by RJ on 17 Sep 2026 on live-page mockups (agents/marketing/mockups/v3);
   build brief: agents/marketing/2026-09-17-ask-component-build-brief.html.
   Mounted by ONE host element per page (<div id="ask" class="vx-ask" data-ask>),
   never a pasted copy. tests/test_css_class_ownership.py binds .vx-ask to this
   file, so a page that mounts the component without loading it fails the deploy. */

.vx-ask {
  background: #faf9f7;
  border-top: 1px solid #eee9e0;
  border-bottom: 1px solid #eee9e0;
  padding: 64px 48px;
  font-family: 'Roboto', sans-serif;
  color: #12203a;
  box-sizing: border-box;
}
.vx-ask * { box-sizing: border-box; }
.vx-ask .ask-in {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.vx-ask .ask-copy { flex: 1 1 360px; min-width: 0; }
.vx-ask .ask-form { flex: 0 1 440px; min-width: 280px; }
.vx-ask .ask-kick {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #b08d3e;
}
.vx-ask h2 {
  font-family: 'Marcellus', Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  margin: 10px 0 12px;
  color: #12203a;
  letter-spacing: 0;
  text-transform: none;
}
.vx-ask .ask-copy p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #5f5f5f;
  margin: 0 0 12px;
  max-width: 460px;
}
.vx-ask .ask-price {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 18px;
  color: #12203a;
  margin: 16px 0 0;
  line-height: 1.5;
}
.vx-ask .ask-price small {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #5f5f5f;
}
.vx-ask .ask-letter { font-size: 13px; color: #5f5f5f; margin: 14px 0 0; }
.vx-ask .ask-letter a { color: #1a2b4a; font-weight: 500; text-decoration: underline; }

.vx-ask .ask-card {
  background: #fff;
  border: 1px solid #eee9e0;
  border-radius: 8px;
  padding: 24px 26px 20px;
  box-shadow: 0 8px 30px rgba(18, 32, 58, .06);
}
.vx-ask label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #8a8578;
  margin: 12px 0 5px;
}
.vx-ask label:first-child { margin-top: 0; }
.vx-ask .ask-f {
  display: block;
  width: 100%;
  border: 1px solid #d9d3c6;
  border-radius: 4px;
  padding: 11px 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #12203a;
  background: #fff;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.vx-ask .ask-f:focus { outline: 2px solid #b08d3e; outline-offset: 1px; border-color: #b08d3e; }
.vx-ask .ask-f::placeholder { color: #8a8578; opacity: 1; }
.vx-ask textarea.ask-f { height: 88px; resize: vertical; min-height: 88px; }
.vx-ask .ask-send {
  margin-top: 16px;
  width: 100%;
  background: #1a2b4a;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform 150ms, box-shadow 150ms, opacity 150ms;
}
.vx-ask .ask-send:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(18, 32, 58, .18); }
.vx-ask .ask-send:disabled { opacity: .7; cursor: default; transform: none; box-shadow: none; }
.vx-ask .ask-fine {
  font-size: 12px;
  color: #8a8578;
  margin: 12px 0 0;
  line-height: 1.5;
  text-align: center;
}
.vx-ask .ask-err {
  font-size: 13px;
  color: #b12727;
  margin: 10px 0 0;
  line-height: 1.5;
}
.vx-ask .ask-err[hidden] { display: none; }
.vx-ask .ask-err a { color: #b12727; }
.vx-ask .ask-ok {
  padding: 8px 0 4px;
}
.vx-ask .ask-ok .ask-ok-title {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 22px;
  color: #12203a;
  margin: 0 0 8px;
}
.vx-ask .ask-ok p { font-size: 14.5px; line-height: 1.6; color: #5f5f5f; margin: 0; }

@media (max-width: 640px) {
  .vx-ask { padding: 40px 20px; }
  .vx-ask h2 { font-size: 26px; }
  .vx-ask .ask-in { gap: 28px; }
  .vx-ask .ask-form { flex-basis: 100%; min-width: 0; }
  .vx-ask .ask-card { padding: 20px 18px 16px; }
}
