/* ── CONTACT PAGE ── */
.page-contact { background: #fafaf8; }

/* Header */
.contact-header {
  text-align: center;
  padding: 10rem 4% 4rem;
  border-bottom: 1px solid #e0e0e0;
}
.contact-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.contact-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.85;
}

/* ── BODY LAYOUT ── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
  border-top: 1px solid #e0e0e0;
}

/* ── LEFT INFO ── */
.contact-info {
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.contact-details {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.cd-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #888;
}

.cd-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 0.4rem;
}

.cd-value {
  font-size: 0.9rem;
  color: #0a0a0a;
  line-height: 1.65;
  font-weight: 300;
}

a.cd-link {
  text-decoration: none;
  transition: color 0.3s;
}
a.cd-link:hover { color: #c9a84c; }

/* Map */
.contact-map {
  flex: 1;
  min-height: 300px;
  background: #e8e8e8;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
}

/* ── RIGHT FORM ── */
.contact-form-wrap {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

/* Success / Error */
.form-success {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #f0faf0;
  border: 1px solid #c0e0c0;
  padding: 1rem 1.2rem;
  border-radius: 2px;
  color: #2a6a2a;
  font-size: 0.88rem;
}
.form-error {
  background: #fdf0f0;
  border: 1px solid #e0c0c0;
  padding: 1rem 1.2rem;
  border-radius: 2px;
  color: #8a2a2a;
  font-size: 0.88rem;
}

/* Form fields */
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

.required { color: #c9a84c; }

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: #0a0a0a;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #0a0a0a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
  font-weight: 300;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  cursor: pointer;
  color: #888;
}

/* Submit button */
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #0a0a0a;
  color: #fafaf8;
  border: none;
  padding: 1rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s, gap 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #c9a84c; gap: 1.1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-body { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid #e0e0e0; }
  .contact-map { min-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
}