:root {
  --ink: #182b36;
  --green: #173e36;
  --green-2: #255d50;
  --cream: #f4f0e7;
  --paper: #fbf9f4;
  --coral: #ec6c52;
  --yellow: #e8b84e;
  --line: rgba(24, 54, 47, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 249, 244, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand-name {
  display: grid;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.brand-name strong { font-size: 19px; font-weight: 400; }

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

.main-nav a {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--green);
}

.hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  left: -220px;
  bottom: -250px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.025);
}

.hero-grid {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding-top: 96px;
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(64px, 7vw, 104px); }
h2 { font-size: clamp(44px, 5vw, 70px); }
h1 em, h2 em { color: var(--coral); font-weight: 400; }

.hero-lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
}

.hero-actions { display: flex; align-items: center; gap: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.button-primary { color: var(--ink); background: var(--yellow); }
.button-primary:hover { background: #f0c661; }

.text-link {
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link span { display: inline-block; margin-left: 6px; transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-visual { position: relative; width: min(100%, 490px); justify-self: end; }

.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-content: center;
  padding: 40px;
  overflow: hidden;
  color: rgba(255,255,255,.7);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.015)),
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(255,255,255,.035) 42px 43px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 46% 46% 4px 4px;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -70px;
  border: 46px solid rgba(232,184,78,.38);
  border-radius: 50%;
}

.placeholder-icon { display: block; color: var(--yellow); font-family: var(--serif); font-size: 72px; }
.photo-placeholder p { max-width: 220px; margin: 12px auto 0; font-size: 13px; }

.hero-seal {
  position: absolute;
  left: -68px;
  bottom: 40px;
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--ink);
  text-align: center;
  background: var(--coral);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.hero-seal span { font-family: var(--serif); font-size: 15px; font-style: italic; }
.hero-seal strong { font-size: 10px; line-height: 1.35; letter-spacing: .12em; text-transform: uppercase; }

.hero-notes span { position: absolute; z-index: 0; color: rgba(255,255,255,.055); font-family: var(--serif); }
.hero-notes span:nth-child(1) { top: 18%; left: 3%; font-size: 90px; transform: rotate(-12deg); }
.hero-notes span:nth-child(2) { top: 26%; left: 49%; font-size: 50px; }
.hero-notes span:nth-child(3) { right: 1%; top: 18%; font-size: 110px; transform: rotate(12deg); }
.hero-notes span:nth-child(4) { right: 42%; bottom: 5%; font-size: 70px; }

.hero-bottom {
  position: absolute;
  inset: auto 0 0;
  height: 26px;
  background: var(--coral);
  clip-path: polygon(0 42%, 18% 0, 42% 65%, 68% 15%, 100% 72%, 100% 100%, 0 100%);
}

.section { padding: 120px 0; scroll-margin-top: 70px; }
.intro { background: var(--cream); }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.intro-copy { max-width: 540px; padding-top: 36px; }
.large-copy { font-family: var(--serif); font-size: 25px; line-height: 1.45; }
.intro-copy > p:last-child, .section-note, .documents-intro { color: rgba(24,54,47,.68); }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.value-card { padding: 38px 34px 30px; background: var(--cream); }
.value-card span { font-family: var(--serif); font-size: 14px; font-style: italic; }
.value-card h3 { margin: 35px 0 8px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.value-card p { color: rgba(24,54,47,.68); font-size: 14px; }

.programs { color: white; background: var(--green); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading-row .section-note { max-width: 370px; margin-bottom: 24px; color: rgba(255,255,255,.58); }

.program-list { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.18); }
.program-item {
  min-height: 138px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr 60px;
  align-items: center;
  gap: 30px;
  padding: 24px 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: padding 180ms ease, background 180ms ease;
}
.program-item:hover { padding-inline: 24px; background: rgba(255,255,255,.045); }
.program-number { color: var(--coral); font-family: var(--serif); font-style: italic; }
.program-tag { margin-bottom: 4px; color: var(--yellow); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.program-item h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.program-item > p { margin: 0; color: rgba(255,255,255,.6); font-size: 14px; }
.program-symbol { justify-self: center; color: rgba(255,255,255,.42); font-family: var(--serif); font-size: 40px; }

.practical { background: var(--paper); }
.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.info-card { min-height: 390px; padding: 38px; background: var(--cream); border: 1px solid var(--line); }
.info-card-accent { background: #e7b74f; }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 70px; border: 1px solid currentColor; border-radius: 50%; font-size: 23px; }
.info-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1.1; }
.info-card > p:not(.eyebrow) { color: rgba(24,54,47,.68); font-size: 14px; }
.status-pill { display: inline-block; margin-top: 12px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }

.documents { background: var(--cream); }
.documents-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.documents-intro { max-width: 470px; }
.document-list { border-top: 1px solid var(--line); }
.document-row { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.document-icon { width: 46px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 800; }
.document-row h3 { margin: 0 0 2px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.document-row p { margin: 0; color: rgba(24,54,47,.58); font-size: 12px; }
.document-status { color: rgba(24,54,47,.5); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.contact { position: relative; overflow: hidden; color: white; background: var(--coral); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact h2 em { color: var(--green); }
.contact .section-heading > p:last-child { max-width: 440px; color: rgba(255,255,255,.78); }
.contact-details { border-top: 1px solid rgba(255,255,255,.35); }
.contact-details > div { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-details p { margin-bottom: 0; }
.contact-label { margin-bottom: 4px !important; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-lines { position: absolute; width: 500px; aspect-ratio: 1; right: -130px; top: -160px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.035), 0 0 0 96px rgba(255,255,255,.035); }

.site-footer { color: rgba(255,255,255,.68); background: #102d27; }
.footer-institutional { padding-top: 68px; padding-bottom: 62px; text-align: center; }
.footer-entity {
  margin: 0;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.footer-entity-contact { margin: 8px 0 0; font-size: 11px; }
.footer-legal {
  max-width: 990px;
  margin: 31px auto 40px;
  color: white;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}
.footer-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.footer-logo {
  min-height: 138px;
  display: grid;
  place-items: center;
  padding: 17px;
  background: white;
  border-radius: var(--radius);
}
.footer-logo img { display: block; width: auto; max-width: 100%; height: auto; max-height: 98px; object-fit: contain; }
.footer-meta { padding: 30px 0; border-top: 1px solid rgba(255,255,255,.13); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; font-size: 11px; }
.footer-grid p { margin: 0; }
.footer-grid p:nth-child(2) { text-align: center; }
.footer-grid p:last-child { text-align: right; }
.brand-footer { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 100px 34px 40px;
    color: white;
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 34px; font-weight: 400; }
  .main-nav .nav-cta { padding: 0; border: 0; }
  .menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; padding: 0; color: inherit; background: none; border: 0; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle.active { color: white; }
  .menu-toggle.active span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(3) { opacity: 0; }
  .menu-toggle.active span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr 0.72fr; gap: 35px; }
  .hero-seal { left: -30px; width: 115px; }
  .intro-grid, .documents-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .intro-copy { padding-top: 0; }
  .section-heading-row { align-items: start; flex-direction: column; gap: 0; }
  .practical-grid { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .card-icon { margin-bottom: 45px; }
  .documents-grid { gap: 55px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .nav-wrap { height: 74px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 132px; padding-bottom: 100px; }
  .hero-copy { position: relative; z-index: 2; }
  h1 { font-size: clamp(56px, 18vw, 78px); }
  h2 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { width: 86%; margin-top: 24px; justify-self: center; }
  .photo-placeholder { aspect-ratio: 1 / 1.1; }
  .hero-seal { left: -28px; bottom: 18px; }
  .section { padding: 85px 0; }
  .intro-grid { gap: 20px; }
  .values { grid-template-columns: 1fr; margin-top: 50px; }
  .value-card h3 { margin-top: 18px; }
  .program-list { margin-top: 38px; }
  .program-item { grid-template-columns: 38px 1fr; gap: 14px; padding: 25px 0; }
  .program-item > p { grid-column: 2; }
  .program-symbol { display: none; }
  .practical-grid { margin-top: 42px; }
  .info-card { padding: 30px; }
  .document-row { grid-template-columns: 48px 1fr; }
  .document-status { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p:nth-child(2), .footer-grid p:last-child { text-align: left; }
}

/* Real-content landing additions */
.brand-name { min-width: 118px; }
.hero { min-height: 880px; }
.hero-grid {
  min-height: 880px;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  gap: 90px;
  padding-top: 130px;
  padding-bottom: 110px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 590px; }
.hero-poster {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin: 0;
  justify-self: end;
  transform: rotate(1.4deg);
}
.hero-poster::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.28);
}
.hero-poster img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 30px 75px rgba(5,23,19,.38);
}
.hero-poster figcaption {
  margin-top: 15px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-align: right;
  text-transform: uppercase;
}
.hero-facts {
  display: flex;
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-facts li {
  min-width: 132px;
  display: grid;
  padding: 18px 24px 0 0;
}
.hero-facts li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.2); }
.hero-facts strong { color: var(--yellow); font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1; }
.hero-facts span { margin-top: 6px; color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.photo-strip {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 14px;
  margin-top: 80px;
}
.photo-strip figure { height: 310px; margin: 0; overflow: hidden; background: var(--ink); }
.photo-strip img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 450ms ease; }
.photo-strip figure:hover img { transform: scale(1.025); }
.photo-wide img { object-position: center 42%; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.program-card {
  position: relative;
  min-height: 370px;
  padding: 42px;
  background: var(--green);
}
.program-card:hover { background: rgba(255,255,255,.045); }
.program-number { position: absolute; top: 40px; right: 40px; color: var(--coral); }
.program-card h3 { max-width: 80%; margin: 6px 0 30px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.clean-list { margin: 0; padding: 0; color: rgba(255,255,255,.72); list-style: none; }
.clean-list li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.clean-list li::before { content: '♪'; margin-right: 10px; color: var(--yellow); }
.instrument-copy { max-width: 470px; color: rgba(255,255,255,.7); line-height: 1.9; }

.pricing { background: var(--cream); }
.pricing .section-note { color: rgba(24,54,47,.68); }
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: 22px;
  align-items: start;
  margin-top: 62px;
}
.enrollment-fees {
  padding: 38px;
  color: white;
  background: var(--green);
}
.enrollment-fees .eyebrow { color: var(--yellow); }
.enrollment-fees h3,
.monthly-fees h3 {
  margin: 8px 0 30px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.enrollment-fees dl,
.price-list { margin: 0; }
.enrollment-fees dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.22);
}
.enrollment-fees dt { max-width: 230px; color: rgba(255,255,255,.76); font-size: 13px; }
.enrollment-fees dd,
.price-list dd { margin: 0; font-family: var(--serif); font-size: 32px; line-height: 1; white-space: nowrap; }
.enrollment-fees dd span,
.price-list dd span { font-family: var(--sans); font-size: 13px; }
.monthly-fees { padding: 38px; background: var(--paper); border: 1px solid var(--line); }
.pricing-subheading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.pricing-subheading h3 { margin-bottom: 24px; }
.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.price-list > div {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 19px 22px;
  background: var(--cream);
}
.price-list dt { font-size: 12px; font-weight: 700; line-height: 1.4; }
.price-list dd { color: var(--coral); }
.pricing-notes {
  display: grid;
  grid-template-columns: .65fr 1.85fr .8fr;
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pricing-notes p { margin: 0; padding: 20px 22px; background: var(--paper); font-size: 11px; line-height: 1.55; }
.pricing-notes strong { color: var(--green); }

.schedules { background: var(--paper); }
.schedules .section-note, .calendar-section .section-note { color: rgba(24,54,47,.68); }
.schedule-block {
  margin-top: 62px;
  padding: 38px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.block-heading .eyebrow { margin-bottom: 8px; }
.block-heading h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.course-pill {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
}
.table-scroll { overflow-x: auto; outline-offset: 4px; }
.group-table { width: 100%; min-width: 900px; border-collapse: collapse; table-layout: fixed; }
.group-table th {
  padding: 13px 14px;
  color: white;
  background: var(--green);
  border-right: 1px solid rgba(255,255,255,.17);
  font-size: 11px;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}
.group-table td {
  height: 94px;
  padding: 14px;
  vertical-align: top;
  background: rgba(255,255,255,.45);
  border: 1px solid var(--line);
}
.group-table td strong, .group-table td span, .group-table td small { display: block; }
.group-table td strong { font-size: 12px; line-height: 1.35; text-transform: uppercase; }
.group-table td span { margin-top: 7px; color: var(--green-2); font-family: var(--serif); font-size: 17px; }
.group-table td small { margin-top: 3px; color: var(--coral); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.group-table td.empty { color: rgba(24,54,47,.2); text-align: center; vertical-align: middle; }
.instrument-block { margin-top: 22px; }
.instrument-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.instrument-grid article { min-height: 126px; padding: 23px; background: var(--paper); }
.instrument-grid h4 { margin: 0 0 9px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.instrument-grid p { margin: 0; color: rgba(24,54,47,.66); font-size: 13px; }
.instrument-grid p strong { color: var(--ink); }

.calendar-section { background: var(--cream); }
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 45px 0 28px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}
.calendar-legend span { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; }
.legend-dot.vacation, .day.vacation { background: #b9dbec; }
.legend-dot.holiday, .day.holiday { background: #ecb8ad; }
.legend-dot.council, .day.council { background: #d5c5ea; }
.legend-dot.evaluation, .day.evaluation { background: #f1da9d; }
.legend-dot.milestone, .day.milestone { color: white; background: var(--green-2); }
.calendar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.month-card { padding: 22px; background: var(--paper); border: 1px solid var(--line); }
.month-card h3 { margin: 0 0 17px; font-family: var(--serif); font-size: 23px; font-weight: 400; text-transform: capitalize; }
.month-weekdays, .month-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.month-weekdays { margin-bottom: 6px; }
.month-weekdays span {
  color: rgba(24,54,47,.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}
.day {
  position: relative;
  min-height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
}
.day.weekend:not(.vacation):not(.holiday):not(.council):not(.evaluation):not(.milestone) { color: var(--coral); background: rgba(236,108,82,.055); }
.day.empty-day { background: transparent; }
.day[title] { cursor: help; font-weight: 800; }
.calendar-summary { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; margin-top: 22px; }
.date-card { padding: 30px; background: var(--paper); border: 1px solid var(--line); }
.date-card-featured { color: white; background: var(--green); }
.date-card .eyebrow { margin-bottom: 25px; }
.date-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.date-card h3 span { margin-inline: 6px; color: var(--coral); }
.date-card > p:last-child { margin: 0; color: rgba(24,54,47,.62); font-size: 12px; }
.date-card-featured > p:last-child { color: rgba(255,255,255,.64); }

.evaluations { margin-top: 64px; }
.evaluation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.evaluation-grid article { padding: 30px; background: var(--paper); }
.evaluation-grid article > span { color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.evaluation-grid h4 { min-height: 64px; margin: 16px 0 0; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.2; }
.evaluation-grid article > p { color: rgba(24,54,47,.58); font-size: 12px; }
.evaluation-grid dl { margin: 28px 0 0; }
.evaluation-grid dl div { padding: 12px 0; border-top: 1px solid var(--line); }
.evaluation-grid dt { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.evaluation-grid dd { margin: 2px 0 0; color: rgba(24,54,47,.68); font-size: 12px; }

.activities { color: white; background: var(--green); }
.activities-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: start; }
.activities .section-heading { position: sticky; top: 130px; }
.activities .section-note { color: rgba(255,255,255,.58); }
.activity-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.activity-list li { display: grid; grid-template-columns: 116px 1fr; gap: 28px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.activity-list time { color: var(--yellow); font-size: 10px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.activity-list time strong { display: block; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1; }
.activity-list h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.activity-list p { margin: 4px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }

.team { background: var(--paper); }
.management-note { min-width: 370px; margin-bottom: 22px; padding: 19px 22px; background: var(--cream); border-left: 3px solid var(--coral); }
.management-note p { margin: 0; color: rgba(24,54,47,.72); font-size: 12px; }
.management-note p + p { margin-top: 8px; }
.management-note strong { display: inline-block; min-width: 135px; color: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 58px; }
.team-card { min-height: 260px; padding: 30px; background: var(--cream); border: 1px solid var(--line); }
.team-card > span { color: var(--coral); font-family: var(--serif); font-style: italic; }
.team-card h3 { margin: 38px 0 15px; font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.15; }
.team-card p { margin: 0; color: rgba(24,54,47,.66); font-size: 12px; line-height: 1.9; }

.enrollment { color: white; background: #102e52; }
.enrollment-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 95px; align-items: center; }
.enrollment-copy h2 em { color: var(--yellow); }
.enrollment-copy .large-copy { max-width: 650px; color: rgba(255,255,255,.78); }
.enrollment-points { margin: 32px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.enrollment-points li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 13px; }
.enrollment-points li::before { content: '✓'; margin-right: 11px; color: var(--yellow); font-weight: 800; }
.button-enrollment { gap: 10px; color: var(--ink); background: var(--yellow); }
.button-enrollment:hover { background: #f1c965; }
.button-enrollment span { font-size: 17px; }
.form-note { margin: 11px 0 0; color: rgba(255,255,255,.5); font-size: 10px; }

.contact-details { font-style: normal; }
.contact-details a { text-underline-offset: 5px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 370px; gap: 55px; }
  .hero-facts li { min-width: 112px; }
  .instrument-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { grid-template-columns: 1fr; }
  .month-card { padding: 27px; }
  .activities-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .72fr; padding-top: 135px; }
  .hero-facts { margin-top: 45px; }
  .hero-facts li { min-width: auto; flex: 1; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip .photo-wide { grid-column: 1 / -1; }
  .photo-strip figure { height: 280px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 320px; }
  .evaluation-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .activities .section-heading { position: static; }
  .management-note { min-width: 0; }
  .enrollment-grid { gap: 50px; }
}

@media (max-width: 680px) {
  .brand-name { min-width: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-top: 125px; }
  .hero-poster { width: 82%; justify-self: center; }
  .hero-poster::before { inset: 12px -12px -12px 12px; }
  .hero-facts { margin-top: 40px; }
  .hero-facts li { padding-right: 10px; }
  .hero-facts li + li { padding-left: 12px; }
  .hero-facts strong { font-size: 24px; }
  .hero-facts span { font-size: 8px; }
  .photo-strip { grid-template-columns: 1fr; gap: 9px; margin-top: 50px; }
  .photo-strip .photo-wide { grid-column: auto; }
  .photo-strip figure { height: 250px; }
  .program-card { min-height: auto; padding: 30px; }
  .program-number { top: 30px; right: 30px; }
  .schedule-block { margin-top: 42px; padding: 22px 16px; }
  .block-heading { align-items: flex-start; }
  .block-heading h3 { font-size: 28px; }
  .instrument-grid, .team-grid { grid-template-columns: 1fr; }
  .instrument-grid article { min-height: 110px; }
  .calendar-legend { gap: 10px 16px; }
  .month-card { padding: 17px 13px; }
  .month-weekdays, .month-days { gap: 3px; }
  .day { min-height: 34px; }
  .calendar-summary { grid-template-columns: 1fr; }
  .evaluation-grid h4 { min-height: auto; }
  .activity-list li { grid-template-columns: 82px 1fr; gap: 18px; }
  .team-grid { margin-top: 38px; }
  .team-card { min-height: auto; }
  .management-note strong { display: block; min-width: 0; }
  .enrollment-grid { grid-template-columns: 1fr; }
  .button-enrollment { width: 100%; padding-inline: 16px; text-align: center; }
}

@media (max-width: 1040px) {
  .main-nav { gap: 22px; }
  .footer-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-notes { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .monthly-fees, .enrollment-fees { padding: 27px 22px; }
  .pricing-subheading { align-items: flex-start; }
  .price-list { grid-template-columns: 1fr; }
  .price-list > div { min-height: 76px; }
  .footer-institutional { padding-top: 55px; padding-bottom: 48px; }
  .footer-legal { font-size: 18px; }
  .footer-logos { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .footer-logo { min-height: 116px; padding: 13px; }
  .footer-logo img { max-height: 82px; }
}
