/* Contact page — a PORT of the design
   (.local/simoptions.com/Contact-Us.dc.html): a 280px info rail beside a
   three-column form. Declarations are the design's, verbatim; the brand hexes
   resolve through the theme tokens rather than being restated.

   The FIELDS stay the shared `.ff` standard (docs/FORM-GUIDE.md) that the
   checkout and every other storefront form uses — the design draws a top label
   where the standard floats it, and forking the field set for one page is the
   duplication this project explicitly forbids. Everything around the fields —
   grid, spacing, control height, radius, submit — is the design's. */

.contact.section { padding: 64px 24px 90px; background: #fff; }
.contact.section > .container { max-width: 1140px; padding: 0; }

.contact__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  font-size: var(--text-base);
  color: var(--ink-700);
  line-height: 1.7;
}

.contact__info-item i {
  color: var(--color-primary);
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.contact__info-item--strong {
  align-items: center;
  font-size: var(--text-md);
  font-weight: 500;
}

.contact__info-item--strong a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}

/* The design's form grid is three columns: name / name / email on the first
   row, then category (1) + order id (2), then message and submit full-width. */
.contact__form .site-form__grid {
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  row-gap: 22px;
}

@media (max-width: 1024px) {
  .contact__layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact.section { padding: 40px 20px 60px; }
  .contact__form .site-form__grid { grid-template-columns: 1fr; }
}
