/* Desktop auth + account */

.sf-auth {
  padding: 3rem 0 4rem;
  min-height: 60vh;
}
.sf-auth__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.sf-auth__eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-dark, #a8843f);
  margin-bottom: 0.75rem;
}
.sf-auth__aside h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.sf-auth__aside p { color: var(--muted, #6b6570); max-width: 28rem; }
.sf-auth__card {
  background: #fff;
  border: 1px solid var(--line, #e8e2d8);
  padding: 2rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(13, 13, 15, 0.06);
}
.sf-auth__card h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
}
.sf-auth__tease { color: var(--muted, #6b6570); margin: 0 0 1.25rem; font-size: 0.95rem; }
.sf-auth__form { display: grid; gap: 0.9rem; }
.sf-auth__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted, #6b6570);
}
.sf-auth__form input,
.sf-auth__form textarea,
.sf-auth__form select {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line, #e8e2d8);
  border-radius: 8px;
  color: var(--ink, #0d0d0f);
  background: #fff;
}
.sf-auth__pin { letter-spacing: 0.35em !important; font-size: 1.25rem !important; }
.sf-auth__submit { width: 100%; justify-content: center; margin-top: 0.35rem; }
.sf-auth__help, .sf-auth__foot { margin-top: 1rem; font-size: 0.9rem; color: var(--muted, #6b6570); }
.sf-auth__help a, .sf-auth__foot a { color: var(--gold-dark, #a8843f); }

.sf-auth__map {
  display: grid;
  gap: 0.5rem;
  margin: 0.25rem 0 0.35rem;
}
.sf-auth__map-label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted, #6b6570);
}
.sf-auth__map .kf-address-map__search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.sf-auth__map .kf-address-map__search,
.sf-auth__map .kf-address-map__locate {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line, #e8e2d8);
  border-radius: 8px;
  background: #fff;
}
.sf-auth__map .kf-address-map__locate {
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.85rem;
}
.sf-auth__map .kf-address-map__canvas {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  border: 1px solid var(--line, #e8e2d8);
  background: #f3f1ec;
}
.sf-auth__map .kf-address-map__hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted, #6b6570);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

@media (max-width: 860px) {
  .sf-auth__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .sf-auth__aside { text-align: center; }
  .sf-auth__aside p { margin-inline: auto; }
  .sf-auth__map .kf-address-map__search-row { grid-template-columns: 1fr; }
}
