/* 2026 design refresh - shared layer: nav bar, mobile menu, buttons.
   Source: the Figma build spec (sections 1.1-1.3 and 1.6), see docs/design-refresh.md.
   Loaded on every page after the Webflow snapshot CSS and the page head CSS, before custom.css. */

/* Bar height: 88px desktop, 56px phone. Everything that sits under the fixed bar reads this. */
:root { --nav-h: 5.5rem; }
@media screen and (max-width: 991px) { :root { --nav-h: 3.5rem; } }

.nav_component { height: var(--nav-h); }
.nav-drop_open.w--open,
.nav-open.nav-drop_open { top: var(--nav-h); }
.section_hero,
.section_unavailable,
.section_blog-hero,
.section_utility,
.hero-basic_component,
.team-hero_component { margin-top: var(--nav-h); }
/* the split hero's 4rem top padding cleared the old 64px bar; with the 88px bar the contact page's tall form started under it */
@media screen and (min-width: 992px) { .main-hero_right { padding-top: calc(var(--nav-h) + 1px); } }
.section_unavailable .padding-section-large { padding-top: 4rem; padding-bottom: 4rem; } /* data fallback on Explore + detail */
.detail-layout_sidebar { top: calc(var(--nav-h) + .5rem); max-height: calc(100vh - var(--nav-h) - 1rem); }

/* 1.1 Desktop bar */
.navbar { border-bottom: 1px solid var(--_style-guide-2-0---outset-soft-black-tint); }
.navbar > .padding-global { padding-left: 1.5rem; padding-right: 1.5rem; }
.navbar > .padding-global > .container-large { max-width: none; }
.nav-button { width: auto; margin-right: 1.25rem; }
.menu-btn { grid-column-gap: .5rem; grid-row-gap: .5rem; min-width: 2.75rem; min-height: 2.75rem; }
.menu-button-line { width: 2.5rem; height: 2px; }
.nav-dropdown {
  padding: .9rem .75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}
/* the Client-First reset in nav.html's own <style> sets .w-dropdown-toggle{color:inherit} after this file loads */
.nav-dropdown.w-dropdown-toggle { color: var(--_style-guide-2-0---outset-dark-blue); }
.nav-dropdown.w-dropdown-toggle:hover,
.nav-dropdown.w-dropdown-toggle.w--open { color: var(--_style-guide-2-0---outset-mid-blue); }
.nav-logo { max-width: 9.5rem; }
.nav-right .button .icon-embed-xxsmall { display: none; }

/* 1.2 Phone bar */
@media screen and (max-width: 991px) {
  .navbar > .padding-global { padding-left: 1rem; padding-right: 1rem; }
  .nav_component { grid-template-columns: 1fr auto 1fr; grid-column-gap: .5rem; }
  .nav-button { margin-right: 0; }
  .nav-logo { max-width: 6.125rem; }
  .nav-apply_more { display: none; }
  .nav-right .button {
    width: auto;
    min-height: 2rem;
    padding: .375rem .875rem;
    border-radius: 1px;
    font-size: .75rem;
  }
}

/* 1.3 Phone menu: drill-down panels (markup in src/webflow/nav.html, behaviour in custom-ui.js) */
.nav-open-mobile.nav-drop_open.is-mobile {
  top: calc(var(--nav-h) + 1px); /* below the bar's hairline */
  height: calc(100svh - var(--nav-h) - 1px);
  padding-top: .75rem;
  padding-bottom: 0;
  border-top: 0;
}
.nav-open-mobile > .padding-global { padding-left: 1rem; padding-right: 1rem; }
.nav-drop-grid.is-mobile { padding-bottom: 2.5rem; }

.mmenu { display: flex; flex-direction: column; gap: .75rem; width: 100%; max-width: 36rem; } /* tablet: keep the phone proportions */
.mmenu_image { aspect-ratio: 358 / 239; border-radius: 4px; overflow: hidden; }
.mmenu_image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.mmenu_panel[data-mmenu-panel="root"] { display: flex; flex-direction: column; gap: 4rem; }
.mmenu_list { margin: 0; padding: 0; list-style: none; }
.mmenu_list > li { margin: 0; }
.mmenu_list.is-top { padding-top: .75rem; }

