/* ── Contact page ── */

.contact-page {
  background: #0a0a0a;
  min-height: 100vh;
}

.contact-wrap {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  padding: 6rem 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.1s forwards;
  
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Left text ── */
.contact-text {
  flex: 1;
  padding-top: 0.5rem;
  opacity: 0;
  animation: fadeLeft 1s ease 0.1s forwards;
}

.contact-text h1 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.contact-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Right form ── */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeRight 1s ease 0.4s forwards;
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.required {
  color: #C9A84C;
}

input,
textarea {
  background: #111;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

input:focus,
textarea:focus {
  border-color: #C9A84C;
}

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

.submit-btn {
  background: none;
  border: 0.5px solid #C9A84C;
  color: #C9A84C;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.submit-btn:hover {
  background: #C9A84C;
  color: #000;
}

.form-note {
  font-size: 13px;
  min-height: 1.2em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-wrap {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }

  .contact-form {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  input,
  textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}

.intro {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.instructions {
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0;
}

.instructions li {
  counter-increment: item;
  display: flex;
  gap: 0.75rem;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.instructions li::before {
  content: counter(item);
  color: #C9A84C;
  font-size: 11px;
  font-weight: 500;
  min-width: 16px;
  padding-top: 3px;
}

.divider {
  width: 32px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.5rem 0;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.4rem;
}

.muted {
  color: rgba(255, 255, 255, 0.4);
}

.small {
  font-size: 12px;
  margin-bottom: 1rem;
}

.white {
  color: #fff;
}

.gold {
  color: #C9A84C;
}

.location-note {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.email-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.email-line a {
  color: #C9A84C;
  text-decoration: none;
}

.email-line a:hover {
  text-decoration: underline;
}
