@import url("https://fonts.googleapis.com/css2?family=Afacad:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;500;700&display=swap");

:root {
  --teal: #113840;
  --teal-2: #35565d;
  --orange: #e05d02;
  --gold: #eab600;
  --cream: #efefe7;
  --sky: #97ccd9;
  --blue: #345e85;
  --olive: #3f4e31;
  --ink: #000000;
  --white: #ffffff;
  --frame: 1440px;
  --content: 1340px;
  --figma-split: 1000px;
  --figma-programs: 1000px;
  --figma-reasons: 813.33px;
  --radius: 5px;
  /* fluid layout tokens (V4) */
  --gutter: clamp(20px, 5vw, 80px);
  --section-py: clamp(48px, 7vw, 100px);
  --fs-eyebrow: 62px;
  --lh-eyebrow: 82.667px;
  --fs-display: 62px;
  --lh-display: 82.667px;
  --fs-h2: 42px;
  --lh-h2: 42px;
  --fs-h3: 42px;
  --lh-h3: 50.4px;
  --fs-stat: 38px;
  --lh-stat: 45.6px;
  --fs-card-title: 32px;
  --lh-card-title: 32px;
  --fs-body: 16px;
  --lh-body: 21.333px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Afacad", "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: var(--lh-body);
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

ul,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

[lang="ko"] {
  font-family: "Afacad", "Noto Sans KR", Arial, sans-serif;
  word-break: keep-all;
}

.nw-frame {
  position: relative;
  width: 100%;
  max-width: var(--frame);
  margin: 0 auto;
}

.nw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 30px;
  border: 0;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nw-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.nw-button--orange {
  background: var(--orange);
  color: var(--white);
}

.nw-button--olive {
  background: var(--olive);
  color: var(--white);
}

.nw-button--teal {
  background: var(--teal);
  color: var(--white);
}

.nw-button--gold {
  background: var(--gold);
  color: var(--teal);
}

.nw-button--sky {
  background: var(--sky);
  color: var(--teal);
}

.nw-button--ghost {
  min-height: 44px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

.nw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 130px;
  color: var(--white);
  background: var(--teal);
}

.nw-header.is-stuck {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.nw-header__primary {
  height: 90px;
  background: var(--teal);
}

.nw-header__secondary {
  height: 40px;
  background: var(--teal-2);
}

.nw-header__inner,
.nw-subnav__inner {
  width: min(var(--content), calc(100vw - 100px));
  height: 100%;
}

.nw-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 23px;
}

.nw-brand {
  display: block;
  width: 198px;
  height: 44px;
  flex: 0 0 198px;
}

.nw-brand img {
  width: 198px;
  height: 44px;
}

.nw-nav--desktop {
  width: 743px;
  height: 44px;
}

.nw-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 44px;
}

.nw-nav__item,
.nw-subnav__list > li {
  position: relative;
}

.nw-nav__item.has-children::after,
.nw-subnav__list > li.has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  height: 20px;
}

.nw-nav__link,
.nw-nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease;
}

.nw-nav__item:not(.has-children) > .nw-nav__link::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 8px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity 180ms ease;
}

.nw-nav__item:not(.has-children) > .nw-nav__link:hover::after,
.nw-nav__item:not(.has-children) > .nw-nav__link:focus-visible::after {
  opacity: 1;
}

.nw-nav__item.has-children:hover > .nw-nav__trigger,
.nw-nav__item.has-children:focus-within > .nw-nav__trigger,
.nw-nav__item.has-children.is-open > .nw-nav__trigger {
  background: var(--sky);
  color: var(--teal);
}

.nw-header__give {
  width: 92px;
  height: 44px;
  min-height: 44px;
  padding: 10px 30px;
}

.nw-chevron {
  display: inline-flex;
  width: 9px;
  height: 5px;
  background: currentColor;
  mask: url("assets/v2/chevron-figma.svg") center / contain no-repeat;
  -webkit-mask: url("assets/v2/chevron-figma.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.has-children:not(.is-escape-suppressed):hover > button .nw-chevron,
.has-children:not(.is-escape-suppressed):focus-within > button .nw-chevron,
.has-children.is-open > button .nw-chevron {
  transform: rotate(180deg);
}

.nw-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 1px;
  z-index: 60;
  width: 250px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--teal);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(2px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nw-dropdown--sub {
  top: calc(100% + 19px);
  left: 0;
  background: var(--teal-2);
  color: var(--white);
}

.has-children:not(.is-escape-suppressed):hover > .nw-dropdown,
.has-children:not(.is-escape-suppressed):focus-within > .nw-dropdown,
.has-children.is-open > .nw-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nw-dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nw-dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 10px 20px;
  color: currentColor;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  transition: background-color 140ms ease, color 140ms ease;
}

.nw-dropdown a:hover,
.nw-dropdown a:focus-visible {
  background: var(--blue);
  color: var(--white);
  outline: 0;
}

.nw-dropdown--sub a {
  min-height: 41px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 21.333px;
}

.nw-dropdown--sub a:hover,
.nw-dropdown--sub a:focus-visible {
  background: var(--gold);
  color: var(--teal);
}

.nw-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nw-subnav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 40px;
}