.mmenu_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .6875rem 0;
  border: 0;
  background: none;
  color: var(--_style-guide-2-0---outset-dark-blue);
  font-family: Marrsans Web, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: -.03em;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mmenu_item.is-top { padding: .5625rem 0; font-size: 2.25rem; line-height: 2.25rem; }
.mmenu_item.is-all { color: var(--_style-guide-2-0---outset-mid-blue); }
.mmenu_cta {
  align-self: flex-start;
  color: var(--_style-guide-2-0---outset-mid-blue);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  text-decoration: none;
}

.mmenu_tri {
  flex: none;
  width: 0;
  height: 0;
  margin-right: 1rem;
  border-top: .5rem solid transparent;
  border-bottom: .5rem solid transparent;
  border-left: .5rem solid currentColor;
}
.mmenu_tri.is-back { margin-right: 0; border-left: 0; border-right: .5rem solid currentColor; }

.mmenu_head { position: relative; display: flex; align-items: center; justify-content: center; min-height: 3.5rem; margin-bottom: .375rem; }
.mmenu_back {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 0 0 1rem;
  border: 0;
  background: none;
  color: var(--_style-guide-2-0---outset-dark-blue);
  transform: translateY(-50%);
  cursor: pointer;
}
.mmenu_title {
  margin: 0;
  color: var(--_style-guide-2-0---outset-dark-blue);
  font-family: Marrsans Web, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: -.03em;
  text-align: center;
}
.mmenu_item:focus-visible,
.mmenu_back:focus-visible,
.mmenu_cta:focus-visible { outline: 2px solid var(--_style-guide-2-0---outset-mid-blue); outline-offset: 2px; }

@keyframes mmenu-forward { from { opacity: 0; transform: translateX(1.5rem); } to { opacity: 1; transform: none; } }
@keyframes mmenu-back { from { opacity: 0; transform: translateX(-1.5rem); } to { opacity: 1; transform: none; } }
.mmenu_panel.is-entering-forward { animation: mmenu-forward .35s cubic-bezier(.625, .05, 0, 1); }
.mmenu_panel.is-entering-back { animation: mmenu-back .35s cubic-bezier(.625, .05, 0, 1); }
@media (prefers-reduced-motion: reduce) {
  .mmenu_panel.is-entering-forward,
  .mmenu_panel.is-entering-back { animation: none; }
}

/* 1.4 Footer: structure and content unchanged; type as the design library's footer component */
.section_footer .heading-style-h4.is-alt { font-weight: 600; line-height: 1.2; letter-spacing: -.03em; }
.footer_link { color: var(--_style-guide-2-0---outset-off-white-tint); letter-spacing: -.01em; transition: color .2s; }
.footer_link:hover,
.footer_link.is-icon { color: var(--_style-guide-2-0---outset-off-white); }
.footer_link.is-icon { font-weight: 600; }
.footer_link.is-icon .icon-embed-xxsmall,
.footer_btn .button .icon-embed-xxsmall { display: none; }
.section_footer .text-style-eyebrow { font-weight: 500; line-height: 1; letter-spacing: 0; }

/* Inline email forms (email box + button in one grey bar): the semibold 2026 label is wider, so the button gives the
   field its room back */
.submit_button-wrap .button { padding-left: 1.25rem; padding-right: 1.25rem; }
@media screen and (min-width: 768px) { .hero_form-wrap { max-width: 26rem; } } /* "Email Address" fits beside the brochure button */

