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

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

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 44px;
  color: #241d17;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  font-size: 15.5px;
  color: #6b5d4a;
  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(23, 18, 15, 0.08);
  border-radius: 4px;
  padding: 36px;
}

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

.contact-field label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #241d17;
  margin-bottom: 8px;
}

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

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #241d17;
  background: #f7f1e7;
  border: 1px solid rgba(107, 93, 74, 0.25);
  border-radius: 2px;
  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: #b2a48e;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #c9a227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-field input.invalid,
.contact-field textarea.invalid {
  border-color: #a3392a;
  box-shadow: 0 0 0 3px rgba(163, 57, 42, 0.15);
}

.contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #25d366;
  border: none;
  border-radius: 2px;
  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(23, 18, 15, 0.08);
  border-radius: 4px;
  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(23, 18, 15, 0.1);
  border-color: #c9a227;
}

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

.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 18px;
  color: #241d17;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 14px;
  color: #6b5d4a;
}

/* ===== CTA final ===== */
#cta {
  padding: 90px 24px;
  background:
    linear-gradient(rgba(23, 18, 15, 0.85), rgba(23, 18, 15, 0.9)),
    url('https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?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: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 14px;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #17120f;
  background: #c9a227;
  padding: 16px 38px;
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  background: #ddb941;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 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: 14.5px; 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: 15px; }
  .cta-btn { padding: 14px 30px; font-size: 14px; }
}
