/* ============================================================
   PPSN — Contact Page CSS
   Uses shared tokens from style.css
   ============================================================ */

#page-contact .contact-card {
  background: white;
  border: 1px solid var(--rule);
  padding: var(--sp-xl);
  height: 100%;
}

#page-contact .cc-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-tint-bg);
  border: 1px solid var(--gold-tint-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-bottom: var(--sp-md);
}

#page-contact .cc-label {
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-md);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .2rem;
}

#page-contact .cc-val {
  font-size: var(--fs-lg);
  color: var(--ink);
  font-weight: 500;
}

#page-contact .cc-sub {
  font-size: var(--fs-md);
  color: var(--mid);
  font-weight: 300;
}

#page-contact .ct-link {
  color: var(--ink);
  text-decoration: none;
}

/* ── FORM ── */
#page-contact .form-label-ppsn {
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-sm);
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: var(--sp-xs);
  display: block;
}

#page-contact .form-control-ppsn {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 0;
  color: var(--ink);
  padding: .75rem 1rem;
  font-family: var(--ff);
  font-size: var(--fs-base);
  transition: border-color var(--tr-base);
}

#page-contact .form-control-ppsn:focus {
  border-color: var(--gold);
  box-shadow: none;
}

#page-contact .form-control-ppsn::placeholder {
  color: var(--ink);
  opacity: 1;
}

/* ── MAP ── */
#page-contact .map-box {
  background: var(--paper);
  border: 1px solid var(--rule);
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

#page-contact .map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
