/* ===============================
   LUEN – CONTACT PAGE
   =============================== */

:root {
  --plum:#391B26;
  --merlot:#7A3451;
  --cream:#FAF7F4;
  --rose:#D6C8D0;
  --lav:#B39BA8;
  --white:#fff;
}

.contact-page {
  background:var(--cream);
  padding:8rem 0 5rem;
}

/* HEADER */
.contact-header {
  text-align:center;
  margin-bottom:4rem;
}
.contact-subtitle {
  
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-merlot);
  display: block;
  margin-bottom: 0.5rem;

}
.contact-title {
  font-size:3rem;
  color:var(--plum);
}

/* LAYOUT */
.contact-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
}

/* INFO */
.info-section { margin-bottom:3rem; }
.info-heading {
  font-weight:700;
  margin-bottom:1rem;
}
.info-text { color:#555; }

.map-wrapper {
  height:240px;
  margin:1rem 0;
  border:1px solid var(--rose);
}
.map-iframe {
  width:100%;
  height:100%;
  border:0;
  filter:grayscale(1);
}

.map-link {
  display:inline-flex;
  gap:.5rem;
  color:var(--merlot);
  text-decoration:none;
}

/* SUPPORT */
.support-item {
  display:flex;
  gap:1rem;
  margin-bottom:1rem;
}
.support-icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-rose-quartz);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum);
  flex-shrink: 0;
}

.support-label {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-lavender);
  margin-bottom: 0.25rem;
  line-height: 1;
  margin-top: 0;
}

  .support-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-plum);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* HOURS */
.hours-item {
 display: flex;
  justify-content: space-between;
  max-width: 24rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #555;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-rose-quartz);
  margin-bottom: 0.5rem;

}

/* FORM */
.contact-form-wrapper {
  background:var(--white);
  padding:3rem;
  border:1px solid var(--rose);
}
.form-title { margin-bottom:2rem; }

.contact-form { display:flex; flex-direction:column; gap:1.5rem; }

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
}

.form-input,
.form-textarea,
.form-select {
  border:none;
  border-bottom:1px solid var(--rose);
  padding:.7rem 0;
  background:none;
  font-size:1rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline:none;
  border-color:var(--plum);
}

.form-submit {
  background:var(--plum);
  color:#fff;
  padding:1rem;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  display:flex;
  justify-content:center;
  gap:.5rem;
}
.form-submit:hover { background:var(--merlot); }

.hp-field { display:none !important; }

/* RESPONSIVE */
@media(max-width:1024px){
  .contact-layout { grid-template-columns:1fr; }
  .contact-page {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* TOAST */
.luen-toast {
  position: fixed;
  top: 6rem;
  right: 2rem;
  background: #391B26;
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(30px);
  transition: all .3s ease;
  z-index: 9999;
  font-size: .875rem;
}
.luen-toast.success { background:#391B26; }
.luen-toast.error { background:#7A3451; }
.luen-toast.visible {
  opacity:1;
  transform:translateX(0);
}

/* LOADING */
.form-submit.is-loading {
  opacity:.7;
  cursor:not-allowed;
}
