.contact-section {
  background: #fffaf7;
  padding: 5rem 1rem;
  color: #3a2d29;
}

.contact-container {
  width: min(800px, 90%);
  margin: 0 auto;
}

.contact-container h1 {
  color: #306050;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(48, 96, 80, 0.12);
}

.contact-form label {
  display: block;
  margin: 1rem 0 0.4rem;
  font-weight: 700;
  color: #306050;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #ecded7;
  border-radius: 16px;
  font: inherit;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #306050;
  box-shadow: 0 0 0 4px rgba(48, 96, 80, 0.15);
}

.contact-form button {
  margin-top: 1.5rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.4rem;
  background: #306050;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: #24483c;
}

.contact-status--success {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  border-left: 5px solid var(--colour-success);
  border-radius: var(--radius-sm);
  background: rgba(125, 186, 111, 0.14);
  color: var(--colour-heading);
}

.contact-privacy-note {
  margin-top: var(--space-sm);
  color: var(--colour-muted);
  font-size: var(--text-sm);
}