.member-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 60px 6vw;
  gap: 40px;
  min-height: 80vh;
  max-width: 1200px;
  margin: 0 auto;
}

.member-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #d63a34;
}

.member-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.member-intro {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 28px;
  max-width: 60ch;
}

.member-notify-box,
.member-support-box {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8f6f1;
  margin-bottom: 18px;
}

.member-notify-box h2,
.member-support-box h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.member-notify-box p,
.member-support-box p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.member-notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.member-notify-form input {
  flex: 1 1 280px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  font-size: 15px;
}

.member-cta,
.member-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  background: #d63a34;
  color: white;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.member-cta:hover,
.member-support-link:hover {
  opacity: 0.92;
}

.member-message {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.success-message {
  color: #1f7a35;
}

.info-message {
  color: #8a5a00;
}

.member-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .member-hero {
    grid-template-columns: 1fr;
  }

  .member-hero-image {
    order: -1;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .member-hero {
    padding: 40px 6vw;
  }

  .member-notify-box,
  .member-support-box {
    padding: 20px;
  }

  .member-notify-form {
    flex-direction: column;
  }

  .member-cta,
  .member-support-link {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .member-hero {
    padding: 44px 6vw 56px;
    gap: 28px;
  }

  .member-hero-image {
    justify-self: center;
    width: min(100%, 360px);
  }

  .member-hero-content h1 {
    margin-bottom: 14px;
  }

  .member-intro {
    margin-bottom: 22px;
  }
}

@media (max-width: 640px) {
  .member-hero {
    padding: 32px 20px 48px;
    gap: 22px;
    min-height: auto;
  }

  .member-eyebrow {
    margin-bottom: 10px;
  }

  .member-hero-content h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.02;
  }

  .member-intro {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .member-notify-box,
  .member-support-box {
    padding: 18px;
    margin-bottom: 14px;
  }

  .member-notify-box h2,
  .member-support-box h2 {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .member-notify-box p,
  .member-support-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .member-notify-form input {
    min-height: 48px;
    font-size: 14px;
    padding: 0 14px;
  }

  .member-cta,
  .member-support-link {
    min-height: 48px;
    font-size: 14px;
  }

  .member-message {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .member-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .member-hero-content h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .member-notify-box,
  .member-support-box {
    padding: 16px;
  }
}