.nw-subnav a,
.nw-subnav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 21.333px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease;
}

.nw-subnav a:hover,
.nw-subnav a:focus-visible,
.nw-subnav__list > li.has-children:hover > button,
.nw-subnav__list > li.has-children:focus-within > button,
.nw-subnav__list > li.has-children.is-open > button {
  color: var(--gold);
  outline: 0;
}

.nw-subnav .nw-dropdown--sub a:hover,
.nw-subnav .nw-dropdown--sub a:focus-visible {
  color: var(--teal);
}

.nw-request-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 129px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.nw-menu-toggle,
.nw-mobile-panel,
.nw-mobile-sticky-cta {
  display: none;
}


/* ============================================================
   PAGE SECTIONS — fluid, intrinsic responsive layout (V4)
   Flexbox layout that reflows at every width. No fixed canvas,
   no per-element absolute positioning, breakpoint-based type.
   ============================================================ */

.nw-section {
  position: relative;
  overflow: hidden;
}

/* one fluid content container for every section */
.nw-page-sections .nw-frame {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: var(--section-py);
}

.nw-row-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* shared section type */
.nw-section h2 { font-size: var(--fs-h2); font-weight: 700; line-height: var(--lh-h2); }
.nw-section h3[lang="ko"],
.nw-split-copy h3 { font-size: var(--fs-h3); font-weight: 700; line-height: var(--lh-h3); }
.nw-section p { font-size: var(--fs-body); line-height: var(--lh-body); }

/* ---------- Hero ---------- */
.nw-hero {
  color: var(--white);
  text-align: center;
}
.nw-hero .nw-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 18px);
  min-height: clamp(440px, 52vw, 560px);
}
.nw-hero__eyebrow { font-size: var(--fs-eyebrow); font-weight: 700; line-height: var(--lh-eyebrow); }
.nw-hero h1 { max-width: 20ch; font-size: var(--fs-display); font-weight: 700; line-height: var(--lh-display); }
.nw-hero__body {
  max-width: 60ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* ---------- Split sections (image + copy) ---------- */
.nw-method .nw-frame,
.nw-dean .nw-frame {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding-block: 100px;
  max-width: calc(var(--figma-split) + (var(--gutter) * 2));
}
.nw-split-media {
  flex: 1 1 420px;
  width: 100%;
  max-width: 500px;
  min-height: clamp(280px, 34vw, 480px);
  object-fit: cover;
}
.nw-split-copy {
  flex: 1 1 420px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.nw-method__panel,
.nw-dean__panel { background: var(--cream); color: var(--ink); }
.nw-method__panel h2,
.nw-method__panel h3,
.nw-dean__panel h2,
.nw-dean__panel h3 { color: var(--olive); }
.nw-testimonial__panel { background: var(--sky); color: var(--teal); }
.nw-testimonial__panel h2,
.nw-testimonial__panel h3 { color: var(--teal); }
.nw-method__panel .nw-button,
.nw-dean__byline { align-self: flex-start; }
.nw-testimonial__arrows { width: 80px; height: auto; }
.nw-dean__signature { width: 189px; height: auto; max-width: 100%; }
.nw-dean__byline strong { font-weight: 700; }
.nw-method .nw-split-media,
.nw-method__panel { min-height: clamp(360px, 40vw, 504px); }
.nw-dean .nw-split-media,
.nw-dean__panel { min-height: clamp(600px, 56vw, 804px); }

/* ---------- Why study in Canada ---------- */
.nw-why { background: var(--teal); color: var(--white); }
.nw-why__mask {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  opacity: 0.5;
  pointer-events: none;
}
.nw-why .nw-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 5.56vw, 80px);
  max-width: calc(var(--content) + 40px);
  padding-inline: 20px;
  padding-block: clamp(70px, 7vw, 100px);
}
.nw-why__copy {
  flex: 1 1 260px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 446.67px;
}
.nw-reason-grid {
  flex: 0 0 var(--figma-reasons);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  width: auto;
  max-width: var(--figma-reasons);
}
.nw-reason-card {
  flex: 0 0 calc((var(--figma-reasons) - 40px) / 3);
  max-width: none;
  min-height: 359px;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
  padding: clamp(24px, 2.4vw, 30px);
  border-radius: var(--radius);
}
.nw-reason-card h3 { font-size: var(--fs-card-title); font-weight: 700; line-height: var(--lh-card-title); }
.nw-reason-card h4 { font-size: var(--fs-stat); font-weight: 700; line-height: var(--lh-stat); }
.nw-reason-card--sky { background: var(--sky); color: var(--teal); }
.nw-reason-card--orange { background: var(--orange); color: var(--white); }
.nw-reason-card--gold { background: var(--gold); color: var(--teal); }

