/* ============================================================
   MarketStarter — /contact/ · page styles
   Loaded AFTER /styles.css + /services/service.css.
   Adds: the dark "console" form card, next-steps list,
   alternative-channel lines, slim closing act.
   Root design system untouched.
   ============================================================ */

/* light form act — same stage as the homepage light acts */
.act--form { background: var(--paper); }

/* ---------- next steps (left column) ---------- */
.next-steps { margin-top: 36px; display: grid; gap: 12px; max-width: 30em; }
.next-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: baseline; }
.next-steps .step-n { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--green-text-light); }
.next-steps span { color: var(--ink-muted-strong); font-size: 15px; line-height: 1.6; }

/* ---------- other doors ---------- */
.alt-lines { margin-top: 40px; display: grid; gap: 10px; justify-items: start; }
.alt-lines .mono-label { color: var(--ink-muted); margin-bottom: 2px; }
.alt-line {
  font-weight: 600; font-size: 15.5px; color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.alt-line:hover { border-color: var(--green-hover); color: var(--green-deep); }

/* ---------- the console (form card) ---------- */
.console {
  background: var(--navy); color: var(--on-dark);
  border-radius: var(--r-2xl);
  padding: 26px 26px 24px;
  box-shadow: 0 32px 80px -28px rgba(14, 17, 22, 0.45), 0 0 0 1px rgba(14, 17, 22, 0.9);
  max-width: 520px; margin-inline: auto;
}
.console-head {
  display: flex; align-items: center; gap: 10px;
  color: var(--on-dark-muted);
  padding-bottom: 16px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(233, 236, 239, 0.08);
}

.f { display: grid; gap: 7px; margin-top: 16px; }
.f > label { color: var(--on-dark-faint); }
.f .opt { color: var(--on-dark-faint); font-weight: 400; letter-spacing: 0.05em; margin-left: 4px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
@media (max-width: 440px) { .f-row { grid-template-columns: 1fr; } }

.console input[type="text"],
.console input[type="email"],
.console input[type="tel"],
.console select,
.console textarea {
  width: 100%;
  font: inherit; font-size: 15px; color: var(--on-dark);
  background: var(--ink-deep);
  border: 1px solid rgba(233, 236, 239, 0.13);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.console textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.console ::placeholder { color: var(--on-dark-muted); opacity: 1; }
.console input:focus-visible,
.console select:focus-visible,
.console textarea:focus-visible {
  /* transparent (not none): forced-colors mode repaints it as a visible ring */
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 194, 110, 0.18);
}

/* custom select chevron */
.select-wrap { position: relative; display: block; }
.console select {
  appearance: none; -webkit-appearance: none;
  padding-right: 40px; cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute; right: 15px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--green-bright);
  border-bottom: 2px solid var(--green-bright);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Art. 14 notice — deliberately NOT small print. Sits above the submit button,
   at reading size, with a link the visitor can actually see on the dark card. */
.console-notice {
  margin-top: 22px;
  padding: 13px 15px;
  background: rgba(0, 194, 110, 0.07);
  border: 1px solid rgba(0, 194, 110, 0.22);
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--on-dark);
}
.console-notice a {
  display: inline-block;
  margin-top: 4px;
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.console-notice a:hover { color: var(--on-dark); }

.console-send { width: 100%; justify-content: center; margin-top: 20px; }
.console-send:disabled,
.console-send.is-sending { opacity: 0.6; cursor: wait; translate: none; box-shadow: none; }
.console-foot {
  margin-top: 14px; text-align: center;
  color: var(--on-dark-faint); font-size: 9.5px;
}
.console-privacy {
  margin-top: 8px; text-align: center;
  color: var(--on-dark-muted); font-size: 12px;
}
.console-privacy a {
  color: var(--on-dark-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur) var(--ease);
}
.console-privacy a:hover { color: var(--green-bright); }

/* honeypot — off-screen, never display:none (some bots skip hidden inputs) */
.hp-wrap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

/* the ghost numeral on this page is a glyph, not a number — keep it subtler */
.act--form .act-num { font-size: clamp(120px, 18vw, 260px); opacity: 0.7; }

/* ---------- slim closing act (no giant wordmark here) ---------- */
.close--slim { padding-top: clamp(80px, 10vw, 130px); }
.close--slim h2 { margin-top: 0; }
