:root {
  --forest: #064f43;
  --forest-deep: #033d35;
  --forest-soft: #e7efeb;
  --ivory: #f7f4ea;
  --ivory-2: #fbfaf5;
  --sand: #e6c490;
  --olive: #717a52;
  --charcoal: #1d211f;
  --muted: #676c68;
  --line: rgba(6, 79, 67, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(20, 36, 31, 0.09);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Noto Serif SC", "Songti SC", STSong, Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory-2);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 234, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,79,67,0.08);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 54px;
  height: 42px;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-cn {
  margin-top: 4px;
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.12em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #3f4541;
}
.nav-links a:not(.lang-link) {
  position: relative;
  padding: 27px 0 25px;
}
.nav-links a:not(.lang-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width 180ms ease;
}
.nav-links a:hover::after { width: 100%; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 4px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  letter-spacing: 0.08em;
}
.lang-link { color: #7a7f7b; }
.lang-link.active { color: var(--forest); font-weight: 700; }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(620px, calc(100vh - 78px), 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('./assets/hero-melbourne.webp');
  background-size: cover;
  background-position: center 54%;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 31, 27, 0.76) 0%, rgba(2, 31, 27, 0.55) 36%, rgba(2, 31, 27, 0.14) 68%, rgba(2, 31, 27, 0.04) 100%),
    linear-gradient(0deg, rgba(2, 31, 27, 0.45) 0%, transparent 45%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
}
.hero-copy { max-width: 940px; }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #f4ddba;
}
.hero-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--sand);
}
.hero h1 {
  margin: 0 0 0 clamp(30px, 2.8vw, 54px);
  max-width: 920px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(50px, 4.65vw, 70px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero .hero-support {
  margin: 24px 0 0 clamp(46px, 3.8vw, 72px);
  max-width: 760px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.75;
  color: rgba(255,255,255,0.94);
}
.hero .hero-detail {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}
.hero-actions {
  margin: 30px 0 0 clamp(46px, 3.8vw, 72px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.hero-button:hover { transform: translateY(-2px); }
.hero-button:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}
.hero-button-primary {
  background: var(--sand);
  color: var(--forest-deep);
}
.hero-button-primary:hover { background: #f0d3a6; }
.hero-button-secondary {
  border-color: rgba(255,255,255,0.62);
  background: rgba(3,61,53,0.14);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero-button-secondary::after {
  content: "↓";
  margin-left: 10px;
  font-size: 15px;
}
.hero-button-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}
.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
}
.hero-scroll::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,0.55);
}

/* Homepage hero: one-time entrance without changing layout or background rendering. */
@keyframes home-hero-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, var(--home-hero-shift, 10px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-hero-line-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes home-hero-arrow-drift {
  0%, 16%, 100% { transform: translateY(0); }
  8% { transform: translateY(3px); }
}

.home-page .hero-kicker {
  --home-hero-shift: 6px;
  animation: home-hero-content-in .55s cubic-bezier(.22, 1, .36, 1) .05s both;
}

.home-page .hero-kicker::before {
  transform-origin: left center;
  animation: home-hero-line-in .55s cubic-bezier(.22, 1, .36, 1) .05s both;
}

.home-page .hero h1 {
  --home-hero-shift: 12px;
  animation: home-hero-content-in .9s cubic-bezier(.22, 1, .36, 1) .15s both;
}

.home-page .hero .hero-support {
  --home-hero-shift: 10px;
  animation: home-hero-content-in .75s cubic-bezier(.22, 1, .36, 1) .32s both;
}

.home-page .hero-actions {
  --home-hero-shift: 8px;
  animation: home-hero-content-in .72s cubic-bezier(.22, 1, .36, 1) .48s both;
}

.home-page .hero-button-secondary::after {
  animation: home-hero-arrow-drift 2.4s ease-in-out 1.35s infinite;
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}
.section.soft { background: var(--ivory); }
.section.green-wash { background: #edf2ee; }
.section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 38px;
  margin-bottom: 58px;
  align-items: start;
}
.section-index {
  padding-top: 9px;
  color: var(--olive);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-title h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.section-title > p {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.content-grid {
  margin-left: 188px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.study-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.study-grid .service-card:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 24px) / 2);
  justify-self: center;
}
.service-card {
  min-height: 360px;
  padding: 34px 34px 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6,79,67,0.28);
  box-shadow: var(--shadow);
}
.card-label {
  margin-bottom: 50px;
  color: var(--olive);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-card h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.study-course-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 0.22em;
}
.study-course-latin {
  display: inline-block;
  transform: translateY(0.06em);
  letter-spacing: -0.025em;
}
.card-lead {
  margin: 14px 0 0;
  color: #3c443f;
  font-size: 16px;
  font-weight: 600;
}
.card-body {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.card-link {
  margin-top: auto;
  padding-top: 28px;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.card-link::after {
  content: "→";
  transition: transform 180ms ease;
}
.service-card:hover .card-link::after { transform: translateX(5px); }

.single-service {
  margin-left: 188px;
  padding: 44px 48px;
  background: var(--forest);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
.single-service h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.25;
  font-weight: 600;
}
.single-service .card-lead { color: #f4ddba; margin-top: 16px; }
.single-service .card-body { margin-top: 0; color: rgba(255,255,255,0.78); }
.single-service .note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
}

.why-section {
  padding: 120px 0;
  background: var(--forest-deep);
  color: var(--white);
}
.why-head {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 38px;
  margin-bottom: 64px;
}
.why-head .section-index { color: var(--sand); }
.why-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 600;
  line-height: 1.15;
}
.why-grid {
  margin-left: 188px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.15);
}
.why-item {
  padding: 34px 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.why-number {
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.why-item h3 {
  margin: 30px 0 16px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}
.why-item p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.8;
}

.contact-cta {
  padding: 104px 0;
  background: var(--sand);
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 80px;
  align-items: end;
}
.contact-cta h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  color: var(--forest-deep);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.contact-cta p {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(29,33,31,0.72);
}
.contact-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 24px;
  background: var(--forest-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, background 180ms ease;
}
.contact-button:hover { transform: translateY(-2px); background: var(--forest); }

.footer {
  padding: 72px 0 0;
  background: #F1EBDD;
  color: #5F6862;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr;
  gap: 60px;
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer-brand img {
  width: 68px;
  filter: none;
}
.footer-brand h3 {
  margin: 0;
  color: #0E493D;
  font-family: var(--serif);
  font-size: 26px;
}
.footer-brand p {
  margin: 10px 0 0;
  max-width: 440px;
  color: #5F6862;
  font-size: 13px;
}
.footer-brand p strong { color: #0E493D !important; }
.footer h4 {
  margin: 0 0 18px;
  color: #A67C38;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 9px 0;
  color: #5F6862;
  font-size: 13px;
}
.footer-grid > div:nth-child(2) a { color: #0E493D; }
.footer a:hover { color: #A67C38; }
.footer-bottom {
  position: relative;
  z-index: 0;
  margin-top: 58px;
  padding: 24px 0 34px;
  border-top: 1px solid #D7CCB8;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(241,235,221,0.72);
  font-size: 11px;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: #0E332C;
}
.footer-bottom a { color: rgba(241,235,221,0.72); }
.footer-bottom a:hover { color: #F1EBDD; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links > span {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}

/* Non-link labels are used until policy pages are created. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav-links { gap: 14px; font-size: 14px; }
  .brand-cn { display: none; }
  .section-head, .why-head { grid-template-columns: 100px minmax(0,1fr); }
  .content-grid, .single-service, .why-grid { margin-left: 138px; }
  .study-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .container { width: min(100% - 36px, 1180px); }
  .nav { min-height: 70px; }
  .brand-mark { width: 48px; }
  .brand-name { font-size: 18px; }
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 18px 18px 24px;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a:not(.lang-link) { padding: 12px 4px; }
  .nav-links a:not(.lang-link)::after { display: none; }
  .lang-switch { margin: 8px 0 0; padding: 14px 4px 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero { min-height: 700px; background-position: 56% center; }
  .hero::before {
    background: linear-gradient(90deg, rgba(2,31,27,.78) 0%, rgba(2,31,27,.58) 55%, rgba(2,31,27,.18) 100%), linear-gradient(0deg, rgba(2,31,27,.5), transparent 52%);
  }
  .home-page .hero h1 { --home-hero-shift: 8px; }
  .home-page .hero .hero-support { --home-hero-shift: 7px; }
  .home-page .hero-actions { --home-hero-shift: 6px; }
  .hero h1 { margin-left: clamp(24px, 3vw, 38px); font-size: clamp(44px, 8vw, 62px); max-width: 760px; }
  .hero .hero-support { margin-left: 40px; }
  .hero-scroll { display: none; }
  .section { padding: 84px 0; }
  .section-head, .why-head { grid-template-columns: 1fr; gap: 12px; }
  .section-index { padding-top: 0; }
  .content-grid, .single-service, .why-grid { margin-left: 0; }
  .study-grid { grid-template-columns: 1fr; }
  .study-grid .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  .single-service { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-name { font-size: 16px; }
  .hero { min-height: 690px; background-position: 61% center; }
  .hero-inner { padding: 0; }
  .hero-kicker { font-size: 14px; margin-bottom: 18px; }
  .hero h1 { margin-left: 20px; font-size: clamp(40px, 11.5vw, 54px); line-height: 1.14; }
  .hero .hero-support { margin-left: 30px; font-size: 17px; line-height: 1.7; }
  .hero-actions { margin-top: 24px; margin-left: 30px; gap: 10px; }
  .hero-button { min-height: 48px; padding: 0 18px; font-size: 12px; }
  .hero .hero-detail { font-size: 13px; }
  .section-title h2, .why-head h2 { font-size: 42px; }
  .section-title > p { font-size: 16px; }
  .content-grid, .why-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px 24px; }
  .card-label { margin-bottom: 34px; }
  .single-service { padding: 34px 26px; }
  .why-item { padding: 30px 24px 34px; }
  .contact-cta { padding: 80px 0; }
  .contact-cta h2 { font-size: 43px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Study landing page */
.nav-links a.current {
  color: var(--forest);
  font-weight: 700;
}
.nav-links a.current::after { width: 100%; }

.study-page {
  background: #fbfaf5;
}
.study-page main [id] {
  scroll-margin-top: 96px;
}
.study-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f3e8 0%, #f1ebdd 100%);
  border-bottom: 1px solid #d7ccb8;
}
.study-campus-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}
.study-campus-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: inherit;
  object-position: inherit;
}
.study-hero-copy {
  position: relative;
  z-index: 2;
}
.study-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  gap: 88px;
  align-items: center;
}
.study-eyebrow {
  margin: 0 0 16px;
  color: #a67c38;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.study-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  color: #0e493d;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.study-hero-copy > p:not(.study-eyebrow) {
  margin: 28px 0 0;
  max-width: 720px;
  color: #5f6862;
  font-size: clamp(18px,1.7vw,23px);
  line-height: 1.8;
}
.study-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.study-hero .hero-button-primary {
  background: #0e493d;
  color: #fff;
}
.study-hero .hero-button-primary:hover { background: #0e332c; }
.study-hero .hero-button-secondary {
  border-color: rgba(14,73,61,.5);
  background: transparent;
  color: #0e493d;
  backdrop-filter: none;
}
.study-hero .hero-button-secondary:hover {
  border-color: #0e493d;
  background: rgba(14,73,61,.06);
}

.study-page #services {
  padding: 96px 0;
  background: var(--study-canvas);
  color: var(--study-title);
}
.study-page .study-services-layout {
  display: grid;
  grid-template-columns: minmax(0,36fr) minmax(0,64fr);
  gap: 80px;
  align-items: center;
}
.study-page #services .study-nav-heading {
  max-width: 440px;
  margin: 0;
}
.study-page #services .study-nav-heading h2 {
  margin: 0;
  color: var(--study-title);
  font-family: var(--serif);
  font-size: clamp(52px,4.4vw,62px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.study-page #services .study-nav-heading > p:last-child {
  margin: 22px 0 0;
  max-width: 430px;
  color: var(--study-copy);
  font-size: 17px;
  line-height: 1.8;
}
.study-page .study-service-directory {
  min-width: 0;
  background: transparent;
  border-top: 1px solid rgba(14,73,61,.24);
}
.study-page .study-service-row {
  min-height: 0;
  padding: 34px 18px;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) 28px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(14,73,61,.24);
  background: transparent;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(.22,.61,.36,1),
    background-color 240ms ease;
}
.study-page .study-service-row.reveal {
  transform: translateY(12px);
}
.study-page .study-service-row.reveal.visible {
  transform: none;
}
.study-page .study-service-row.reveal.visible:nth-child(2) {
  transition-delay: 100ms,100ms,0ms;
}
.study-page .study-service-row.reveal.visible:nth-child(3) {
  transition-delay: 200ms,200ms,0ms;
}
.study-page .study-service-number {
  color: var(--study-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1;
  transition: color 240ms ease;
}
.study-page .study-service-copy {
  min-width: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px 14px;
}
.study-page .study-service-name {
  display: inline-block;
  color: var(--study-title);
  font-family: var(--serif);
  font-size: clamp(26px,2vw,31px);
  font-weight: 600;
  line-height: 1.28;
  transition: color 240ms ease, transform 240ms ease;
}
.study-page .study-service-status {
  width: fit-content;
  padding: 4px 8px 3px;
  border: 1px solid rgba(166,124,56,.65);
  border-radius: 999px;
  background: rgba(226,194,141,.08);
  color: var(--study-label);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
  white-space: nowrap;
}
.study-page .study-service-arrow {
  justify-self: end;
  color: var(--study-label);
  font-size: 23px;
  line-height: 1;
  transition: color 240ms ease, transform 240ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .study-page .study-service-row:hover {
    background: rgba(14,73,61,.045);
  }
  .study-page .study-service-row:hover .study-service-number {
    color: #8f672c;
  }
  .study-page .study-service-row:hover .study-service-name {
    transform: translateX(5px);
  }
  .study-page .study-service-row:hover .study-service-arrow {
    transform: translateX(4px);
  }
}
.study-page .study-service-row:focus-visible {
  outline: 2px solid rgba(14,73,61,.78);
  outline-offset: -2px;
  background: rgba(14,73,61,.055);
}

.study-simple-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px,4.5vw,64px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.study-primary-action:focus-visible,
.study-inline-link:focus-visible,
.study-final-button:focus-visible {
  outline: 2px solid #e6c490;
  outline-offset: 4px;
}
.study-state {
  width: fit-content;
  margin-top: 22px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.state-open { color: #0e493d; background: #e8d3ad; border-color: #e8d3ad; }
.state-limited { color: #f1ebdd; background: rgba(241,235,221,.09); border-color: rgba(241,235,221,.45); }
.state-building { color: #d9c392; background: transparent; border-color: rgba(217,195,146,.55); }
.study-detail .state-limited {
  color: #0e493d;
  background: rgba(14,73,61,.06);
  border-color: rgba(14,73,61,.34);
}
.study-detail .state-building {
  color: #8a672d;
  background: rgba(166,124,56,.06);
  border-color: rgba(166,124,56,.42);
}

.study-detail {
  padding: 112px 0;
  border-bottom: 1px solid #d7ccb8;
}
.study-detail-light { background: #fbfaf5; }
.study-detail-green { background: #e8efea; }
.study-detail-warm { background: #f1ebdd; }
.study-section-head {
  display: grid;
  grid-template-columns: 170px minmax(0,1fr);
  gap: 56px;
  align-items: start;
}
.study-section-head > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.study-section-number {
  color: #a67c38;
  font-size: 13px;
  letter-spacing: .18em;
}
.study-section-head .study-state { margin-top: 24px; }
.study-section-head h2 {
  margin: 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: clamp(42px,4.7vw,68px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.study-section-head .study-lead {
  margin: 24px 0 0;
  max-width: 900px;
  color: #303b36;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.75;
}
.study-section-head > div:last-child > p:not(.study-eyebrow):not(.study-lead) {
  margin: 22px 0 0;
  max-width: 900px;
  color: #5f6862;
  font-size: 16px;
  line-height: 1.85;
}
.course-content-block {
  margin: 78px 0 0 226px;
}
.course-content-head {
  max-width: 940px;
}
.course-content-head h3,
.study-block-title h3,
.development-panel h3,
.current-project h3 {
  margin: 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: clamp(28px,2.5vw,40px);
  font-weight: 600;
  line-height: 1.25;
}
.course-content-head h3 {
  font-size: clamp(34px,3.25vw,48px);
}
.course-intro {
  margin: 22px 0 0;
  max-width: 900px;
  color: #5f6862;
  font-size: 16px;
  line-height: 1.85;
}
.go8-number {
  color: #a67c38;
  font-size: 11px;
  letter-spacing: .15em;
}
.go8-section {
  margin: 78px 0 0;
}
.go8-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  grid-auto-rows: 1fr;
  border-top: 1px solid #d7ccb8;
  border-left: 1px solid #d7ccb8;
}
.go8-card {
  height: 430px;
  padding: 25px 24px 28px;
  border-right: 1px solid #d7ccb8;
  border-bottom: 1px solid #d7ccb8;
  background: rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
}
.go8-card h4 {
  margin: 22px 0 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: clamp(20px,1.65vw,24px);
  font-weight: 600;
  line-height: 1.25;
}
.go8-name-en {
  min-height: 34px;
  margin: 7px 0 0;
  color: #69736e;
  font-size: 11px;
  line-height: 1.5;
}
.go8-city {
  width: fit-content;
  margin: 10px 0 0;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(166,124,56,.45);
  color: #a67c38;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.go8-card h5 {
  margin: 22px 0 0;
  color: #0e493d;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}
.go8-description {
  margin: 12px 0 0;
  color: #5f6862;
  font-size: 12.5px;
  line-height: 1.72;
}
.vet-section {
  margin: 78px 0 0;
}
.vet-intro {
  max-width: 900px;
  margin-top: 22px;
}
.vet-intro p {
  margin: 0;
  color: #5f6862;
  font-size: 16px;
  line-height: 1.85;
}
.vet-intro p + p {
  margin-top: 16px;
}
.vet-card {
  height: 390px;
}
.study-process-block {
  margin: 76px 0 0;
}
.study-block-title { max-width: 720px; }
.study-step-grid,
.study-start-grid {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  border-top: 1px solid rgba(14,73,61,.18);
  border-left: 1px solid rgba(14,73,61,.18);
}
.study-step-grid li,
.study-start-grid li {
  min-height: 245px;
  padding: 26px;
  border-right: 1px solid rgba(14,73,61,.18);
  border-bottom: 1px solid rgba(14,73,61,.18);
}
.study-step-grid li > span,
.study-start-grid li > span,
.academic-feature > span {
  color: #a67c38;
  font-size: 11px;
  letter-spacing: .15em;
}
.study-step-grid strong {
  margin-top: 28px;
  display: block;
  color: #0e493d;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}
.study-step-grid p,
.study-start-grid p,
.academic-feature p {
  margin: 14px 0 0;
  color: #5f6862;
  font-size: 14px;
  line-height: 1.75;
}
.study-primary-action {
  width: fit-content;
  min-height: 54px;
  margin: 42px 0 0;
  padding: 0 25px;
  background: #0e493d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background 180ms ease, transform 180ms ease;
}
.study-primary-action:hover { background: #0e332c; transform: translateY(-2px); }
.study-inline-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(14,73,61,.3);
  color: #0e493d;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.study-inline-link:hover { color: #a67c38; border-color: #a67c38; }

.academic-feature-grid {
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-top: 1px solid rgba(14,73,61,.16);
  border-left: 1px solid rgba(14,73,61,.16);
}
.academic-feature {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid rgba(14,73,61,.16);
  border-bottom: 1px solid rgba(14,73,61,.16);
}
.academic-feature h3 {
  margin: 28px 0 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}
.current-project {
  margin: 32px 0 0;
  padding: 44px;
  background: #0e332c;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 56px;
}
.current-project h3 { color: #fff; }
.current-project p {
  margin: 20px 0 0;
  color: rgba(255,255,255,.72);
}
.current-project .study-state { margin-top: 0; }
.current-project-scope {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.current-project-scope strong { color: #e6c490; }
.current-project .study-primary-action {
  margin: 28px 0 0;
  background: #e6c490;
  color: #0e332c;
}
.current-project .study-primary-action:hover { background: #f0d3a6; }

/* Academic Support product */
.academic-support-overview {
  margin: 78px 0 0;
}
.academic-support-overview-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  grid-auto-rows: 1fr;
  border-top: 1px solid rgba(14,73,61,.18);
  border-left: 1px solid rgba(14,73,61,.18);
}
.academic-support-overview-item {
  min-height: 340px;
  padding: 28px 26px 32px;
  border-right: 1px solid rgba(14,73,61,.18);
  border-bottom: 1px solid rgba(14,73,61,.18);
  background: rgba(255,255,255,.28);
  display: flex;
  flex-direction: column;
}
.academic-support-number {
  color: #a67c38;
  font-size: 11px;
  letter-spacing: .15em;
}
.academic-support-overview-item h4,
.nursing-program-item h4 {
  margin: 26px 0 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.academic-support-item-lead {
  margin: 18px 0 0;
  color: #303b36;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}
.academic-support-overview-item > p:last-child,
.nursing-program-item p {
  margin: 14px 0 0;
  color: #5f6862;
  font-size: 13px;
  line-height: 1.78;
}
.nursing-program-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-auto-rows: 1fr;
  border-top: 1px solid #d7ccb8;
  border-left: 1px solid #d7ccb8;
}
.nursing-program-item {
  min-height: 240px;
  padding: 30px 32px 34px;
  border-right: 1px solid #d7ccb8;
  border-bottom: 1px solid #d7ccb8;
  background: rgba(255,255,255,.42);
}
.nursing-program-item h4 {
  margin-top: 22px;
}
.academic-support-action {
  margin-top: 36px;
}


.development-panel {
  margin: 62px 0 0;
  padding: 42px 46px;
  border: 1px solid #d7ccb8;
  background: rgba(255,255,255,.48);
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 60px;
}
.development-panel > div:last-child > p {
  margin: 0;
  color: #5f6862;
  line-height: 1.85;
}

.study-start {
  padding: 108px 0;
  background: #fbfaf5;
}
.study-simple-head {
  max-width: 860px;
}
.study-simple-head h2 { color: #0e493d; }
.study-start-grid {
  margin-top: 54px;
}
.study-start-grid li { min-height: 260px; }
.study-start-grid h3 {
  margin: 30px 0 0;
  color: #0e493d;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.study-faq {
  padding: 108px 0;
  background: #ffffff;
  border-top: 1px solid #d7ccb8;
}
.study-faq-list {
  max-width: 940px;
  margin: 54px 0 0 auto;
}
.study-faq-list details {
  border-top: 1px solid #d7ccb8;
}
.study-faq-list details:last-child { border-bottom: 1px solid #d7ccb8; }
.study-faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: #0e493d;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  list-style: none;
}
.study-faq-list summary::-webkit-details-marker { display: none; }
.study-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 21px;
  color: #a67c38;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
}
.study-faq-list details[open] summary::after { content: "−"; }
.study-faq-list details p {
  margin: -4px 0 24px;
  max-width: 800px;
  color: #5f6862;
  line-height: 1.8;
}

.study-final-cta {
  padding: 94px 0;
  background: #e6c490;
}
.study-final-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 80px;
  align-items: end;
}
.study-final-inner h2 {
  margin: 0;
  color: #0e332c;
  font-family: var(--serif);
  font-size: clamp(42px,4.5vw,66px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.study-final-inner > div > p:last-child {
  margin: 18px 0 0;
  max-width: 740px;
  color: rgba(14,51,44,.72);
}
.study-final-button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 24px;
  background: #0e332c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}
.study-final-button:hover { background: #0e493d; transform: translateY(-2px); }

@media (max-width: 1050px) {
  .study-hero-grid { gap: 48px; }
  .study-section-head { grid-template-columns: 120px minmax(0,1fr); gap: 38px; }
  .go8-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .go8-card {
    height: auto;
    min-height: 360px;
  }
  .academic-support-overview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .academic-support-overview-item { min-height: 300px; }
  .study-step-grid,
  .study-start-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 850px) {
  .study-hero-grid {
    min-height: 610px;
    padding: 78px 0 215px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .study-hero-copy { max-width: 720px; }
  .study-campus-art {
    inset: auto 0 0 auto;
    width: 92%;
    height: 330px;
    object-fit: contain;
    object-position: right bottom;
  }
  .study-section-head { grid-template-columns: 1fr; gap: 28px; }
  .study-section-head > div:first-child { flex-direction: row; align-items: center; gap: 18px; }
  .study-section-head .study-state { margin-top: 0; }
  .current-project,
  .development-panel { grid-template-columns: 1fr; gap: 34px; }
  .study-final-inner { grid-template-columns: 1fr; gap: 34px; }
  .study-final-button { justify-self: start; }
}

@media (max-width: 620px) {
  .study-hero-grid {
    min-height: auto;
    padding: 64px 0 175px;
  }
  .study-campus-art {
    width: 100%;
    height: 190px;
    object-position: 70% 100%;
  }
  .study-hero-copy h1 { font-size: clamp(52px,17vw,76px); }
  .study-hero-copy > p:not(.study-eyebrow) { font-size: 17px; }
  .study-actions { align-items: stretch; flex-direction: column; }
  .study-actions .hero-button { width: 100%; }
  .study-detail,
  .study-start,
  .study-faq { padding: 76px 0; }
  .study-section-head h2 { font-size: 42px; }
  .study-section-head .study-lead { font-size: 17px; }
  .go8-grid,
  .academic-feature-grid,
  .study-step-grid,
  .study-start-grid { grid-template-columns: 1fr; }
  .go8-grid { grid-auto-rows: auto; }
  .course-content-block { margin-top: 62px; }
  .course-content-head h3 { font-size: 34px; }
  .go8-card {
    height: auto;
    min-height: 0;
    padding: 26px 24px 30px;
  }
  .go8-name-en { min-height: 0; }
  .academic-support-overview { margin-top: 62px; }
  .academic-support-overview-grid,
  .nursing-program-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .academic-support-overview-item {
    min-height: 0;
    padding: 26px 24px 30px;
  }
  .nursing-program-item {
    min-height: 0;
    padding: 26px 24px 30px;
  }
  .academic-feature { padding: 28px 24px; }
  .development-panel,
  .current-project { padding: 32px 24px; }
  .study-step-grid li,
  .study-start-grid li { min-height: auto; padding: 26px 24px 30px; }
  .study-primary-action { width: 100%; }
  .study-faq-list { margin-top: 40px; }
  .study-faq-list summary { font-size: 19px; }
  .study-final-cta { padding: 76px 0; }
  .study-final-button { width: 100%; }
}


/* Study page surface system */
.study-page {
  --study-canvas: #f7f3e8;
  --study-ink: #0e332c;
  --study-soft: #e8efea;
  --study-gold: #e2c28d;
  --study-line: #d7ccb8;
  --study-card-surface: rgba(255,255,255,.42);
  --study-title: #0e493d;
  --study-copy: #40534d;
  --study-label: #a67c38;
  background: var(--study-canvas);
}

.study-page main {
  background: var(--study-canvas);
}

.study-page .study-detail,
.study-page .study-start,
.study-page .study-faq {
  background: transparent;
}

.study-page .study-detail {
  position: relative;
  border-bottom: 0;
}

.study-page .study-faq {
  border-top: 0;
}

.study-page .go8-grid,
.study-page .academic-support-overview-grid,
.study-page .nursing-program-grid,
.study-page .study-step-grid,
.study-page .study-start-grid {
  border-color: var(--study-line);
}

.study-page .go8-card,
.study-page .academic-support-overview-item,
.study-page .nursing-program-item,
.study-page .study-step-grid li,
.study-page .study-start-grid li,
.study-page .development-panel {
  border-color: var(--study-line);
  background: var(--study-card-surface);
  box-shadow: none;
}

.study-page .academic-support-overview-grid {
  border-color: var(--study-line);
  background: var(--study-soft);
}

.study-page .go8-card h4,
.study-page .go8-card h5,
.study-page .academic-support-overview-item h4,
.study-page .nursing-program-item h4,
.study-page .study-step-grid strong,
.study-page .study-start-grid h3,
.study-page .development-panel h3 {
  color: var(--study-title);
}

.study-page .go8-number,
.study-page .academic-support-number,
.study-page .study-step-grid li > span,
.study-page .study-start-grid li > span {
  color: var(--study-label);
}

.study-page .study-faq-list details,
.study-page .study-faq-list details:last-child {
  border-color: var(--study-line);
}

.study-page .study-final-cta {
  background: var(--study-gold);
}

.study-page .study-final-inner h2 {
  color: var(--study-title);
}

.study-page .study-final-inner > div > p:last-child {
  color: var(--study-copy);
}


/* Study page product chapter headings */
.study-page .study-detail {
  padding: 0 0 108px;
}

.study-page .study-product-nav + .study-detail {
  padding-top: 108px;
}

.study-page .study-section-head {
  grid-template-columns: 150px minmax(0,1fr);
  column-gap: 56px;
  row-gap: 60px;
  align-items: start;
}

.study-page .study-section-head::before {
  content: "";
  grid-column: 1 / -1;
  width: 100%;
  height: 3px;
  background:
    linear-gradient(var(--study-label),var(--study-label)) left top / 104px 3px no-repeat,
    linear-gradient(var(--study-line),var(--study-line)) left center / 100% 1px no-repeat;
}

.study-page .study-section-head > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.study-page .study-section-number {
  color: rgba(166,124,56,.55);
  font-family: var(--serif);
  font-size: clamp(64px,5vw,72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}

.study-page .study-section-head .study-eyebrow {
  margin: 0;
  color: var(--study-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .13em;
}

.study-page .study-section-head h2 {
  max-width: 1000px;
  margin: 22px 0 0;
  color: var(--study-title);
  font-size: clamp(56px,5vw,76px);
  line-height: 1.1;
}

.study-page .study-section-head .study-lead {
  margin-top: 30px;
}

.study-page .development-panel {
  margin-top: 78px;
}

@media (max-width: 850px) {
  .study-page .study-detail {
    padding-bottom: 100px;
  }

  .study-page .study-product-nav + .study-detail {
    padding-top: 100px;
  }

  .study-page .study-section-head {
    grid-template-columns: 112px minmax(0,1fr);
    column-gap: 36px;
    row-gap: 52px;
  }

  .study-page .study-section-head > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .study-page .study-section-number {
    font-size: 52px;
  }

  .study-page .study-section-head .study-eyebrow {
    font-size: 14px;
  }

  .study-page .study-section-head h2 {
    font-size: clamp(46px,6.5vw,54px);
  }
}

@media (max-width: 620px) {
  .study-page .study-detail {
    padding-bottom: 82px;
  }

  .study-page .study-product-nav + .study-detail {
    padding-top: 82px;
  }

  .study-page .study-section-head {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }

  .study-page .study-section-head::before {
    margin-bottom: 44px;
    background:
      linear-gradient(var(--study-label),var(--study-label)) left top / 96px 3px no-repeat,
      linear-gradient(var(--study-line),var(--study-line)) left center / 100% 1px no-repeat;
  }

  .study-page .study-section-head > div:first-child {
    margin-bottom: 16px;
  }

  .study-page .study-section-number {
    font-size: 42px;
  }

  .study-page .study-section-head h2 {
    margin-top: 20px;
    font-size: clamp(34px,9.5vw,40px);
    line-height: 1.1;
  }

  .study-page .study-section-head .study-lead {
    margin-top: 28px;
  }

  .study-page .development-panel {
    margin-top: 62px;
  }
}


/* Study page service directory */
@media (max-width: 1050px) {
  .study-page .study-services-layout {
    grid-template-columns: minmax(0,2fr) minmax(0,3fr);
    gap: 48px;
  }

  .study-page .study-service-row {
    padding: 30px 16px;
    grid-template-columns: 46px minmax(0,1fr) 26px;
    gap: 18px;
  }

  .study-page .study-service-name {
    font-size: clamp(23px,2.65vw,28px);
  }
}

@media (max-width: 850px) {
  .study-page #services {
    padding: 88px 0;
  }

  .study-page .study-services-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .study-page #services .study-nav-heading {
    max-width: 660px;
  }

  .study-page .study-service-row {
    padding: 30px 18px;
    grid-template-columns: 46px minmax(0,1fr) 26px;
    gap: 20px;
  }
}

@media (max-width: 620px) {
  .study-page #services {
    padding: 80px 0;
  }

  .study-page .study-services-layout {
    gap: 44px;
  }

  .study-page #services .study-nav-heading h2 {
    font-size: clamp(42px,12.5vw,52px);
  }

  .study-page #services .study-nav-heading > p:last-child {
    font-size: 16px;
  }

  .study-page .study-service-row {
    min-height: 92px;
    padding: 24px 8px;
    grid-template-columns: 34px minmax(0,1fr) 20px;
    gap: 12px;
  }

  .study-page .study-service-copy {
    align-items: flex-start;
    gap: 8px 10px;
  }

  .study-page .study-service-row-with-status .study-service-copy {
    flex-direction: column;
  }

  .study-page .study-service-number {
    font-size: 13px;
  }

  .study-page .study-service-name {
    font-size: clamp(21px,6.5vw,26px);
  }

  .study-page .study-service-status {
    padding: 3px 7px 2px;
    font-size: 10px;
  }

  .study-page .study-service-arrow {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .study-page .study-service-row.reveal,
  .study-page .study-service-row.reveal.visible,
  .study-page .study-service-name,
  .study-page .study-service-arrow,
  .study-page .study-service-number {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Study page academic program accordion */
.study-page .academic-programs {
  margin: 72px 0 0;
}

.study-page .academic-programs-head {
  max-width: 900px;
}

.study-page .academic-programs-head h3 {
  margin: 0;
  color: var(--study-title);
  font-family: var(--serif);
  font-size: clamp(34px,3.25vw,48px);
  font-weight: 600;
  line-height: 1.25;
}

.study-page .academic-programs-head > p:last-child {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--study-copy);
  font-size: 16px;
  line-height: 1.8;
}

.study-page .academic-program-accordion {
  margin-top: 34px;
}

.study-page main .academic-program-item {
  border: 1px solid var(--study-line);
  background: var(--study-card-surface);
  scroll-margin-top: 120px;
}

.study-page .academic-program-item-heading {
  margin: 0;
}

.study-page .academic-program-trigger {
  width: 100%;
  min-height: 148px;
  padding: 26px 32px;
  border: 0;
  background: transparent;
  color: var(--study-title);
  display: grid;
  grid-template-columns: minmax(0,1fr) auto 28px;
  gap: 32px;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.study-page .academic-program-trigger:hover {
  background: rgba(255,255,255,.22);
}

.study-page .academic-program-trigger:focus-visible {
  outline: 2px solid var(--study-label);
  outline-offset: -5px;
}

.study-page .academic-program-summary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.study-page .academic-program-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
}

.study-page .academic-program-number,
.study-page .academic-program-status,
.study-page .academic-program-action {
  color: var(--study-label);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.study-page .academic-program-school {
  color: var(--study-copy);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.study-page .academic-program-name {
  margin-top: 10px;
  color: var(--study-title);
  font-family: var(--serif);
  font-size: clamp(27px,2.35vw,34px);
  font-weight: 600;
  line-height: 1.24;
}

.study-page .academic-program-status {
  margin-top: 12px;
  letter-spacing: .08em;
  text-transform: none;
}

.study-page .academic-program-action {
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: none;
}

.study-page .academic-program-icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--study-label);
}

.study-page .academic-program-icon::before,
.study-page .academic-program-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%,-50%);
  transition: transform 220ms ease;
}

.study-page .academic-program-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
}

.study-page .academic-program-item.is-open .academic-program-icon::after {
  transform: translate(-50%,-50%) rotate(90deg) scaleX(0);
}

.study-page .academic-program-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid var(--study-line);
  background: var(--study-soft);
  transition: height 240ms ease, opacity 200ms ease;
}

.study-page .academic-program-panel[hidden] {
  display: none;
}

.study-page .academic-program-panel-inner {
  padding: 36px 32px 40px;
}

.study-page .academic-program-description {
  max-width: 820px;
  margin: 0;
  color: var(--study-copy);
  font-size: 15px;
  line-height: 1.85;
}

.study-page .academic-program-support-grid {
  margin-top: 34px;
}

@media (max-width: 850px) {
  .study-page .academic-program-trigger {
    min-height: 144px;
    padding: 26px 28px;
    grid-template-columns: minmax(0,1fr) auto 26px;
    gap: 24px;
  }

  .study-page .academic-program-name {
    font-size: clamp(26px,3.5vw,31px);
  }

  .study-page .academic-program-panel-inner {
    padding: 34px 28px 38px;
  }
}

@media (max-width: 620px) {
  .study-page .academic-programs {
    margin-top: 62px;
  }

  .study-page .academic-programs-head h3 {
    font-size: 34px;
  }

  .study-page .academic-program-accordion {
    margin-top: 30px;
  }

  .study-page .academic-program-trigger {
    min-height: 0;
    padding: 24px 22px;
    grid-template-columns: minmax(0,1fr) 24px;
    gap: 20px 14px;
  }

  .study-page .academic-program-summary {
    grid-column: 1 / -1;
  }

  .study-page .academic-program-kicker {
    gap: 8px 14px;
  }

  .study-page .academic-program-name {
    margin-top: 12px;
    font-size: clamp(26px,8vw,30px);
  }

  .study-page .academic-program-status {
    margin-top: 10px;
  }

  .study-page .academic-program-action {
    align-self: center;
  }

  .study-page .academic-program-icon {
    align-self: center;
    justify-self: end;
  }

  .study-page .academic-program-panel-inner {
    padding: 28px 22px 32px;
  }

  .study-page .academic-program-support-grid {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .study-page .academic-program-panel,
  .study-page .academic-program-icon::before,
  .study-page .academic-program-icon::after {
    transition: none;
  }
}

/* Study page product primary CTA */
.study-product-primary-action {
  width: fit-content;
  max-width: 100%;
  height: 54px;
  min-height: 54px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 0;
  background: #0e493d;
  color: #fff;
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.study-product-primary-action:hover {
  background: #0e332c;
  color: #fff;
  transform: translateY(-2px);
}

.study-product-primary-action:active {
  transform: translateY(0);
}

.study-product-primary-action:focus-visible {
  outline: 2px solid #a67c38;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .study-product-primary-action {
    transition: none;
  }

  .study-product-primary-action:hover,
  .study-product-primary-action:active {
    transform: none;
  }
}

/* Homepage business system — scoped below the unchanged original hero */
.home-page {
  --home-business-bg: #F8F6F0;
  --home-card-bg: #FCFAF5;
  --home-green: #0E493D;
  --home-green-dark: #0E332C;
  --home-gold: #B4873C;
  --home-text: #5F6862;
  --home-border: #CFC5B2;
  background: var(--home-business-bg);
  color: var(--home-text);
  overflow-x: clip;
}

/*
 * The homepage hero intentionally has no .home-page override.
 * Its original image, crop, overlay, typography, height and responsive rules
 * remain exactly as defined in the base homepage styles above.
 */

/* One continuous canvas for all four business chapters. */
.home-page main > .section,
.home-page .why-section,
.home-page .contact-cta {
  background: var(--home-business-bg);
}

.home-page main > .section {
  padding: 0;
  border: 0;
}

.home-page main > .section > .container {
  width: min(1440px, calc(100% - 128px));
  max-width: none;
  padding: 100px 0 120px;
}

.home-page #career > .container,
.home-page #visa > .container,
.home-page #life > .container {
  border-top: 1px solid var(--home-border);
}

/* Shared chapter header used by Study, Career, Visa and Life. */
.home-page main > .section .section-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}

.home-page main > .section .section-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  color: var(--home-gold);
}

.home-page main > .section .business-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  color: var(--home-gold);
}

.home-page main > .section .business-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--home-gold);
}

.home-page main > .section .section-title h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 1.15;
  color: var(--home-green);
}

.home-page main > .section .section-title > p {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--home-text);
  font-size: 18px;
  line-height: 1.75;
}

/* Shared light-card system for every product. */
.home-page main > .section .content-grid {
  counter-reset: home-product;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-page main > .section .study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page main > .section .study-grid .service-card:last-child {
  grid-column: auto;
  width: auto;
  justify-self: stretch;
}

.home-page main > .section .service-card {
  counter-increment: home-product;
  min-width: 0;
  min-height: 100%;
  padding: 36px 34px 30px;
  border: 1px solid var(--home-border);
  border-top: 4px solid var(--home-green);
  background: var(--home-card-bg);
  box-shadow: none;
  color: var(--home-text);
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.home-page main > .section .service-card::before {
  content: counter(home-product, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--home-gold);
}

.home-page main > .section .service-card:hover {
  transform: none;
  border-color: var(--home-green);
  background: #F8F3E8;
  box-shadow: none;
}

.home-page main > .section .card-label {
  margin: 0 0 18px;
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-page main > .section .service-card h3 {
  margin: 0;
  min-height: 2.5em;
  color: var(--home-green);
}

.home-page main > .section .service-card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 20px;
  background: var(--home-gold);
}

/*
 * Study card headings reserve the same title area. The gold rule is a
 * separate block so title wrapping can never move it beside the text.
 */
.home-page #study .service-card h3 {
  min-height: 2.5em;
}

.home-page #study .service-card h3::after {
  content: none;
  display: none;
}

.home-page #study .card-title-rule {
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: 1px;
  margin-top: 20px;
  background: var(--home-gold);
}

.home-page #study .study-course-title > span:last-child {
  flex-basis: 100%;
}

html[lang="en-AU"] .home-page #study .card-label {
  min-height: 3.4em;
  line-height: 1.7;
}

html[lang="en-AU"] .home-page #study .service-card h3 {
  min-height: 3.75em;
}

.home-page main > .section .card-lead {
  margin-top: 24px;
  color: #40534D;
  font-size: 16px;
  line-height: 1.75;
}

.home-page main > .section .card-body {
  color: var(--home-text);
  font-size: 16px;
  line-height: 1.8;
}

.home-page main > .section .card-link {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #D7CCB8;
  color: var(--home-green) !important;
}

.home-page main > .section .card-link::after {
  transition: transform 180ms ease;
}

.home-page main > .section .service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* The single Visa product uses the same card language and internal hierarchy. */
.home-page #visa .single-service {
  position: relative;
  margin-left: 0;
  padding: 42px 42px 36px;
  border: 1px solid var(--home-border);
  border-top: 4px solid var(--home-green);
  background: var(--home-card-bg);
  box-shadow: none;
  color: var(--home-text);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.home-page #visa .single-service:hover {
  border-color: var(--home-green);
  background: #F8F3E8;
}

.home-page #visa .single-service h3 {
  color: var(--home-green);
}

.home-page #visa .single-service h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 20px;
  background: var(--home-gold);
}

.home-page #visa .single-service .card-body {
  margin-top: 0;
  color: var(--home-text);
  font-size: 16px;
  line-height: 1.8;
}