/* ---------- Programs ---------- */
.nw-programs { background: var(--white); color: var(--teal); text-align: center; }
.nw-programs .nw-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
}
.nw-programs__intro { max-width: 70ch; color: var(--ink); }
.nw-program-grid {
  width: 100%;
  max-width: var(--figma-programs);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(18px, 2.2vw, 30px);
}
.nw-program-card {
  flex: 1 1 420px;
  max-width: 490px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.4vw, 20px);
  padding: clamp(28px, 3vw, 40px);
  background: var(--cream);
  color: var(--teal);
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}
.nw-program-card img { width: 50px; height: 50px; }
.nw-program-card h3 { font-size: var(--fs-card-title); font-weight: 700; line-height: var(--lh-card-title); }
.nw-program-card .nw-button { margin-top: auto; }
.nw-program-card:hover,
.nw-program-card:focus-within {
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(17, 56, 64, 0.12);
  color: var(--white);
  transform: translateY(-4px);
}
.nw-program-card:hover .nw-button,
.nw-program-card:focus-within .nw-button { background: var(--gold); color: var(--teal); }

/* ---------- Full-width 50/50 testimonial ---------- */
.nw-testimonial { background: var(--white); }
.nw-testimonial .nw-frame {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding: 0;
}
.nw-testimonial__panel,
.nw-testimonial__image {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
  min-height: clamp(480px, 50vw, 720px);
}
.nw-testimonial__panel {
  padding: clamp(32px, 5vw, 50px);
}
.nw-testimonial__panel > * {
  max-width: 620px;
}
.nw-testimonial__image {
  object-fit: cover;
}

/* ---------- Advisor form ---------- */
.nw-advisor { background: var(--blue); color: var(--white); }
.nw-advisor .nw-frame {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(32px, 5.58vw, 80px);
  align-items: flex-start;
  max-width: var(--content);
  padding: 100px 0;
}
.nw-advisor__copy {
  flex: 0 0 min(446.67px, 34%);
  max-width: 446.67px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nw-advisor__form {
  flex: 1 1 auto;
  max-width: 813px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
  align-items: flex-start;
}
.nw-advisor__form label {
  display: flex;
  flex-direction: column;
  gap: 9.667px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: var(--lh-body);
}
.field-label { color: var(--white); }
.field-label span { color: var(--gold); }
.nw-advisor__form input,
.nw-advisor__form textarea {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.nw-advisor__form input { height: 50px; padding: 12px 14px; }
.nw-advisor__form textarea { min-height: 249px; padding: 12px 14px; resize: vertical; }
.nw-advisor__form input:focus,
.nw-advisor__form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234, 182, 0, 0.25);
}
.field-message,
.nw-advisor__form > .nw-button,
.form-message { grid-column: 1 / -1; }
.nw-advisor__form > .nw-button { justify-self: start; min-width: 120px; margin-top: 10px; }
.form-message { color: var(--sky); font-weight: 700; }
.form-message:empty { display: none; }

