/* contact.html — page-specific overrides */
.hero-bg-image {
  background-image: url("../assets/images/office-interior.avif");
}

/* CONTACT FORM */
.section-contact {
  background: var(--navy-dark);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  line-height: 1.2;
}

.contact-block {
  margin-bottom: 32px;
}

.contact-block-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.contact-block-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.5;
}

.contact-block-detail {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 245, 243, 0.55);
  display: block;
  margin-top: 4px;
}

.contact-divider {
  width: 100%;
  height: 1px;
  background: rgba(200, 167, 90, 0.2);
  margin: 32px 0;
}

.contact-note {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 243, 0.55);
  line-height: 1.7;
}

.form-h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 32px;
  line-height: 1.2;
}

.form-field {
  display: block;
  margin-bottom: 32px;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 167, 90, 0.35);
  padding: 12px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(245, 245, 243, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C8A75A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
  cursor: pointer;
}

.form-select option {
  background: var(--navy);
  color: var(--ivory);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gold);
  color: var(--navy);
  padding: 16px;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 16px;
}

.form-submit:hover {
  background: var(--gold-deep);
}

.form-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(245, 245, 243, 0.45);
  margin-top: 20px;
  line-height: 1.7;
}


@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

}