.home-page #visa .single-service .note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #D7CCB8;
  color: var(--home-text);
}

.home-page #visa .single-service .card-link {
  display: flex;
  margin-top: 28px;
}

/* Why Us remains an editorial list on the same canvas. */
.home-page .why-section {
  padding: 0;
  color: var(--home-text);
}

.home-page .why-section > .container {
  width: min(1440px, calc(100% - 128px));
  max-width: none;
  padding: 100px 0 120px;
  border-top: 1px solid var(--home-border);
}

.home-page .why-editorial {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 7vw, 112px);
  align-items: start;
}

.home-page .why-head {
  position: sticky;
  top: 126px;
  display: block;
  margin: 0;
}

.home-page .why-head .section-index,
.home-page .why-number {
  color: var(--home-gold);
}

.home-page .why-head h2 {
  margin-top: 24px;
  color: var(--home-green);
}

.home-page .why-grid {
  margin: 0;
  display: block;
  border: 0;
}

.home-page .why-item {
  padding: 32px 0 38px;
  border: 0;
  border-bottom: 1px solid var(--home-border);
  background: transparent;
}

.home-page .why-item:first-child {
  padding-top: 0;
}

.home-page .why-item h3 {
  margin: 18px 0 14px;
  color: var(--home-green);
}

.home-page .why-item p {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--home-text);
  font-size: 15px;
  line-height: 1.85;
}

