/* ===========================================================
   CONTACT — Page CSS (sharp, minimal, consistent with public UI)
   =========================================================== */

.contact-page{
  max-width: var(--public-maxw);
  margin: 0 auto;
  padding: 32px var(--public-pad) 78px;
}

/* HERO */
.contact-hero{
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 0;
}

.contact-hero__inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 30px 24px 22px;
  text-align: center;
}

.contact-hero h1{
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.contact-lede{
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(15,15,16,.72);
}

/* PANEL */
.contact-panel{
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 0;
  padding: 20px 20px 18px;
}

.contact-panel__head{
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.contact-panel__head h2{
  margin: 0;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.contact-panel__head p{
  margin: 10px auto 0;
  max-width: 760px;
  color: rgba(15,15,16,.72);
  font-size: 14px;
  line-height: 1.7;
}

/* FORM CARD */
.contact-card{
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 0;
  padding: 16px;
}

/* GRID */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-full{
  grid-column: 1 / -1;
}

/* FIELDS */
.contact-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label{
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,15,16,.72);
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  font: inherit;
  color: var(--ink);
  outline: none;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
  border-color: rgba(225,29,72,.45);
  box-shadow: 0 0 0 3px rgba(225,29,72,.16);
}

.contact-field textarea{
  min-height: 150px;
  resize: vertical;
}

/* ACTIONS */
.contact-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.contact-note{
  color: rgba(15,15,16,.72);
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 62ch;
}

/* ALT */
.contact-alt{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: rgba(15,15,16,.72);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.contact-alt a{
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  border-bottom: 2px solid rgba(225,29,72,.35);
  padding-bottom: 1px;
}

.contact-alt a:hover{
  border-bottom-color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 720px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .contact-page{ padding-top: 20px; }
  .contact-hero__inner{ padding: 24px 16px 18px; }
  .contact-panel{ padding: 18px 16px 16px; }
  .contact-card{ padding: 14px; }
}
