.contact-hero {
  display: flex;
  width: 100%;
  padding: clamp(48px, 8vw, 64px) 0;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
}

.contact-hero__inner {
  display: flex;
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(20px, 6vw, 120px);
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  box-sizing: border-box;
}

.contact-hero__eyebrow {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.contact-hero__title {
  margin: 0;
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}

.contact-hero__module {
  display: flex;
  padding: 36px;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  align-self: stretch;
  background: var(--Main-Green, #395935);
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-hero__module > * {
  width: 100%;
}

.contact-hero__module .contact-modal.contact-modal--inline .contact-modal__dialog {
  border-color: var(--Main-Green, #395935);
}

.contact-hero__placeholder {
  color: rgba(57, 89, 53, 0.8);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  margin: 0;
}

@media (max-width: 720px) {
  /* Mobile: remove wrapper styling so only the contact module shows */
  .contact-hero__module {
    padding: 0;
    background: transparent;
    border-radius: 0;
    gap: 0;
  }
  .contact-hero__module .contact-modal.contact-modal--inline .contact-modal__dialog {
    border: none;
  }
}
