* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

body {
  min-height: 100vh;
}

.site-container {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #234a57;
}

.section-title {
  margin-top: 0.9rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4.1vw, 3.95rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #1f3442;
}

.section-shell {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 90px rgba(31, 52, 66, 0.12);
}

.section-frame {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2.5rem;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 30px 90px rgba(31, 52, 66, 0.12);
}

@media (min-width: 768px) {
  .section-frame {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 1280px) {
  .section-frame {
    padding: 3.5rem;
  }
}

.page-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.page-orb-one {
  top: 7rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 159, 110, 0.28);
}

.page-orb-two {
  right: -5rem;
  top: 22rem;
  width: 16rem;
  height: 16rem;
  background: rgba(148, 212, 224, 0.3);
}

.hero-panel,
.program-card,
.review-card {
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 159, 110, 0.18), transparent 66%);
  pointer-events: none;
}

.program-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(23, 50, 74, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(23, 50, 74, 0.14);
}

.review-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(23, 50, 74, 0.08);
}

.quote-mark {
  position: absolute;
  top: 0.45rem;
  right: 1.15rem;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(31, 95, 103, 0.1);
}

.form-input {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  border: 1px solid #dbe2ea;
  border-radius: 1rem;
  background: #f8fafb;
  padding: 1rem 1rem;
  font: inherit;
  color: #243746;
  outline: none;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.form-input:focus {
  border-color: #ff9f6e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 159, 110, 0.14);
}

code {
  border-radius: 999px;
  background: rgba(35, 74, 87, 0.08);
  padding: 0.12rem 0.45rem;
}

.form-status.is-success {
  color: #1b7b49;
}

.form-status.is-error {
  color: #b33a30;
}

@media (max-width: 767px) {
  .site-container {
    width: min(1280px, calc(100% - 1.25rem));
  }
}
