:root {
  --bg: #f4efe5;
  --bg-soft: #fbf7ef;
  --text: #13212e;
  --muted: #5c6773;
  --line: rgba(19, 33, 46, 0.12);
  --card: rgba(255, 255, 255, 0.8);
  --accent: #9b4d2d;
  --accent-2: #204b57;
  --shadow: 0 20px 60px rgba(19, 33, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(155, 77, 45, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(32, 75, 87, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 0;
}

.hero {
  padding: 24px 0 28px;
}

.topline {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(155, 77, 45, 0.12);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.microcopy,
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.program-card,
.contact,
.stats,
.footer {
  backdrop-filter: blur(14px);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 32px;
  padding: 40px;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 10ch;
  margin-top: 12px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.lead,
.contact p,
.program-card p,
.stat-label,
.checklist li,
.hero-notes span {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: 1.08rem;
  max-width: 56ch;
  margin: 20px 0 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 12px 30px rgba(19, 33, 46, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-notes div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(19, 33, 46, 0.08);
}

.hero-notes strong {
  display: block;
  margin-bottom: 6px;
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  align-self: stretch;
}

.card-title {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.section {
  margin-top: 24px;
}

.section-head {
  margin-bottom: 16px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  border-radius: 26px;
  padding: 24px;
}

.stats {
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.stat {
  padding: 12px 10px;
}

.stat-value {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact {
  border-radius: 30px;
  margin-top: 24px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.contact h2 {
  margin: 8px 0 12px;
}

.footer {
  margin: 24px 0 12px;
  border-radius: 24px;
  overflow: hidden;
}

.footer-main {
  padding: 18px 22px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.footer-main strong {
  font-size: 1rem;
}

.footer-bar {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
  color: rgba(19, 33, 46, 0.72);
  background: rgba(19, 33, 46, 0.04);
}

@media (max-width: 900px) {
  .hero-grid,
  .program-grid,
  .stats,
  .hero-notes,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    display: grid;
  }

  .hero-copy {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
  }

  .hero-copy,
  .hero-card,
  .program-card,
  .stats,
  .contact {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
}
