.contact-hero {
  padding: 96px var(--section-px) 48px;
  background: var(--lilac);
}

.contact-hero__inner,
.contact-layout {
  width: min(100%, var(--max-w));
  margin: 0 auto;
}

.contact-eyebrow,
.contact-info__label,
.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--plum-rgb), 0.72);
}

.contact-hero h1 {
  margin-bottom: 18px;
}

.contact-hero p {
  max-width: 800px;
  color: var(--plum);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.contact-section {
  padding: 72px var(--section-px) 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--plum);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--plum);
}

.contact-info {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
}

.contact-info__item {
  display: grid;
  gap: 4px;
}

.contact-info__item a {
  width: fit-content;
  color: var(--matcha-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-info__item a:hover {
  color: var(--matcha-deep);
}

.flash-container {
  width: min(calc(100% - 32px), var(--max-w));
  margin: 24px auto 0;
}

.form-message {
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.form-message.success {
  background: var(--matcha);
  color: var(--plum);
}

.form-message.error {
  background: #f6dede;
  color: #7a2323;
}

@media (max-width: 760px) {
  .contact-hero {
    padding-top: 72px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info {
    padding: 22px;
  }
}



/* ───────── LET'S WORK TOGETHER INTRO BANNER ───────── */
.work-together-section { background: var(--plum); padding: 96px 6% 64px; text-align: center; }
.work-together-inner { max-width: 640px; margin: 0 auto; }
.work-together-section .section-eyebrow,
.work-together-section .section-title { text-align: center; }
.work-together-body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: rgba(var(--cream-rgb), 0.75); }
.work-together-section .hero-btns {
  align-items: center;
  margin-top: 28px;
}
.work-together-section .hero-btns .btn-matcha {
  flex: 0 1 220px;
  justify-content: center;
  text-align: center;
}
.work-social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.work-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.work-social-link:hover,
.work-social-link:focus-visible {
  color: var(--matcha);
  background: var(--plum);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .why-partner-section, .services-section, .stories-section, .partner-cta-section, .work-together-section { padding-left: 6%; padding-right: 6%; }
  .work-together-section .hero-btns {
    gap: 12px;
  }
  .work-together-section .hero-btns .btn-matcha {
    flex-basis: 100%;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 2px;
  }
  .work-social-link {
    flex: 0 0 44px;
  }
}
