.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 229, 239, 0.7);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 86px;
  background: #ffffff;
}

.hero-section-home {
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.hero-section-programs {
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-grid-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  max-width: 11ch;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.content-section {
  position: relative;
  padding: 104px 0;
}

.section-tint {
  background:
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 100%);
  border-top: 1px solid rgba(219, 229, 239, 0.75);
  border-bottom: 1px solid rgba(219, 229, 239, 0.75);
}

.narrow-head {
  text-align: center;
  margin-bottom: 44px;
}

.narrow-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.panel-grid {
  display: grid;
  gap: 24px;
}

.panel-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.feature-block {
  max-width: 940px;
  margin: 0 auto;
}

.program-list {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  display: grid;
  gap: 24px;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-stack {
  display: grid;
  gap: 16px;
}

.cta-section {
  padding: 104px 0 116px;
}

.site-footer {
  background: #f8fafc;
  border-top: 1px solid rgba(219, 229, 239, 0.85);
  padding: 74px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  padding-bottom: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(219, 229, 239, 0.85);
}

.footer-bottom p {
  font-size: 0.93rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}