/* ---------- News & stories ---------- */
.nw-news { background: var(--white); color: var(--teal); }
.nw-news .nw-frame {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
}
.nw-news h2 { color: var(--orange); }
.nw-news__intro { max-width: 72ch; color: var(--ink); }
.nw-news__arrows { display: flex; gap: 10px; align-self: flex-end; }
.nw-carousel-button {
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  background: transparent url("assets/v2/news-arrows-figma.svg") left center / 80px 35px no-repeat;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease;
}
.nw-carousel-button--next { background-position: right center; }
.nw-carousel-button:hover,
.nw-carousel-button:focus-visible {
  opacity: 0.72;
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.nw-story-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.nw-story-carousel::-webkit-scrollbar { display: none; }
.nw-story-rail { display: flex; gap: 20px; width: max-content; }
.nw-story-card {
  position: relative;
  flex: 0 0 clamp(248px, 74vw, 300px);
  height: clamp(360px, 58vw, 400px);
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}
.nw-story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.nw-story-card::after { content: ""; position: absolute; inset: 0; background: rgba(17, 56, 64, 0.5); }
.nw-story-card:hover,
.nw-story-card:focus-within { transform: translateY(-4px); }
.nw-story-card:hover img,
.nw-story-card:focus-within img { transform: scale(1.05); }
.nw-story-card > div { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 20px; }
.nw-story-card h3 { font-size: var(--fs-card-title); font-weight: 700; line-height: var(--lh-card-title); }
.nw-story-card p { margin-top: 14px; }
.nw-story-card .nw-button { margin-top: 22px; }
.nw-story-card:hover .nw-button,
.nw-story-card:focus-within .nw-button { border-color: var(--white); background: var(--white); color: var(--teal); }

/* ---------- Final CTA ---------- */
.nw-final-cta { color: var(--white); text-align: center; }
.nw-final-cta .nw-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 20px);
  min-height: clamp(380px, 38vw, 500px);
}
.nw-final-cta h2,
.nw-final-cta h3 { line-height: 56px; }
.nw-final-cta h3 { font-size: var(--fs-h3); font-weight: 700; }
.nw-final-cta p { max-width: 60ch; }

@media (max-width: 1439px) {
  .nw-advisor .nw-frame {
    max-width: 100%;
    padding-inline: var(--gutter);
  }
}

