.order-section {
  padding-block: clamp(84px, 10vw, 130px);
}

.order-grid {
  align-items: start;
}

.order-points {
  max-width: 560px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.order-points p {
  display: grid;
  grid-template-columns: 48px 1fr;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  font-size: 0.94rem;
  font-weight: 700;
}

.order-points span {
  color: #c9dcff;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.order-form-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  color: var(--navy);
  box-shadow: 0 24px 60px rgba(6, 26, 51, 0.2);
}

.form-eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-form-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.form-intro {
  margin: 16px 0 28px;
  color: #53647b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid.two-up {
  grid-template-columns: 1fr 1fr;
}

.form-grid.order-fields {
  grid-template-columns: 1fr 120px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(6, 26, 51, 0.28);
  border-radius: 0;
  outline: none;
  background: white;
  color: var(--navy);
  font: inherit;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 87, 216, 0.14);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 22px;
  font-size: 0.88rem;
  line-height: 1.4;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.form-submit {
  width: 100%;
  border: 0;
  background: var(--navy);
  color: white;
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--orange);
  color: var(--navy);
}

.form-fallback {
  margin: 17px 0 0;
  color: #53647b;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.form-fallback a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-success {
  border-color: #16844c;
  background: #e8f7ef;
  color: #0d5c34;
}

.form-error {
  border-color: #c93c2a;
  background: #fff0ed;
  color: #76271d;
}

.form-error ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.field-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 680px) {
  .form-grid.two-up,
  .form-grid.order-fields {
    grid-template-columns: 1fr;
  }

  .quantity-field {
    max-width: 160px;
  }
}

.result-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    radial-gradient(circle at 75% 30%, rgba(7, 87, 216, 0.16), transparent 30rem),
    var(--cream);
}

.result-shell {
  width: min(720px, 100%);
}

.result-mark {
  margin-bottom: 28px;
}

.result-card {
  padding: clamp(34px, 7vw, 72px);
  border-top: 7px solid var(--blue);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(6, 26, 51, 0.17);
}

.result-card h1 {
  max-width: none;
  font-size: clamp(3.4rem, 9vw, 6rem);
}

.result-card > p:not(.section-kicker) {
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.result-card .button {
  margin-top: 30px;
}

.result-card .form-notice {
  margin-top: 28px;
}

.result-fallback a {
  color: var(--blue);
  font-weight: 700;
}
