#contactForm {
  max-width: 520px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-body);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#contactForm input,
#contactForm textarea {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: var(--r-sm);
  outline: none;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

#contactForm button[type="submit"] {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #1b2416;
  font-weight: 700;
  font-size: var(--r-md);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

#contactForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

#contactForm label {
  font-weight: 600;
  font-size: var(--r-sm);
  color: var(--ink);
}

#form-message {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #33692d;
  text-align: center;
  min-height: 1.2em;
}

.contact-section p {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 650;
  color: #33692d;
}

.map-container {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), var(--paper-2)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(circle at 100% 70%, rgba(15, 107, 111, 0.10), transparent 60%);
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: var(--shadow-sm);
}