/* ===== HERO SECTION ===== */
.hero {
  background: var(--color-navy);
  min-height: calc(100vh - 36px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) var(--px);
}

.hero__container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* --- Oval image --- */
.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__oval {
  width: clamp(280px, 38vw, 460px);
  aspect-ratio: 5 / 6;
  border-radius: 50% / 50%;
  overflow: hidden;
  background: #1a3a5c;
  /* Gradient border via outline + box-shadow trick */
  outline: 4px solid transparent;
  box-shadow:
    0 0 0 4px var(--color-navy),
    0 0 0 7px #7B3F9E,
    0 0 0 10px #1a6a7a;
  position: relative;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* --- Content --- */
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.hero__badge {
  display: inline-block;
  background: var(--color-badge);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --- Form --- */
.hero__form { width: 100%; }

.form__group {
  margin-bottom: 0.75rem;
  position: relative;
}

.form__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form__input::placeholder { color: rgba(255,255,255,0.45); }
.form__input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.13);
}
.form__input.is-error { border-color: #f44; }

.form__error {
  display: block;
  font-size: 0.78rem;
  color: #ff8080;
  min-height: 1rem;
  margin-top: 0.25rem;
}

.form__trust {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* Success state */
.form__success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.form__success.is-visible { display: block; }
.form__success p { color: #fff; font-size: 1rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__image-wrap { order: 2; }
  .hero__content    { order: 1; }

  .hero__oval {
    width: clamp(200px, 70vw, 320px);
    margin: 0 auto;
  }
  .hero__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero__subtitle br { display: none; }
}