/* ===== Contact ===== */
#contact {
  padding: 100px 0;
  background: #fdfaf4;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 44px;
  color: #3e1f00;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  font-size: 18px;
  color: #8b5e3c;
  max-width: 600px;
  margin: 14px auto 52px;
}

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

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(62, 31, 0, 0.06);
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #3e1f00;
  margin-bottom: 8px;
}

.contact-optional {
  font-weight: 400;
  color: #a98a5e;
  text-transform: none;
  letter-spacing: 0;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #3e1f00;
  background: #fdfaf4;
  border: 1.5px solid rgba(139, 94, 60, 0.25);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #b29a7e;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #c8a96e;
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.18);
}

.contact-field input.invalid,
.contact-field textarea.invalid {
  border-color: #c0573f;
  box-shadow: 0 0 0 3px rgba(192, 87, 63, 0.15);
}

.contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: #25d366;
  border: none;
  border-radius: 50px;
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 16px;
  padding: 22px 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:not(.contact-info-card-static):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(62, 31, 0, 0.1);
  border-color: #c8a96e;
}

.contact-info-card i {
  font-size: 24px;
  color: #ffffff;
  background: #c8a96e;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #3e1f00;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 15px;
  color: #8b5e3c;
}

/* ===== CTA final ===== */
#cta {
  padding: 90px 24px;
  background:
    linear-gradient(rgba(62, 31, 0, 0.82), rgba(62, 31, 0, 0.82)),
    url('https://images.unsplash.com/photo-1568254183919-78a4f43a2877?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 19px;
  color: #f0e3cf;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  color: #3e1f00;
  background: #c8a96e;
  padding: 16px 38px;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(200, 169, 110, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  background: #d8bd87;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(200, 169, 110, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  #cta { background-attachment: scroll; }
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
  .contact-inner { max-width: 1260px; padding: 0 64px; }
}

@media (max-width: 1024px) {
  #contact { padding: 80px 0; }
  .contact-inner { padding: 0 32px; }
  .contact-title { font-size: 38px; }
  .cta-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-subtitle { font-size: 16px; margin-bottom: 36px; }
  .contact-form { padding: 28px; }
  #cta { background-attachment: scroll; padding: 70px 20px; }
}

@media (max-width: 480px) {
  #contact { padding: 64px 0; }
  .contact-inner { padding: 0 16px; }
  .contact-title { font-size: 30px; }
  .contact-form { padding: 22px; }
  .cta-title { font-size: 28px; }
  .cta-subtitle { font-size: 16px; }
  .cta-btn { padding: 14px 30px; font-size: 16px; }
}
