/* ==========================================================================
   Premier Lifestyle Management — Contact page
   Section styles unique to contact.html. Loaded AFTER site.css.
   (Hero / header / footer reuse shared classes from site.css.)
   ========================================================================== */

/* ---------- form + details section ---------- */
.contact {
  padding: clamp(64px, 10vh, 120px) clamp(22px, 5vw, 32px) clamp(72px, 11vh, 128px);
}
.contact__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(44px, 6vw, 84px);
  align-items: start;
}

/* second column reveals slightly later (matches source .1s delay) */
.contact__form-wrap[data-reveal] { transition-delay: .1s; }

/* ---------- left intro / direct details ---------- */
.contact__intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}
.contact__details {
  margin-top: 38px;
  border-top: 1px solid var(--line-2);
  padding-top: 28px;
}
.contact__detail {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: baseline;
}
.contact__detail--last { margin-bottom: 0; }
.contact__detail-label {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-text);
  min-width: 90px;
}
.contact__detail-call {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
}
/* the email address is one long unbreakable token; without these it pushed the
   page ~17px wider than a 320px viewport. */
.contact__detail-value {
  font-size: 16px;
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact__privacy {
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #6B6356;
  margin-top: 28px;
  max-width: 36ch;
}

/* ---------- form ---------- */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* grid tracks default to min-width:auto, which inputs refuse to shrink below;
   without this the two-column form overflows its container around 820px. */
.contact-form > * { min-width: 0; }
.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.field__input { max-width: 100%; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field__input {
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #9A8B70;
  padding: 10px 2px;
  outline: none;
  transition: border-color .3s;
  font-family: inherit;
}
.field__input:focus { border-color: var(--gold); }
textarea.field__input {
  resize: vertical;
  min-height: 74px;
}
select.field__input { cursor: pointer; }

.contact-form__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-submit {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px 34px;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  color: var(--ink);
  cursor: pointer;
  transition: background .35s, transform .35s, color .35s;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-1px);
}
.contact-form__note {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- success message ---------- */
.contact-success {
  border: 1px solid var(--line-2);
  padding: 54px 44px;
  text-align: center;
  background: #fff;
}
.contact-success__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--ink);
}
.contact-success__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
}
.contact-success__meta {
  font-size: 12.5px;
  color: var(--gold);
  margin-top: 18px;
  letter-spacing: .04em;
}

@media (max-width: 480px) {
  .contact-form { grid-template-columns: 1fr; }
}