/* 1.6 Buttons: 48px box, 2px radius, 600 label (the 2px border stays so outline variants line up) */
.button {
  min-height: 3rem;
  padding: .75rem 2.25rem;
  border-radius: 2px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
}
.button.is-link,
.button.is-small { min-height: 0; }
.button.is-link { border-radius: 0; }
@media screen and (min-width: 768px) {
  .button.is-icon { padding-left: 2.25rem; padding-right: 2.25rem; }
}
@media screen and (max-width: 767px) {
  .button { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media screen and (max-width: 479px) {
  .button { padding-left: 1rem; padding-right: 1rem; }
}

/* ---------------------------------------------------------------------------------------------------------------
   2026 components (spec 0.5, 1.5, 2.x). New utilities carry new names so pages outside the design keep their
   Webflow heading classes; section restyles below apply wherever those sections appear (they are shared components).
   --------------------------------------------------------------------------------------------------------------- */

/* 0.5 Type scale */
.heading-style-display,
.heading-style-cta,
.heading-style-band,
.heading-style-quote { margin: 0; font-family: Marrsans Web, Arial, sans-serif; font-weight: 600; letter-spacing: -.03em; }
.heading-style-display { font-size: 4.75rem; line-height: .95; }
.heading-style-cta { font-size: 4rem; line-height: 1.125; }
.heading-style-band { font-size: 3rem; line-height: 1.1667; }
.heading-style-quote { font-size: 2.25rem; line-height: 1.2222; }
.heading-style-section { margin: 0; font-family: Caslonionic Web, Arial, sans-serif; font-size: 2.25rem; font-weight: 300; line-height: 1.2222; letter-spacing: -.02em; }
.text-size-body-large { font-family: Marrsans Web, Arial, sans-serif; font-size: 1.125rem; font-weight: 500; line-height: 1.5556; letter-spacing: -.01em; }
.text-style-eyebrow-2026 { font-family: Marrsans Web, Arial, sans-serif; font-size: .75rem; font-weight: 500; line-height: 1; letter-spacing: 0; text-transform: uppercase; }
@media screen and (max-width: 991px) {
  .heading-style-display { font-size: 3.5rem; }
  .heading-style-cta { font-size: 3rem; }
  .heading-style-band { font-size: 2.5rem; }
}
@media screen and (max-width: 767px) {
  .heading-style-display { font-size: 2.75rem; line-height: 1; }
  .heading-style-cta { font-size: 2.5rem; }
  .heading-style-band { font-size: 2rem; }
  .heading-style-section,
  .heading-style-quote { font-size: 1.75rem; }
}
@media screen and (max-width: 479px) {
  .heading-style-display,
  .heading-style-cta { font-size: 2.25rem; }
  .heading-style-band { font-size: 1.75rem; }
  .heading-style-section { font-size: 1.625rem; }
  .heading-style-quote { font-size: 1.5rem; }
}

/* 1.5 Breadcrumb: <nav aria-label="Breadcrumb"><ol class="breadcrumb_component"><li><a class="breadcrumb_link"> ... */
.breadcrumb_component {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Marrsans Web, Arial, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.breadcrumb_component > li { display: flex; align-items: center; gap: .5rem; margin: 0; font-size: inherit; line-height: inherit; }
/* every snapshot chunk sets li and p to 1rem/1.5, which beats a size inherited from the list or wrapper */
.text-size-body-large p,
.text-size-body-large li { font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; }
.breadcrumb_component > li + li::before { content: "/"; }
.breadcrumb_link { color: inherit; text-decoration: none; }
.breadcrumb_link:hover { text-decoration: underline; text-underline-offset: 2px; }

/* D6 Inventory card (Explore, campus pages, detail page) */
.program-card_card {
  overflow: hidden;
  border: 1px solid rgba(230, 230, 230, .5);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(18, 18, 22, .1);
}
.program-card_card-image-wrapper { position: relative; padding: .5rem .5625rem 0; }
.program-card_card-image { width: 100%; aspect-ratio: 318 / 272; border-radius: .5rem; }
.program-card_card-image-wrapper .availability-label {
  position: absolute;
  bottom: .625rem;
  left: 1rem;
  z-index: 1;
  margin: 0;
  padding: .25rem .5rem;
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
}
.program-card_card-content { padding: 1rem .5625rem .5625rem; }
.program-card_heading { font-size: 1.5rem; line-height: 1.2; letter-spacing: -.03em; }
.program-card_card-content .text-size-tiny { font-size: .9375rem; font-weight: 500; line-height: 1.6; letter-spacing: -.01em; }
.program-card_card-content .text-size-tiny b { font-weight: 600; }
.program-card_card .button {
  width: 100%;
  min-height: 2.75rem;
  padding: .625rem 1rem;
  border-color: var(--_style-guide-2-0---outset-mid-blue);
  border-radius: 62px;
  background-color: transparent;
  color: var(--_style-guide-2-0---outset-mid-blue);
  font-size: 1rem;
}
.program-card_card .button:hover,
.program-card_card-item:hover .program-card_card .button { background-color: var(--_style-guide-2-0---outset-mid-blue); color: var(--_style-guide-2-0---outset-off-white); }
.program-card_card .button .icon-embed-xxsmall { display: none; }
/* Desktop: the card's own labels are a size down from the page's, so the button follows them (Lawson, 22 Sep).
   Under 992px it keeps the 44px touch target. */
@media screen and (min-width: 992px) {
  .program-card_card .button { min-height: 2.25rem; padding: .5rem 1rem; font-size: .9375rem; }
}
@media screen and (max-width: 991px) { .program-card_heading { font-size: 1.25rem; } }

/* P8 "Learn More About Outset" band (markup: src/webflow/partials/learn-more-band.html) */
.section_learn-more { background-color: var(--_style-guide-2-0---outset-mid-blue); color: var(--_style-guide-2-0---outset-off-white); }
.learn-more_component { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 11rem; padding-top: 2rem; padding-bottom: 2rem; }
.learn-more_form { flex: 0 1 32rem; margin: 0; }
.learn-more_row {
  display: flex;
  align-items: center;
  gap: .5rem;
  height: 4rem;
  margin: 0;
  padding: .5rem;
  border: 1px solid var(--_style-guide-2-0---outset-grey);
  border-radius: 2px;
  background-color: var(--_style-guide-2-0---white);
}
.learn-more_input {
  flex: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  padding: 0 0 0 1rem;
  border: 0;
  background: transparent;
  color: var(--_style-guide-2-0---outset-soft-black);
  font-family: Marrsans Web, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
}
/* the site-wide Webflow embed sets `.w-input { color: inherit }` inline after this file, which turned typed text off-white on
   the white field (found 23 Sep 2026); two classes outrank it */
.section_learn-more .learn-more_input { color: var(--_style-guide-2-0---outset-soft-black); }
.learn-more_input::placeholder { color: #787880; }
.learn-more_input:focus { outline: none; }
.learn-more_row:focus-within { outline: 2px solid var(--_style-guide-2-0---outset-dark-blue); outline-offset: 2px; }
.learn-more_button.button { flex: none; padding-left: 1.5rem; padding-right: 1.5rem; border-color: var(--_style-guide-2-0---outset-soft-black); background-color: var(--_style-guide-2-0---outset-soft-black); }
.section_learn-more .w-form-done { padding: 1rem; background: transparent; color: var(--_style-guide-2-0---outset-off-white); text-align: left; }
.section_learn-more .w-form-fail { margin-top: .5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media screen and (max-width: 767px) {
  .learn-more_component { flex-direction: column; align-items: stretch; padding-top: 2.5rem; padding-bottom: 2.5rem; text-align: center; }
  .learn-more_form { flex-basis: auto; }
  .learn-more_row { flex-wrap: wrap; height: auto; padding: 0; border: 0; background: transparent; justify-content: center; }
  .learn-more_input { flex-basis: 100%; height: 3.875rem; padding: 0 1rem; border: 1px solid var(--_style-guide-2-0---outset-grey); border-radius: 2px; background: var(--_style-guide-2-0---white); }
  .learn-more_button.button { margin-top: .5rem; width: auto; }
}

/* P2 Video */
.section_experience h2.heading-style-h4 { line-height: 1.2222; letter-spacing: -.02em; }
.experience_video { max-width: 65rem; margin-left: auto; margin-right: auto; }

/* P3 2-col with images (curriculum, typical day) */
._2col_content .text-style-eyebrow { color: var(--_style-guide-2-0---outset-mid-blue); font-weight: 500; line-height: 1; letter-spacing: 0; }
._2col_content h2.heading-style-h4 { line-height: 1.2222; letter-spacing: -.02em; }
._2col_content .text-rich-text p { font-size: 1.125rem; font-weight: 500; line-height: 1.5556; letter-spacing: -.01em; }
._2col_subheading .heading-style-h6 { font-family: Caslonionic Web, Arial, sans-serif; font-size: 1rem; font-weight: 500; line-height: 1; letter-spacing: -.02em; }
._2col_content .rich-text_component li { font-size: 1rem; font-weight: 500; line-height: 1.125; letter-spacing: -.02em; } /* the list is a sibling of ._2col_subheading, not inside it */

/* P5 Quote */
.section_quote .slider-wrap .heading-style-h4.is-alt { max-width: 43rem; font-weight: 600; line-height: 1.2222; letter-spacing: -.03em; }
.section_quote .slider_info .text-style-eyebrow { font-weight: 700; line-height: 1.3333; letter-spacing: 0; }
.section_quote .slider_info { margin-top: -.3125rem; } /* design: 30px ink to ink above the attribution; the wrap's 32px gap gave 35 */
.section_quote .slider_info .text-style-eyebrow.text-color-turquoise { font-weight: 600; }

/* P7 Included */
.section_included:not(.background-color-transparent) { background-color: rgba(0, 180, 185, .66); }
.section_included .included_wrap > h2.heading-style-h4 { font-weight: 400; line-height: 1.2222; letter-spacing: -.02em; }
.included_title .heading-style-h3.is-alt { color: var(--_style-guide-2-0---outset-dark-blue); font-weight: 600; line-height: 1.1667; letter-spacing: -.03em; }
.included_p .text-size-medium { font-weight: 500; line-height: 1.5556; letter-spacing: -.01em; }

/* P10 Summer CTA */
.section_summer .heading-style-h2.is-alt { font-weight: 600; line-height: 1.125; letter-spacing: -.03em; }
.section_summer .text-style-eyebrow { font-weight: 500; line-height: 1; letter-spacing: 0; }
.section_summer .button .icon-embed-xxsmall { display: none; }

/* P13 FAQ: question left, small arrow right */
.faq-item { border-top: 1px solid rgba(0, 115, 245, .35); }
.faq-top {
  flex-direction: row-reverse;
  align-self: stretch;
  font-family: Marrsans Web, Arial, sans-serif;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.1429;
  letter-spacing: -.02em;
}
.faq-top .faq_arrow { width: .875rem; height: .875rem; }
.faq-top .faq-arrow-img { width: .3125rem; margin-top: 0; }
@media screen and (max-width: 767px) { .faq-top { font-size: 1.125rem; } }

/* P14 Journal */
.journal_heading-wrap .heading-style-h3.is-bold { font-weight: 700; line-height: .9167; letter-spacing: -.03em; }
.journal_card { border-radius: 0; }
/* the snapshot gives the card body height:100% inside the column-flex card, so the image shrank to 195px and the body
   grew to 334px (design: 320px image, ~228px body) */
.journal_card .journal_image { flex-shrink: 0; }
.journal_card .journal_card-content { height: auto; flex: 1 1 auto; }
.journal_image { aspect-ratio: 336 / 320; border-radius: 0; overflow: hidden; } /* hidden, not clip: clip keeps the content-sized minimum and a tall photo stretched the box */
.journal_image img { width: 100%; height: 100%; object-fit: cover; }
.journal_card .text-style-eyebrow.text-weight-semibold { font-weight: 500; line-height: 1; letter-spacing: 0; }
.journal_card .heading-style-h5 { font-family: Caslonionic Web, Arial, sans-serif; font-size: 1.375rem; font-weight: 400; line-height: 1.1818; letter-spacing: -.03em; }
.journal_card .button.is-link { border-bottom: 0; color: var(--_style-guide-2-0---outset-mid-blue); font-size: .75rem; font-weight: 500; line-height: 1; letter-spacing: 0; text-transform: uppercase; }
.journal_tag .text-style-eyebrow { font-size: .625rem; font-weight: 600; line-height: 1.6; letter-spacing: 0; }
.section_journal .button-group .button {
  min-height: 3rem;
  padding: .75rem 2.25rem;
  border: 2px solid var(--_style-guide-2-0---outset-dark-blue);
  border-radius: 2px;
  background-color: transparent;
  color: var(--_style-guide-2-0---outset-dark-blue);
}
.section_journal .button-group .button .icon-embed-xxsmall { display: none; }
@media screen and (min-width: 992px) {
  .section_journal .journal_grid { max-width: 70.5rem; margin-left: auto; margin-right: auto; grid-column-gap: 3.75rem; }
}

/* P15 Newsletter */
.section_newsletter .heading-style-h2.is-alt { font-weight: 600; line-height: 1.125; letter-spacing: -.03em; }
.section_newsletter .text-style-eyebrow { font-weight: 500; line-height: 1; letter-spacing: 0; }