/* Final consultation remains an embedded panel; footer styles are untouched. */
.home-page .contact-cta {
  padding: 0 0 120px;
}

.home-page .contact-inner {
  width: min(1440px, calc(100% - 128px));
  max-width: none;
  padding: 64px 48px;
  background: var(--home-green);
}

.home-page .contact-cta h2 {
  color: var(--home-card-bg);
}

.home-page .contact-cta p {
  color: rgba(252, 250, 245, .78);
}

.home-page .contact-button {
  background: var(--home-card-bg);
  color: var(--home-green);
  box-shadow: none;
}

.home-page .contact-button:hover {
  background: #FFFFFF;
  color: var(--home-green-dark);
}

.home-page .contact-button:focus-visible {
  outline: 2px solid var(--home-gold);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .home-page main > .section > .container,
  .home-page .why-section > .container {
    width: min(100% - 80px, 1440px);
    padding: 88px 0 100px;
  }

  .home-page main > .section .section-head {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 44px;
    margin-bottom: 64px;
  }

  .home-page main > .section .business-number {
    font-size: clamp(56px, 7vw, 72px);
  }

  .home-page main > .section .section-title h2 {
    font-size: clamp(46px, 5.7vw, 60px);
  }

  .home-page main > .section .study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page main > .section .service-card h3 {
    min-height: 0;
  }

  .home-page .why-editorial {
    gap: 56px;
  }

  .home-page .contact-cta {
    padding-bottom: 100px;
  }

  .home-page .contact-inner {
    width: min(100% - 80px, 1440px);
    padding: 54px 40px;
  }
}

