:root {
  --navy: #031d3a;
  --navy-soft: #062c57;
  --blue: #0757a5;
  --gold: #ffe129;
  --cream: #fff3df;
  --ink: #101827;
  --muted: rgba(255, 243, 223, 0.7);
  --line: rgba(255, 243, 223, 0.18);
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
}

main {
  min-height: 100vh;
  background: var(--navy);
}

img {
  display: block;
  max-width: 100%;
}

section {
  padding: clamp(1.35rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem);
}

.announcement {
  padding-block: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
}

.announcement p {
  width: min(100%, 980px);
  margin: 0 auto;
  font-size: 0.86rem;
  font-weight: 900;
}

.hero {
  min-height: 52vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 87, 165, 0.28), rgba(3, 29, 58, 0)),
    var(--navy);
}

.hero-logo {
  width: min(72vw, 340px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 243, 223, 0.9);
  font-size: clamp(0.92rem, 2.4vw, 1.04rem);
  font-weight: 650;
}

.episodes,
.ask {
  width: min(100%, 760px);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 0.85rem;
}

.section-head span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.audio-embed,
.question-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 44, 87, 0.72);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.audio-embed {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  padding: 1.2rem;
  text-align: center;
}

.audio-embed iframe {
  width: 100%;
  min-height: 160px;
  border: 0;
}

.audio-embed p {
  margin: 0;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 900;
}

.audio-embed span {
  color: var(--muted);
  font-size: 0.92rem;
}

.ask {
  padding-top: 1rem;
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
}

.question-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.question-form label {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 850;
}

.question-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 39, 0.22);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem;
  resize: vertical;
}

.question-form textarea:focus {
  outline: 3px solid rgba(255, 225, 41, 0.55);
  border-color: var(--blue);
}

.button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-soft);
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.success {
  color: var(--gold);
  font-weight: 850;
}

.form-status.error {
  color: #ffb6a8;
  font-weight: 850;
}

@media (max-width: 560px) {
  .announcement p {
    max-width: 23rem;
  }

  .hero {
    min-height: auto;
    padding-top: 1.35rem;
  }

  .hero-logo {
    width: min(82vw, 320px);
  }

  .audio-embed {
    min-height: 160px;
  }
}
