/* =========================================================
   CONTACT PAGE
   ========================================================= */

.co-page{ background: #fff; }
.co-page .topnav--always-solid{ background: var(--navy); }


/* --------------------------------------------------------- */
/* Intro                                                     */
/* --------------------------------------------------------- */
.co-intro{
  padding: calc(var(--nav-h-scrolled) + clamp(56px, 7vw, 104px)) 0 clamp(56px, 7vw, 96px);
  background: #fff;
  border-bottom: 1px solid var(--rule-soft);
}
.co-intro__title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 28px 0 32px;
  max-width: 20ch;
}
.co-intro__lede{
  font-size: 17px;
  line-height: 1.65;
  color: #2D3346;
  max-width: 60ch;
  margin: 0 0 48px;
}

.co-intro__meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
.co-intro__meta li{ display: flex; flex-direction: column; gap: 6px; }
.co-intro__meta-num{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.co-intro__meta-lbl{
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(15,31,54,.55);
}


/* --------------------------------------------------------- */
/* Form section header                                        */
/* --------------------------------------------------------- */
.co-form-section{
  padding: clamp(72px, 9vw, 128px) 0 clamp(96px, 11vw, 160px);
  background: #fff;
}
.co-form-section__inner{
  max-width: 920px;
}
.co-form-section__head{
  margin-bottom: clamp(40px, 5vw, 64px);
}
.co-form-section__title{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: var(--navy);
  margin: 22px 0 22px;
}
.co-form-section__lede{
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15,31,54,.72);
  margin: 0;
  max-width: 56ch;
}


/* --------------------------------------------------------- */
/* Form                                                      */
/* --------------------------------------------------------- */
.co-form{
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.co-form__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.co-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.co-field--full{ grid-column: 1 / -1; }
.co-field--half{ grid-column: auto; }

.co-field__label{
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(15,31,54,.62);
}
.co-field__opt{
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: none;
  color: rgba(15,31,54,.42);
  font-size: 11px;
  margin-left: 4px;
}
.co-field__input{
  width: 100%;
  height: 48px;
  background: #fff;
  border: 1px solid rgba(15,31,54,.22);
  padding: 0 16px;
  font-family: var(--font-body);
  /* 16px minimum to prevent iOS Safari auto-zoom on focus */
  font-size: 16px;
  color: var(--navy);
  outline: none;
  border-radius: 0;
  transition: border-color .18s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.co-field__input::placeholder{
  color: rgba(15,31,54,.34);
}
.co-field__input:hover{ border-color: rgba(15,31,54,.42); }
.co-field__input:focus{
  border-color: var(--navy);
  box-shadow: inset 0 -1px 0 var(--navy);
}

/* Select dropdowns */
.co-field__select{
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6l5-4.5' fill='none' stroke='rgba(15,31,54,.4)' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  cursor: pointer;
}
.co-field__select:focus{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6l5-4.5' fill='none' stroke='%23193B66' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Textarea */
.co-field__textarea{
  height: auto;
  padding: 14px 16px;
  font-family: var(--font-body);
  line-height: 1.55;
  resize: vertical;
  min-height: 120px;
}


/* --------------------------------------------------------- */
/* Checkbox pills (Products of interest)                     */
/* --------------------------------------------------------- */
.co-checkgroup{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.co-check{
  position: relative;
  cursor: pointer;
}
.co-check input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.co-check__face{
  display: block;
  padding: 10px 18px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .01em;
  color: rgba(15,31,54,.72);
  border: 1px solid rgba(15,31,54,.22);
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  user-select: none;
}
.co-check__face:hover{
  border-color: rgba(15,31,54,.42);
}
.co-check input:focus + .co-check__face{
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}
.co-check input:checked + .co-check__face{
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}


/* --------------------------------------------------------- */
/* Radio group (Preferred contact method)                    */
/* --------------------------------------------------------- */
.co-radiogroup{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.co-radio{
  position: relative;
  cursor: pointer;
}
.co-radio input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.co-radio__face{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(15,31,54,.72);
  transition: color .2s var(--ease);
  user-select: none;
}
.co-radio__dot{
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(15,31,54,.32);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s var(--ease);
}
.co-radio__dot::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s var(--ease);
}
.co-radio__face:hover .co-radio__dot{
  border-color: rgba(15,31,54,.55);
}
.co-radio input:checked + .co-radio__face{
  color: var(--navy);
}
.co-radio input:checked + .co-radio__face .co-radio__dot{
  border-color: var(--navy);
}
.co-radio input:checked + .co-radio__face .co-radio__dot::after{
  transform: translate(-50%, -50%) scale(1);
}
.co-radio input:focus + .co-radio__face .co-radio__dot{
  box-shadow: 0 0 0 2px rgba(25,59,102,.15);
}


/* --------------------------------------------------------- */
/* Honeypot                                                   */
/* --------------------------------------------------------- */
.co-form__honeypot{
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}


/* --------------------------------------------------------- */
/* Consent                                                    */
/* --------------------------------------------------------- */
.co-form__consent{
  margin-top: 4px;
}
.co-consent{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15,31,54,.66);
  cursor: pointer;
}
.co-consent input[type="checkbox"]{
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.co-consent a{
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


/* --------------------------------------------------------- */
/* Actions row                                                */
/* --------------------------------------------------------- */
.co-form__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.co-form__status{
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(15,31,54,.66);
}
.co-form__status.is-error{ color: #A82E2E; }
.co-form__status.is-success{ color: #246A3B; }

.co-form__submit{
  position: relative;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 16px 32px;
  cursor: pointer;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s var(--ease), opacity .2s var(--ease);
}
.co-form__submit:hover:not(:disabled){
  background: var(--navy-deep);
}
.co-form__submit:disabled{
  background: rgba(15,31,54,.18);
  color: rgba(255,255,255,.7);
  cursor: not-allowed;
}
.co-form__submit-spinner{
  display: none;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: co-spin .7s linear infinite;
}
.co-form__submit.is-loading .co-form__submit-spinner{ display: inline-block; }
@keyframes co-spin{ to{ transform: rotate(360deg); } }


/* --------------------------------------------------------- */
/* Responsive                                                */
/* --------------------------------------------------------- */
@media (max-width: 640px){
  .co-intro__meta{ grid-template-columns: 1fr; gap: 20px; }
  .co-form__grid{ grid-template-columns: 1fr; gap: 22px; }
  .co-field--half{ grid-column: 1 / -1; }
  .co-form__actions{ flex-direction: column; align-items: stretch; }
  .co-form__submit{ width: 100%; }
  .co-checkgroup{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .co-radiogroup{ gap: 16px; }
}