@media (max-width: 850px) {
  .home-page main > .section .section-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page main > .section .section-index {
    gap: 14px;
  }

  .home-page main > .section .section-title > p {
    margin-top: 20px;
  }

  .home-page .why-editorial {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .why-head {
    position: static;
  }

  .home-page .why-head h2 {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .home-page main > .section > .container,
  .home-page .why-section > .container {
    width: min(100% - 40px, 1440px);
    padding: 68px 0 76px;
  }

  .home-page main > .section .section-head {
    gap: 28px;
    margin-bottom: 48px;
  }

  .home-page main > .section .business-number {
    font-size: clamp(52px, 16vw, 64px);
  }

  .home-page main > .section .business-label {
    font-size: 12px;
  }

  .home-page main > .section .section-title h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .home-page main > .section .section-title > p {
    font-size: 16px;
    line-height: 1.75;
  }

  .home-page main > .section .content-grid,
  .home-page main > .section .study-grid {
    grid-template-columns: 1fr;
  }

  .home-page main > .section .service-card {
    min-height: auto;
    padding: 30px 24px 26px;
  }

  .home-page main > .section .service-card::before {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .home-page main > .section .service-card h3 {
    min-height: 0;
  }

  .home-page #visa .single-service {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px 28px;
  }

  .home-page .why-editorial {
    gap: 36px;
  }

  .home-page .why-item {
    padding: 26px 0 30px;
  }

  .home-page .contact-cta {
    padding-bottom: 72px;
  }

  .home-page .contact-inner {
    width: min(100% - 40px, 1440px);
    padding: 44px 24px;
  }

  .home-page .contact-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-kicker,
  .home-page .hero h1,
  .home-page .hero .hero-support,
  .home-page .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .home-page .hero-kicker::before {
    transform: scaleX(1);
    animation: none;
  }

  .home-page .hero-button-secondary::after {
    transform: none;
    animation: none;
  }

  .home-page main > .section .service-card,
  .home-page #visa .single-service,
  .home-page main > .section .card-link::after,
  .home-page .contact-button {
    transition: none;
  }
}