@media (max-width: 1399px) {
  .nw-header {
    height: 84px;
  }

  .nw-header__primary {
    height: 84px;
  }

  .nw-header__secondary,
  .nw-nav--desktop {
    display: none;
  }

  .nw-header__inner {
    width: 100%;
    padding: 20px 25px;
    align-items: center;
    justify-content: flex-start;
  }

  .nw-brand {
    width: 150px;
    height: 33px;
    flex: 0 0 150px;
    margin-right: auto;
  }

  .nw-brand img {
    width: 150px;
    height: 33px;
  }

  .nw-header__give {
    display: inline-flex;
    width: 72px;
    height: 44px;
    min-height: 44px;
    padding: 10px 20px;
  }

  .nw-menu-toggle {
    display: inline-flex;
    position: relative;
    width: 27px;
    height: 44px;
    margin-left: 25px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
  }

  .nw-menu-toggle__bars,
  .nw-menu-toggle__close {
    position: relative;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .nw-menu-toggle__bars {
    width: 27px;
    height: 20px;
    background-image: url("assets/v2/mobile-icons/hamburger.svg");
  }

  .nw-menu-toggle__close {
    display: none;
    width: 20px;
    height: 20px;
    background-image: url("assets/v2/mobile-icons/close.svg");
  }

  .nw-header.is-mobile-open .nw-menu-toggle__bars {
    display: none;
  }

  .nw-header.is-mobile-open .nw-menu-toggle__close {
    display: block;
  }

  .nw-mobile-panel {
    display: block;
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    z-index: 49;
    width: min(402px, 100vw);
    max-width: 100vw;
    background: var(--teal);
    color: var(--white);
    box-shadow: -18px 0 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nw-header.is-mobile-open .nw-mobile-panel {
    transform: translateX(0);
  }

  .nw-mobile-track {
    display: flex;
    width: 200%;
    height: 100%;
    transform: translateX(0);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nw-header.is-mobile-deep .nw-mobile-track {
    transform: translateX(-50%);
  }

  .nw-mobile-screen {
    width: 50%;
    height: 100%;
    flex: 0 0 50%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    background: var(--teal);
  }

  .nw-mobile-screen::-webkit-scrollbar {
    display: none;
  }

  .nw-mobile-row {
    display: flex;
    width: 100%;
    height: 69px;
    align-items: center;
    gap: 25px;
    padding: 0 25px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 29.333px;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
  }

  .nw-mobile-row__label {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    min-width: 0;
  }

  .nw-mobile-row--active,
  .nw-mobile-row:hover,
  .nw-mobile-row:focus-visible {
    background: var(--sky);
    color: var(--teal);
    outline: 0;
  }

  .nw-mobile-separator {
    position: relative;
    height: 41px;
  }

  .nw-mobile-separator::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 25px;
    right: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
  }

  .nw-mobile-icon,
  .nw-mobile-bottom-icon,
  .nw-mobile-arrow,
  .nw-mobile-back__arrow {
    display: inline-block;
    flex: 0 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .nw-mobile-icon {
    width: 25px;
    height: 25px;
  }

  .nw-mobile-icon--method { background-image: url("assets/v2/mobile-icons/method.svg"); }
  .nw-mobile-icon--partner { width: 25px; height: 17px; background-image: url("assets/v2/mobile-icons/partner.svg"); }
  .nw-mobile-icon--news { width: 25px; height: 18px; background-image: url("assets/v2/mobile-icons/news.svg"); }
  .nw-mobile-icon--events { width: 25px; height: 27px; background-image: url("assets/v2/mobile-icons/events.svg"); }
  .nw-mobile-icon--about { background-image: url("assets/v2/mobile-icons/about.svg"); }
  .nw-mobile-icon--gap { width: 25px; height: 24px; background-image: url("assets/v2/mobile-icons/gap.svg"); }
  .nw-mobile-icon--undergraduate { width: 25px; height: 21px; background-image: url("assets/v2/mobile-icons/undergraduate.svg"); }
  .nw-mobile-icon--graduate { width: 30px; height: 26px; background-image: url("assets/v2/mobile-icons/graduate.svg"); }
  .nw-mobile-icon--postgraduate { width: 25px; height: 21px; background-image: url("assets/v2/mobile-icons/postgraduate.svg"); }
  .nw-mobile-icon--formation { background-image: url("assets/v2/mobile-icons/formation.svg"); }
  .nw-mobile-icon--language { width: 25px; height: 22px; background-image: url("assets/v2/mobile-icons/language.svg"); }
  .nw-mobile-icon--admissions { background-image: url("assets/v2/mobile-icons/admissions.svg"); }
  .nw-mobile-icon--give { width: 25px; height: 21px; background-image: url("assets/v2/mobile-icons/give.svg"); }
  .nw-mobile-icon--submenu-gap { width: 25px; height: 24px; background-image: url("assets/v2/mobile-icons/submenu-gap.svg"); }
  .nw-mobile-icon--certificate { width: 25px; height: 21px; background-image: url("assets/v2/mobile-icons/certificate.svg"); }
  .nw-mobile-icon--leadership { width: 25px; height: 26px; background-image: url("assets/v2/mobile-icons/leadership.svg"); }
  .nw-mobile-icon--korean { width: 25px; height: 23px; background-image: url("assets/v2/mobile-icons/korean.svg"); }
  .nw-mobile-icon--french { width: 25px; height: 23px; background-image: url("assets/v2/mobile-icons/french.svg"); }

  .nw-mobile-arrow {
    width: 10px;
    height: 17px;
    margin-left: auto;
    background-image: url("assets/v2/mobile-icons/chevron.svg");
  }

  .nw-mobile-row--active .nw-mobile-arrow {
    background-image: url("assets/v2/mobile-icons/chevron-undergraduate.svg");
  }

  .nw-mobile-back__arrow {
    width: 7px;
    height: 12px;
    background-image: url("assets/v2/mobile-icons/back.svg");
  }

  .nw-mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 29px;
    margin: 20px 0 0 25px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    line-height: 29.333px;
    cursor: pointer;
  }

  .nw-mobile-screen--submenu h2 {
    margin: 6px 25px 0;
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
  }

  .nw-mobile-subintro {
    width: 268px;
    margin: 10px 25px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 24px;
  }

  .nw-mobile-program-list {
    margin-top: 7px;
  }

  .nw-mobile-program-row {
    display: flex;
    min-height: 109px;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 25px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 160ms ease;
  }

  .nw-mobile-program-row:hover,
  .nw-mobile-program-row:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    outline: 0;
  }

  .nw-mobile-program-row > span:last-child {
    display: flex;
    flex-direction: column;
    width: 268px;
  }

  .nw-mobile-program-row strong {
    font-size: 22px;
    font-weight: 700;
    line-height: 29.333px;
  }

  .nw-mobile-program-row span span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 18px;
    max-height: 36px;
    overflow: hidden;
  }

  .nw-mobile-request {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 45px);
    height: 59px;
    margin: 20px 20px 30px 25px;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--teal);
    font-size: 22px;
    font-weight: 700;
    line-height: 29.333px;
    text-align: center;
  }

  .nw-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 48;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: var(--teal);
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.24);
    transform: translateY(0);
    transform-origin: bottom center;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .nw-mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .nw-mobile-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 382px;
    min-height: 48px;
  }

  .nw-mobile-sticky-cta__item {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 2px 3px;
    color: var(--white);
    font-size: clamp(11px, 3.2vw, 13px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .nw-mobile-sticky-cta__item > span:last-child {
    width: 100%;
  }

  .nw-mobile-sticky-cta__divider {
    flex: 0 0 1px;
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.55);
  }

  .nw-mobile-sticky-cta__item:hover,
  .nw-mobile-sticky-cta__item:focus-visible {
    color: var(--gold);
    outline: 0;
  }

  .nw-mobile-bottom-icon {
    align-self: center;
  }

  .nw-mobile-bottom-icon--students {
    width: 17px;
    height: 15px;
    background-image: url("assets/v2/mobile-icons/bottom-korean-students.svg");
  }

  .nw-mobile-bottom-icon--networks {
    width: 13px;
    height: 15px;
    background-image: url("assets/v2/mobile-icons/bottom-korean-networks.svg");
  }

  .nw-mobile-bottom-icon--advisor {
    width: 15px;
    height: 15px;
    background-image: url("assets/v2/mobile-icons/bottom-talk-advisor.svg");
  }
}


