/* --- CONTACT / FOOTER --- */
.contact {
  background: #1A1410;
  color: #F3EDE6;
  padding: 100px 0 0;
}

.contact__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 64px 80px;
  border-bottom: 1px solid rgba(243, 237, 230, 0.08);
  align-items: center;
}

/* Left — quote */
.contact__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact__left .label-caps {
  color: #C2A878;
  margin-bottom: 40px;
}

.contact__quote {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F3EDE6;
  margin: 0;
}

.contact__quote em {
  font-style: italic;
  color: #C2A878;
}

/* Right — details */
.contact__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 56px;
}

.contact__block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C2A878;
  margin: 0;
}

.contact__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #F3EDE6;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact__detail {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(243, 237, 230, 0.45);
  margin: 0;
  letter-spacing: 0.04em;
}

.contact__link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: #F3EDE6;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.contact__link:hover {
  color: #C2A878;
}

/* Bottom bar */
.contact__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 32px 64px;
  border-top: 1px solid rgba(243, 237, 230, 0.06);
  text-align: center;
}

.contact__credit {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(243, 237, 230, 0.4);
  margin: 0;
  letter-spacing: 0.06em;
}

.contact__credit a {
  color: rgba(243, 237, 230, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__credit a:hover {
  color: #C2A878;
}

.contact__brand {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(243, 237, 230, 0.3);
  margin: 0;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 768px) {
  .contact__top {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 28px 64px;
  }
  .contact__bottom {
    padding: 24px 28px;
  }
}