@media (max-width: 1100px) {
  .nw-advisor .nw-frame {
    flex-wrap: wrap;
    gap: 32px;
  }

  .nw-advisor__copy {
    flex: 1 1 100%;
    max-width: 560px;
  }

  .nw-advisor__form {
    flex: 1 1 100%;
    width: 100%;
    max-width: 813px;
  }
}

@media (max-width: 1160px) {
  .nw-why .nw-frame {
    align-items: flex-start;
    gap: clamp(28px, 5vw, 48px);
  }

  .nw-why__copy {
    flex: 1 1 100%;
    max-width: 560px;
  }

  .nw-reason-grid {
    flex: 0 1 var(--figma-reasons);
    width: 100%;
  }
}

@media (max-width: 900px) {
  :root {
    --fs-eyebrow: 42px;
    --lh-eyebrow: 50px;
    --fs-display: 42px;
    --lh-display: 50px;
    --fs-h2: 34px;
    --lh-h2: 38px;
    --fs-h3: 32px;
    --lh-h3: 38px;
    --fs-stat: 34px;
    --lh-stat: 40px;
    --fs-card-title: 28px;
    --lh-card-title: 30px;
  }

  .nw-reason-grid {
    flex: 1 1 100%;
    justify-content: center;
    max-width: 620px;
  }

  .nw-reason-card {
    flex: 1 1 240px;
    max-width: 300px;
  }

  .nw-testimonial .nw-frame {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .nw-testimonial__panel,
  .nw-testimonial__image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .nw-testimonial__panel {
    min-height: auto;
  }

  .nw-testimonial__image {
    min-height: clamp(360px, 100vw, 620px);
  }
}

@media (max-width: 680px) {
  :root {
    --fs-eyebrow: 34px;
    --lh-eyebrow: 42px;
    --fs-display: 34px;
    --lh-display: 42px;
    --fs-h2: 30px;
    --lh-h2: 34px;
    --fs-h3: 28px;
    --lh-h3: 34px;
    --fs-stat: 32px;
    --lh-stat: 38px;
    --fs-card-title: 26px;
    --lh-card-title: 30px;
  }

  .nw-method .nw-frame,
  .nw-dean .nw-frame {
    padding-block: 60px;
  }

  .nw-split-copy {
    padding: 30px;
  }

  .nw-why .nw-frame {
    align-items: stretch;
  }

  .nw-why__copy {
    max-width: none;
  }

  .nw-reason-card,
  .nw-program-card {
    max-width: 100%;
    flex-basis: 100%;
  }

  .nw-reason-grid {
    align-items: flex-start;
  }

  .nw-reason-card {
    min-height: 0;
    height: auto;
  }

  .nw-advisor__form {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 16px;
  }

  .field-message,
  .nw-advisor__form > .nw-button,
  .form-message {
    grid-column: auto;
  }

  .nw-testimonial__panel,
  .nw-testimonial__image {
    flex-basis: 100%;
    width: 100%;
  }

  .nw-testimonial__panel {
    min-height: auto;
  }

  .nw-final-cta h2,
  .nw-final-cta h3 {
    line-height: var(--lh-h2);
  }
}

/* clear the fixed mobile bottom CTA so it never covers content */
@media (max-width: 1399px) {
  body { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
