@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;1,400&display=swap");

:root {
  --burgundy: #440709;
  --burgundy-2: #641619;
  --wine-dark: #290405;
  --cream: #eee7d7;
  --paper: #f7f2e9;
  --taupe: #c7b6a4;
  --ink: #211b18;
  --muted: #756a63;
  --line: rgba(68, 7, 9, .17);
  --white-line: rgba(255, 255, 255, .2);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --radius: 2px;
  --max: 1440px;
}

html[lang="ru"], html[lang="uk"] { --serif: "Cormorant Garamond", Georgia, serif; }

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.page-noise { position: fixed; inset: 0; opacity: .05; pointer-events: none; z-index: 100; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E"); }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 1000; padding: 12px 18px; background: var(--cream); color: var(--burgundy); transition: top .2s; }
.skip-link:focus { top: 16px; }
.top-anchor { display: block; width: 0; height: 0; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.section-pad { max-width: var(--max); margin: 0 auto; padding: 110px 5.3vw; }
.section-index { margin: 0; color: var(--burgundy); font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { color: var(--burgundy); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 30px; padding: 0 10px 0 22px; border: 1px solid var(--burgundy); background: var(--burgundy); color: white; font-size: .77rem; font-weight: 600; letter-spacing: .04em; transition: background .25s, color .25s, transform .25s; }
.button i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.button:hover { background: var(--burgundy-2); transform: translateY(-2px); }
.button-light { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
.button-light:hover { background: white; }
.button-small { min-height: 40px; gap: 14px; padding-left: 16px; }
.button-small i { width: 25px; height: 25px; }
.button-wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 600; }
.text-link i { font-style: normal; }

/* Keep directional icons identical on desktop and mobile. The visible arrow is
   drawn as a CSS vector so phone emoji fonts cannot turn it into a sticker. */
.directional-arrow {
  --guga-arrow-rotation: 0deg;
  position: relative;
  display: inline-grid;
  width: 1em;
  min-width: 1em;
  height: 1em;
  flex: 0 0 auto;
  place-items: center;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
  vertical-align: -.08em;
}
.directional-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(var(--guga-arrow-rotation));
  transform-origin: center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13 13 3M6 3h7v7' fill='none' stroke='%23000' stroke-linecap='square' stroke-linejoin='miter' stroke-width='1.55'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 13 13 3M6 3h7v7' fill='none' stroke='%23000' stroke-linecap='square' stroke-linejoin='miter' stroke-width='1.55'/%3E%3C/svg%3E") center / contain no-repeat;
}
.directional-arrow[data-direction="e"] { --guga-arrow-rotation: 45deg; }
.directional-arrow[data-direction="se"] { --guga-arrow-rotation: 90deg; }
.directional-arrow[data-direction="s"] { --guga-arrow-rotation: 135deg; }
.directional-arrow[data-direction="sw"] { --guga-arrow-rotation: 180deg; }
.directional-arrow[data-direction="w"] { --guga-arrow-rotation: 225deg; }
.directional-arrow[data-direction="nw"] { --guga-arrow-rotation: 270deg; }
.directional-arrow[data-direction="n"] { --guga-arrow-rotation: 315deg; }
.directional-arrow-inline {
  width: .9em;
  min-width: .9em;
  height: .9em;
  margin-inline-start: .28em;
}
.directional-arrow-inline::before { width: .72em; height: .72em; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 90; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; min-height: 84px; padding: 0 4vw; border-bottom: 1px solid transparent; transition: background .3s, min-height .3s, border-color .3s; }
.site-header.scrolled { min-height: 68px; border-color: var(--line); background: rgba(247, 242, 233, .96); backdrop-filter: blur(14px); }
.logo { display: inline-grid; width: max-content; grid-template-columns: 40px auto; gap: 10px; align-items: center; color: var(--burgundy); }
.logo-crest { display: block; width: 40px; height: 40px; aspect-ratio: 1; border: 1px solid rgba(68,7,9,.15); border-radius: 50%; object-fit: cover; box-shadow: 0 7px 20px rgba(41,4,5,.13); }
.logo-type { display: flex; width: 3.15em; flex-direction: column; align-items: stretch; font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.2rem; line-height: .85; }
.logo-type > span { width: 100%; letter-spacing: .1em; text-align: justify; text-align-last: justify; white-space: nowrap; }
.logo-type small { width: 100%; margin-top: 5px; font-family: var(--sans); font-size: .38rem; font-weight: 600; letter-spacing: .36em; text-align: center; white-space: nowrap; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 52px); }
.desktop-nav a { position: relative; color: #483f3b; font-size: .72rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--burgundy); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.careers-header-button { display: inline-flex; min-height: 38px; align-items: center; gap: 12px; padding: 0 12px; border: 1px solid var(--line); color: var(--burgundy); font-size: .64rem; font-weight: 600; transition: border-color .2s, background .2s, color .2s; }
.careers-header-button i { font-style: normal; }
.careers-header-button:hover,
.careers-header-button[aria-current="page"] { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.language-switch { position: relative; display: flex; }
.language-switch select { width: 116px; min-height: 38px; padding: 0 29px 0 10px; border: 1px solid var(--line); border-radius: 0; background: rgba(247, 242, 233, .82); color: var(--burgundy); font-size: .63rem; font-weight: 600; cursor: pointer; direction: ltr; appearance: none; }
.language-switch::after { content: "⌄"; position: absolute; top: 50%; right: 10px; color: var(--burgundy); font-size: .7rem; pointer-events: none; transform: translateY(-55%); }
.menu-toggle { display: none; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: var(--burgundy); transition: transform .25s; }
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 80; display: none; padding: 105px 6vw 35px; background: var(--cream); opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-careers-button { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px; padding: 0 15px; border: 1px solid rgba(68,7,9,.34); background: var(--taupe); color: var(--wine-dark); box-shadow: 5px 5px 0 rgba(68,7,9,.09); font-size: .7rem; font-weight: 600; letter-spacing: .04em; transition: background .2s, border-color .2s, box-shadow .2s, color .2s; }
.mobile-careers-button i { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.mobile-careers-button:hover { border-color: var(--burgundy); background: #d6c7b7; box-shadow: 3px 3px 0 rgba(68,7,9,.13); }
.mobile-careers-button[aria-current="page"] { border-color: var(--burgundy); background: var(--paper); color: var(--burgundy); box-shadow: inset 4px 0 0 var(--burgundy); }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.8rem, 7vw, 3rem); }
.mobile-menu nav b { font-family: var(--sans); font-size: .7rem; }

body[data-page="contact"] .site-header:not(.scrolled) .logo { color: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .logo-crest { border-color: rgba(238,231,215,.48); box-shadow: 0 8px 22px rgba(0,0,0,.24); }
body[data-page="contact"] .site-header:not(.scrolled) .desktop-nav a { color: rgba(238,231,215,.78); }
body[data-page="contact"] .site-header:not(.scrolled) .desktop-nav a::after { background: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .language-switch select { border-color: var(--white-line); background: rgba(41,4,5,.2); color: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .language-switch::after { color: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .careers-header-button { border-color: rgba(238,231,215,.46); color: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .careers-header-button:hover,
body[data-page="contact"] .site-header:not(.scrolled) .careers-header-button[aria-current="page"] { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .header-actions .button { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .menu-toggle span { background: var(--cream); }

html[dir="rtl"] .hero-note, html[dir="rtl"] .footer-brand p { text-align: right; }
html[dir="rtl"] .breadcrumb, html[dir="rtl"] .kicker { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .university-actions, html[dir="rtl"] .intake-submit { direction: rtl; }
html[dir="rtl"] .brand-story-media figcaption { direction: rtl; }

.hero { min-height: 0; padding-top: 104px; padding-bottom: 46px; display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr auto; gap: 34px 6vw; }
.hero-copy { align-self: center; max-width: 730px; }
.kicker { display: flex; align-items: center; gap: 10px; color: var(--burgundy); font-size: .67rem; letter-spacing: .17em; text-transform: uppercase; }
.kicker span { width: 27px; height: 1px; background: currentColor; }
.hero h1 { margin: 30px 0 28px; font-family: var(--serif); font-size: clamp(4rem, 7.4vw, 7.8rem); font-weight: 400; line-height: .84; letter-spacing: -.045em; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--burgundy); font-weight: 400; }
.hero-lead { max-width: 610px; color: #5b514c; font-size: 1rem; }
.hero-search { max-width: 610px; margin-top: 25px; }
.hero-search > label { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: .62rem; font-weight: 600; }
.hero-search > div { display: grid; grid-template-columns: 1fr 50px; border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.hero-search input { min-width: 0; height: 50px; padding: 0 15px; border: 0; background: transparent; color: var(--ink); outline: none; }
.hero-search button { width: 50px; height: 50px; border: 0; background: var(--burgundy); color: var(--cream); cursor: pointer; }
.hero-buttons { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero-trust span { display: flex; align-items: baseline; gap: 9px; }
.hero-trust b { flex: 0 0 auto; color: var(--burgundy); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; line-height: 1; }
.hero-trust small { color: var(--muted); font-size: .67rem; line-height: 1.2; }
.hero-visual { position: relative; width: min(100%, 460px); min-height: 570px; justify-self: end; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(90deg, rgba(68,7,9,.035), transparent 24%, transparent 76%, rgba(68,7,9,.035)), var(--cream); }
.hero-image { position: absolute; inset: 12px; background: linear-gradient(180deg, rgba(238,231,215,.02), rgba(68,7,9,.1)) center / cover no-repeat, url("https://optim.tildacdn.one/tild6232-3631-4135-a339-623738623931/-/format/webp/1.png.webp") center / contain no-repeat; }
.hero-image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(68,7,9,.12); pointer-events: none; }
.hero-stamp { position: absolute; top: 32px; left: 28px; width: 118px; height: 118px; overflow: hidden; border: 4px solid rgba(238,231,215,.8); border-radius: 50%; background: var(--burgundy); box-shadow: 0 18px 40px rgba(41,4,5,.28); transform: rotate(-5deg); }
.hero-stamp img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-note { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 13px; padding: 15px 18px; background: rgba(247,242,233,.9); backdrop-filter: blur(8px); }
.hero-note .pulse { width: 8px; height: 8px; border-radius: 50%; background: #6a8d51; box-shadow: 0 0 0 5px rgba(106,141,81,.17); }
.hero-note div { display: flex; flex-direction: column; }
.hero-note b { color: var(--burgundy); font-size: .72rem; }
.hero-note small { color: var(--muted); font-size: .63rem; }
.hero-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-line { flex: 1; height: 1px; background: var(--line); }

.destination-marquee { overflow: hidden; border-block: 1px solid rgba(255,255,255,.16); background: var(--burgundy); color: var(--cream); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 26px; padding: 17px 0; animation: marquee 35s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1rem; letter-spacing: .07em; }
.marquee-track i { opacity: .55; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
html:not(.js) .destination-marquee .marquee-track { width: auto; flex-wrap: wrap; justify-content: center; animation: none; }
html:not(.js) .destination-marquee [aria-hidden="true"] { display: none; }

.intro { padding-top: 125px; }
.intro-main { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; margin-top: 35px; }
.intro h2, .section-head h2, .services-title h2, .timeline-head h2, .funding-top h2, .faq-head h2, .contact-copy h2, .standards-copy h2 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(3rem, 5.4vw, 6.1rem); font-weight: 400; line-height: .93; letter-spacing: -.035em; }
.intro h2 em, .section-head h2 em, .services-title h2 em, .timeline-head h2 em, .funding-top h2 em, .faq-head h2 em, .contact-copy h2 em, .standards-copy h2 em { color: var(--burgundy); font-weight: 400; }
.intro-side { align-self: end; color: var(--muted); }
.round-link { display: flex; width: 132px; height: 132px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; margin-top: 26px; border: 1px solid var(--burgundy); border-radius: 50%; color: var(--burgundy); font-size: .7rem; text-align: center; transition: background .25s, color .25s; }
.round-link b { font-size: 1rem; }
.round-link:hover { background: var(--burgundy); color: white; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 80px; background: var(--line); }
.audience-card { position: relative; min-height: 315px; padding: 30px; background: var(--paper); }
.audience-card > span { color: var(--burgundy); font-size: .65rem; }
.card-icon { display: grid; width: 48px; height: 48px; place-items: center; margin: 38px 0 25px; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); font-family: var(--serif); }
.audience-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.audience-card p { color: var(--muted); font-size: .8rem; }
.audience-card a { position: absolute; right: 30px; bottom: 28px; left: 30px; color: var(--burgundy); font-size: .7rem; font-weight: 600; }

.path { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; max-width: none; background: var(--burgundy); color: var(--cream); }
.path .section-index { color: var(--taupe); }
.path-head h2 { margin: 36px 0 26px; font-family: var(--serif); font-size: clamp(3.2rem, 5.4vw, 6rem); font-weight: 400; line-height: .9; }
.path-head h2 em { color: var(--taupe); font-weight: 400; }
.path-head > p:last-child { max-width: 420px; color: rgba(238,231,215,.68); }
.route-tool { position: relative; min-height: 590px; padding: 42px; background: var(--cream); color: var(--ink); }
.route-progress { display: flex; gap: 7px; margin-bottom: 70px; }
.route-progress span { flex: 1; height: 2px; background: rgba(68,7,9,.13); }
.route-progress span.active { background: var(--burgundy); }
.route-step { display: none; }
.route-step.active { display: block; animation: fadeIn .35s ease; }
.route-step > small { color: var(--burgundy); font-size: .65rem; letter-spacing: .12em; }
.route-step h3 { margin: 16px 0 38px; font-family: var(--serif); font-size: clamp(2rem, 3.3vw, 3.7rem); font-weight: 400; line-height: 1; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-grid-three { grid-template-columns: repeat(3, 1fr); }
.choice-grid button { min-height: 170px; padding: 22px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; text-align: left; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.choice-grid button:hover { border-color: var(--burgundy); background: var(--burgundy); color: white; transform: translateY(-3px); }
.choice-grid button > span { display: block; margin-bottom: 25px; color: var(--burgundy); font-family: var(--serif); font-size: 1.35rem; }
.choice-grid button:hover > span { color: white; }
.choice-grid button b, .choice-grid button small { display: block; }
.choice-grid button b { font-size: .82rem; }
.choice-grid button small { margin-top: 4px; opacity: .65; font-size: .65rem; }
.route-result { display: none; text-align: center; }
.route-result.active { display: block; animation: fadeIn .4s ease; }
.result-icon { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 28px; border-radius: 50%; background: var(--burgundy); color: white; }
.route-result > small { color: var(--burgundy); font-size: .63rem; letter-spacing: .16em; }
.route-result h3 { margin: 17px 0 12px; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.7rem); font-weight: 400; }
.route-result p { max-width: 590px; margin: 0 auto 18px; color: var(--muted); }
.result-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin: 20px 0 28px; }
.result-tags span { padding: 7px 11px; border: 1px solid var(--line); color: var(--burgundy); font-size: .65rem; }
.restart-route { display: block; margin: 18px auto 0; border: 0; border-bottom: 1px solid var(--burgundy); background: transparent; color: var(--burgundy); cursor: pointer; font-size: .7rem; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } }

.section-head { display: block; max-width: 940px; margin-bottom: 70px; }
.section-head h2 { margin: 28px 0 24px; }
.section-head > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: .83rem; }
.programme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.programme-card { min-height: 430px; padding: 27px; background: var(--paper); }
.programme-card > span { color: var(--burgundy); font-size: .64rem; }
.programme-mark { display: grid; width: 76px; height: 76px; place-items: center; margin: 38px 0 25px; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); font-family: var(--serif); font-size: 1.3rem; }
.programme-card h3 { min-height: 58px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.05; }
.programme-card p { color: var(--muted); font-size: .76rem; }
.programme-card li { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--burgundy); font-size: .67rem; }
.subject-strip { margin-top: 30px; padding: 30px; border: 1px solid var(--line); }
.subject-strip > span { color: var(--burgundy); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.subject-strip div { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 12px; }
.subject-strip b { padding: 7px 12px; background: var(--cream); font-size: .68rem; font-weight: 500; }
.subject-strip small { color: var(--muted); font-size: .65rem; }

.destinations { max-width: none; background: var(--cream); }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.destination-card { position: relative; min-height: 350px; overflow: hidden; padding: 27px; background: var(--burgundy); color: white; isolation: isolate; transition: transform .25s; }
.destination-card:hover { transform: translateY(-4px); }
.destination-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(42, 4, 6, .05) 12%, rgba(42, 4, 6, .42) 46%, rgba(31, 3, 4, .9) 100%); pointer-events: none; }
.destination-card .destination-photo { position: absolute; z-index: -2; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transition: transform .55s ease; }
.destination-card:hover .destination-photo { transform: scale(1.025); }
.destination-card > span { position: absolute; top: 25px; right: 25px; color: var(--cream); font-size: .64rem; }
.destination-card > div:not(.destination-photo) { position: absolute; right: 27px; bottom: 27px; left: 27px; }
.destination-card small { color: var(--cream); font-size: .65rem; letter-spacing: .08em; }
.destination-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.destination-card p { color: rgba(255,255,255,.78); font-size: .77rem; }
.destination-card a { color: var(--cream); font-size: .66rem; font-weight: 600; }
.destination-uk { min-height: 540px; grid-row: span 2; color: white; }
.destination-uk .destination-photo { background-image: url("assets/destinations/uk-clean.jpg"); background-position: 53% 47%; }
.destination-eu .destination-photo { background-image: url("assets/destinations/europe-clean.jpg"); background-position: 50% 46%; }
.destination-usa .destination-photo { background-image: url("assets/destinations/usa-clean.jpg"); background-position: 43% 48%; }
.destination-canada .destination-photo { background-image: url("assets/destinations/canada-clean.jpg"); background-position: 50% 47%; }
.destination-dubai .destination-photo { background-image: url("assets/destinations/uae-clean.jpg"); background-position: 50% 44%; }
.destination-morocco .destination-photo { background-image: url("assets/destinations/morocco-clean.jpg"); background-position: 50% 45%; }
.compare-panel { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: 4vw; margin-top: 60px; padding: 48px; background: var(--burgundy); color: var(--cream); }
.compare-panel > div:first-child { align-self: stretch; }
.compare-panel .eyebrow { margin: 0; color: var(--taupe); }
.compare-panel h3 { max-width: 520px; margin: 48px 0 0; font-family: var(--serif); font-size: clamp(1.85rem, 2.55vw, 3.15rem); font-weight: 400; line-height: 1.02; }
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-content: center; gap: 1px; background: var(--white-line); }
.compare-grid span { padding: 18px; background: var(--burgundy); font-size: .72rem; }

.services { max-width: none; background: var(--burgundy); color: var(--cream); }
.services-title { display: block; max-width: 940px; margin-bottom: 65px; }
.services-title .section-index { color: var(--taupe); }
.services-title h2 { margin-top: 28px; }
.services-title h2 em { color: var(--taupe); }
.service-list { border-top: 1px solid var(--white-line); }
.service-item { display: grid; grid-template-columns: 60px .75fr 1fr 30px; gap: 3vw; padding: 34px 0; border-bottom: 1px solid var(--white-line); }
.service-item > span { color: var(--taupe); font-size: .65rem; }
.service-item h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.service-item p { color: rgba(238,231,215,.67); font-size: .78rem; }
.service-item li { padding: 5px 0; color: var(--taupe); font-size: .68rem; }
.service-item > i { color: var(--taupe); font-style: normal; }
.scope-note { display: grid; grid-template-columns: .4fr 1fr; gap: 4vw; margin-top: 55px; padding: 35px; border: 1px solid var(--white-line); }
.scope-note b { color: var(--taupe); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.scope-note p { margin: 0; color: rgba(238,231,215,.7); font-size: .77rem; }

.documents .section-head { margin-bottom: 50px; }
.document-tool { display: grid; grid-template-columns: .35fr 1fr; gap: 5vw; padding: 48px; border: 1px solid var(--line); background: var(--cream); }
.document-progress { position: sticky; top: 100px; align-self: start; }
.document-progress > span { display: block; color: var(--burgundy); font-family: var(--serif); font-size: 3rem; }
.document-progress > div { width: 100%; height: 4px; margin: 16px 0 9px; background: rgba(68,7,9,.14); }
.document-progress i { display: block; width: 0; height: 100%; background: var(--burgundy); transition: width .25s; }
.document-progress small { color: var(--muted); font-size: .65rem; }
.document-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.document-list label { display: flex; gap: 14px; min-height: 125px; padding: 20px; background: var(--paper); cursor: pointer; }
.document-list input { width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--burgundy); }
.document-list b, .document-list small { display: block; }
.document-list b { margin-bottom: 7px; font-size: .75rem; }
.document-list small { color: var(--muted); font-size: .65rem; }
.privacy-note { grid-column: 2; margin: 0; color: var(--muted); font-size: .63rem; }

.timeline { max-width: none; background: var(--cream); }
.timeline-head { display: block; max-width: 940px; margin-bottom: 65px; }
.timeline-head h2 { margin: 28px 0 24px; }
.timeline-head > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: .8rem; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.timeline-grid article { min-height: 300px; padding: 28px; background: var(--paper); }
.timeline-grid article.featured { background: var(--burgundy); color: var(--cream); }
.timeline-grid time { display: block; margin-bottom: 70px; color: var(--burgundy); font-family: var(--serif); font-size: 1.7rem; line-height: 1; }
.timeline-grid .featured time { color: var(--taupe); }
.timeline-grid b { display: block; margin-bottom: 11px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.1; }
.timeline-grid p { margin: 0; color: var(--muted); font-size: .7rem; }
.timeline-grid .featured p { color: rgba(238,231,215,.68); }
.timeline-note { display: grid; grid-template-columns: 45px 1fr auto; gap: 20px; align-items: center; margin-top: 25px; padding: 25px; border: 1px solid var(--line); }
.timeline-note > span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--burgundy); border-radius: 50%; color: var(--burgundy); }
.timeline-note p { margin: 0; color: var(--muted); font-size: .72rem; }
.timeline-note a { color: var(--burgundy); font-size: .67rem; font-weight: 600; white-space: nowrap; }

.funding-top { display: block; max-width: 940px; margin-bottom: 65px; }
.funding-top h2 { margin: 28px 0 24px; }
.funding-top > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: .8rem; }
.funding-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.funding-card { padding: 40px; border: 1px solid var(--line); background: var(--cream); }
.funding-card > span { color: var(--burgundy); font-size: .62rem; font-weight: 600; letter-spacing: .14em; }
.funding-card h3 { margin: 28px 0 16px; font-family: var(--serif); font-size: 2.15rem; font-weight: 400; }
.funding-card p { color: var(--muted); font-size: .76rem; }
.funding-card li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--burgundy); font-size: .68rem; }
.funding-card a { display: inline-block; margin-top: 25px; color: var(--burgundy); font-size: .67rem; font-weight: 600; }
.budget-tool { display: grid; grid-template-columns: .8fr .9fr .8fr; gap: 1px; margin-top: 55px; background: var(--white-line); border: 1px solid var(--burgundy); background-color: var(--burgundy); color: var(--cream); }
.budget-copy, .budget-form, .budget-result { padding: 38px; background: var(--burgundy); }
.budget-copy .eyebrow { color: var(--taupe); }
.budget-copy h3 { margin: 25px 0 14px; font-family: var(--serif); font-size: 2.15rem; font-weight: 400; line-height: 1.05; }
.budget-copy p, .budget-copy small { color: rgba(238,231,215,.67); font-size: .7rem; }
.budget-form label { display: block; margin-bottom: 24px; }
.budget-form label > span { display: block; margin-bottom: 8px; color: var(--taupe); font-size: .65rem; }
.budget-form input[type="number"], .budget-form select { width: 100%; height: 45px; padding: 0 12px; border: 1px solid var(--white-line); border-radius: 0; background: rgba(255,255,255,.06); color: var(--cream); outline: none; }
.budget-form select option { color: var(--ink); }
.range-line { display: grid; grid-template-columns: 1fr 40px; gap: 15px; align-items: center; }
.range-line input { accent-color: var(--taupe); }
.range-line output { color: var(--cream); text-align: center; }
.budget-result strong { display: block; margin: 12px 0 28px; color: var(--taupe); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; }
.budget-result > small { font-size: .62rem; letter-spacing: .13em; }
.budget-result > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--white-line); }
.budget-result > div span { padding: 13px; background: var(--burgundy); }
.budget-result b, .budget-result span small { display: block; }
.budget-result b { font-size: .8rem; }
.budget-result span small { color: rgba(238,231,215,.6); font-size: .58rem; }
.budget-result p { margin: 20px 0 8px; color: rgba(238,231,215,.6); font-size: .62rem; }
.budget-result a { color: var(--taupe); font-size: .65rem; font-weight: 600; }

.visa { max-width: none; background: #2c2420; color: var(--cream); }
.visa .section-index { color: var(--taupe); }
.visa .section-head h2 em { color: var(--taupe); }
.visa .section-head > p:last-child { color: rgba(238,231,215,.6); }
.visa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white-line); }
.visa-card { min-height: 380px; padding: 28px; background: #2c2420; }
.visa-card > span { color: var(--taupe); font-size: .6rem; letter-spacing: .14em; }
.visa-card h3 { margin: 65px 0 18px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.visa-card p { color: rgba(238,231,215,.62); font-size: .7rem; }
.visa-card a { display: inline-block; margin-top: 16px; color: var(--taupe); font-size: .64rem; }
.arrival-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 35px; border: 1px solid var(--white-line); }
.arrival-strip div { display: flex; align-items: center; gap: 12px; padding: 19px; border-right: 1px solid var(--white-line); }
.arrival-strip div:last-child { border: 0; }
.arrival-strip span { color: var(--taupe); font-family: var(--serif); font-size: 1.15rem; }
.arrival-strip b { font-size: .66rem; font-weight: 500; }

.academy { max-width: none; display: grid; grid-template-columns: 1fr 1fr; padding: 0; background: var(--burgundy); color: var(--cream); }
.academy-art { position: relative; display: grid; min-height: 620px; place-content: center; overflow: hidden; background: linear-gradient(180deg, rgba(41,4,5,.06), rgba(41,4,5,.3)), url("assets/brand/academy-accents-clean.jpg") center / cover no-repeat; color: var(--cream); }
.academy-art::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(41,4,5,.14), transparent 45%, rgba(41,4,5,.1)); }
.academy-art::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(238,231,215,.38); }
.academy-hero-crest { position: absolute; top: 36px; left: 36px; z-index: 1; width: 118px; height: 118px; border: 4px solid rgba(238,231,215,.76); border-radius: 50%; object-fit: cover; box-shadow: 0 18px 44px rgba(41,4,5,.3); }
.academy-art div { position: absolute; right: 36px; bottom: 34px; z-index: 1; padding: 12px 15px; background: rgba(68,7,9,.88); color: var(--cream); font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(8px); }
.academy-copy { align-self: center; padding: 80px 7vw; }
.academy-copy .section-index { color: var(--taupe); }
.academy-copy h2 { margin: 30px 0 25px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.7rem); font-weight: 400; line-height: .92; }
.academy-copy h2 em { color: var(--taupe); font-weight: 400; }
.academy-copy > p:not(.section-index) { color: rgba(238,231,215,.67); }
.academy-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.academy-points span { padding: 7px 10px; border: 1px solid var(--white-line); color: var(--taupe); font-size: .65rem; }

.scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.scenario-grid article { min-height: 300px; padding: 28px; border: 1px solid var(--line); }
.scenario-grid span { color: var(--burgundy); font-size: .64rem; }
.scenario-grid h3 { margin: 65px 0 20px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.05; }
.scenario-grid p { color: var(--muted); font-size: .7rem; }

.standards { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--cream); }
.standards-copy > p:last-child { max-width: 590px; margin-top: 30px; color: var(--muted); }
.standards-list article { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.standards-list span { color: var(--burgundy); font-family: var(--serif); font-size: 1.3rem; }
.standards-list b { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.standards-list p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; }

.resources { display: grid; grid-template-columns: .55fr 1.45fr; gap: 6vw; }
.resources-head h2 { margin: 28px 0 18px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.8rem); font-weight: 400; line-height: .92; color: var(--burgundy); }
.resources-head > p:last-child { color: var(--muted); font-size: .75rem; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.resource-grid a { position: relative; min-height: 155px; padding: 23px; background: var(--paper); transition: background .2s, color .2s; }
.resource-grid a:hover { background: var(--burgundy); color: white; }
.resource-grid span { display: block; margin-bottom: 38px; color: var(--burgundy); font-size: .6rem; font-weight: 600; }
.resource-grid a:hover span { color: var(--taupe); }
.resource-grid b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.resource-grid i { position: absolute; top: 20px; right: 20px; font-style: normal; }

.faq { max-width: none; display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; background: var(--cream); }
.faq-head { position: sticky; top: 110px; align-self: start; }
.faq-head h2 { margin-top: 35px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: grid; width: 100%; grid-template-columns: 1fr 30px; gap: 20px; align-items: center; padding: 27px 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; }
.faq-item button span { font-family: var(--serif); font-size: 1.3rem; }
.faq-item button i { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); font-style: normal; transition: transform .25s; }
.faq-item.open button i { transform: rotate(45deg); }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.faq-item > div p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: .75rem; }
.faq-item.open > div { grid-template-rows: 1fr; }
.faq-item.open > div p { padding: 0 45px 24px 0; }

.contact { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; background: var(--burgundy); color: var(--cream); }
.contact .section-index { color: var(--taupe); }
.contact-copy h2 { margin: 35px 0 28px; }
.contact-copy h2 em { color: var(--taupe); }
.contact-copy > p:not(.section-index) { max-width: 660px; color: rgba(238,231,215,.67); }
.contact-prepare { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.contact-prepare b { width: 100%; margin-bottom: 5px; color: var(--taupe); font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-prepare span { padding: 7px 10px; border: 1px solid var(--white-line); font-size: .63rem; }
.contact-card { align-self: center; padding: 40px; border: 1px solid var(--white-line); }
.status { display: flex; align-items: center; gap: 9px; color: var(--taupe); font-size: .62rem; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #9bb278; box-shadow: 0 0 0 4px rgba(155,178,120,.15); }
.contact-card h3 { margin: 42px 0 12px; font-family: var(--serif); font-size: 2.1rem; font-weight: 400; }
.contact-card p { color: rgba(238,231,215,.65); font-size: .75rem; }
.contact-card > small { display: block; margin: 13px 0 30px; color: var(--taupe); text-align: center; }
.socials { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.socials a { padding: 13px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); font-size: .66rem; text-align: center; }

.topic-visual { max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 680px; padding: 0; background: var(--wine-dark); color: var(--cream); }
.topic-visual-media { position: relative; min-height: 680px; overflow: hidden; background: var(--burgundy); }
.topic-visual-media::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(238,231,215,.34); pointer-events: none; }
.topic-visual-media > img { display: block; width: 100%; height: 100%; min-height: 680px; object-fit: cover; object-position: center top; filter: saturate(.83) sepia(.08); transition: transform .8s ease; }
.topic-visual-media:hover > img { transform: scale(1.025); }
.topic-media-mark { position: absolute; right: 34px; bottom: 34px; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; background: rgba(41,4,5,.88); color: var(--cream); font-size: .57rem; font-weight: 600; letter-spacing: .12em; backdrop-filter: blur(9px); }
.topic-media-mark img { width: 46px; height: 46px; border: 1px solid rgba(238,231,215,.5); border-radius: 50%; object-fit: cover; }
.topic-visual-copy { position: relative; display: flex; justify-content: center; flex-direction: column; overflow: hidden; padding: 86px 7vw; }
.topic-visual-copy::after { content: attr(data-glyph); position: absolute; right: -2vw; bottom: -10vw; color: rgba(238,231,215,.025); font-family: var(--serif); font-size: 35vw; line-height: 1; }
.topic-visual-copy .section-index { color: var(--taupe); }
.topic-visual-kicker { letter-spacing: .28em; line-height: 1.5; }
.topic-symbol { position: relative; width: 148px; height: 148px; margin: 36px 0 31px; border: 1px solid rgba(238,231,215,.28); border-radius: 50%; }
.topic-symbol::after { content: ""; position: absolute; inset: 12px; border: 1px dashed rgba(199,182,164,.42); border-radius: 50%; }
.topic-symbol b { position: absolute; top: 20px; right: 17px; z-index: 2; display: grid; width: 61px; height: 61px; place-items: center; border-radius: 50%; background: var(--cream); color: var(--burgundy); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.topic-person { position: absolute; bottom: 25px; left: 31px; z-index: 1; width: 50px; height: 68px; overflow: hidden; border-radius: 25px 25px 6px 6px; background: var(--taupe); }
.topic-person::before { content: ""; position: absolute; top: -21px; left: 9px; width: 32px; height: 32px; border: 7px solid var(--wine-dark); border-radius: 50%; background: var(--cream); }
.topic-person i { position: absolute; right: -15px; bottom: 18px; width: 46px; height: 20px; border: 5px solid var(--wine-dark); border-radius: 50%; transform: rotate(-24deg); }
.topic-visual-copy h2 { max-width: 620px; margin: 0 0 23px; font-family: var(--serif); font-size: clamp(3rem, 4.7vw, 5.8rem); font-weight: 400; line-height: .91; letter-spacing: -.035em; }
.topic-visual-copy h2 > span { display: block; }
.topic-visual-copy > p:not(.section-index) { max-width: 570px; color: rgba(238,231,215,.67); }
.topic-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.topic-chips span { padding: 8px 11px; border: 1px solid var(--white-line); color: var(--taupe); font-size: .62rem; letter-spacing: .04em; }
.topic-chips a { display: inline-flex; min-height: 38px; align-items: center; gap: 15px; padding: 8px 11px; border: 1px solid var(--white-line); color: var(--taupe); font-size: .62rem; letter-spacing: .04em; transition: border-color .2s, background .2s, color .2s; }
.topic-chips a span { padding: 0; border: 0; color: inherit; font-size: inherit; }
.topic-chips a i { font-style: normal; }
.topic-chips a:hover, .topic-chips a:focus-visible { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
.topic-visual-funding .topic-symbol { background: rgba(199,182,164,.08); }
.topic-visual-student-life .topic-visual-media > img { object-position: center; }

.brand-story { position: relative; max-width: none; display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: center; overflow: hidden; padding: 110px 5.3vw; background: var(--paper); }
.brand-story::before { content: "G"; position: absolute; top: -12vw; left: -5vw; color: rgba(68,7,9,.025); font-family: var(--serif); font-size: min(58vw, 780px); line-height: 1; pointer-events: none; }
.brand-story > * { position: relative; z-index: 1; }
.brand-story-copy { max-width: 580px; }
.brand-story-copy h2 { margin: 30px 0 25px; font-family: var(--serif); font-size: clamp(2.85rem, 4.35vw, 5.35rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.brand-story-copy h2 span, .brand-story-copy h2 em { display: block; overflow-wrap: normal; word-break: normal; text-wrap: balance; }
.brand-story-copy h2 em { color: var(--burgundy); font-weight: 400; }
.brand-story-copy > p:not(.section-index) { max-width: 520px; color: var(--muted); }
.brand-story-copy .text-link { margin-top: 18px; }
.brand-story-media { display: grid; grid-template-columns: minmax(0, 1fr); }
.brand-story-media figure { position: relative; margin: 0; overflow: hidden; background: var(--cream); }
.brand-story-media figure::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(238,231,215,.48); pointer-events: none; }
.brand-story-media figure > img { display: block; width: 100%; height: 650px; object-fit: cover; object-position: center; transition: transform .7s ease; }
.brand-story-media figure:hover > img { transform: scale(1.025); }
.brand-story-media figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; z-index: 1; display: flex; justify-content: space-between; gap: 20px; padding: 13px 15px; background: rgba(41,4,5,.86); color: var(--cream); font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(9px); }
.brand-story-media figcaption b { color: var(--taupe); }
.brand-story-home .brand-story-media figure > img { object-position: center 68%; }
.brand-story-funding .brand-story-media figure > img, .brand-story-student-life .brand-story-media figure > img { object-position: center top; }
.brand-story-uk .brand-story-media figure > img, .brand-story-europe .brand-story-media figure > img, .brand-story-usa .brand-story-media figure > img, .brand-story-canada .brand-story-media figure > img, .brand-story-uae .brand-story-media figure > img, .brand-story-morocco .brand-story-media figure > img { height: auto; aspect-ratio: 30 / 19; padding: 22px; background: var(--cream); object-fit: contain; }
.brand-story-academy { background: var(--cream); }

.site-footer { padding: 65px 5.3vw 25px; background: var(--wine-dark); color: var(--cream); }
.footer-brand { display: grid; grid-template-columns: minmax(190px, 1fr) auto auto minmax(190px, 1fr); align-items: center; gap: clamp(14px, 1.8vw, 26px); padding-bottom: 55px; border-bottom: 1px solid var(--white-line); }
.footer-identity { display: contents; }
.logo-light { color: var(--cream); }
.footer-brand .logo { grid-template-columns: 52px auto; justify-self: start; }
.logo-light .logo-crest { width: 52px; height: 52px; min-width: 52px; border-color: rgba(238,231,215,.2); box-shadow: 0 10px 28px rgba(0,0,0,.28); }
.footer-brand p { max-width: 260px; justify-self: end; margin: 0; color: rgba(238,231,215,.55); font-size: .72rem; text-align: right; }
.footer-socials { display: flex; min-width: 0; flex-wrap: nowrap; justify-content: center; justify-self: center; gap: 6px; }
.footer-socials a { display: grid; width: 44px; height: 44px; min-height: 44px; place-items: center; border: 1px solid rgba(238,231,215,.26); border-radius: 50%; color: var(--taupe); transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease; }
.footer-social-icon { display: grid; width: 19px; height: 19px; place-items: center; }
.footer-social-icon svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-icon .icon-fill { fill: currentColor; stroke: none; }
.footer-socials a:hover { border-color: rgba(238,231,215,.62); background: rgba(238,231,215,.08); color: var(--cream); transform: translateY(-3px); }
.footer-socials a:focus-visible { outline-color: var(--taupe); }
.footer-credential { display: grid; width: 80px; min-width: 80px; justify-self: center; place-items: center; color: var(--cream); }
.footer-credential img { display: block; width: 80px; height: 80px; object-fit: contain; background: #fff; }
.footer-credential:focus-visible { outline-color: var(--taupe); outline-offset: 5px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw; padding: 45px 0; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links b { margin-bottom: 8px; color: var(--taupe); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: rgba(238,231,215,.65); font-size: .68rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--white-line); color: rgba(238,231,215,.45); font-size: .58rem; }
.footer-address { display: inline-block; margin-top: 4px; font-size: 10px; line-height: 1.45; font-style: normal; letter-spacing: .01em; opacity: .84; }
.back-top { color: var(--taupe); white-space: nowrap; }

/* Multi-page structure */
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"] { color: var(--burgundy); }
.mobile-menu a[aria-current="page"] { color: var(--burgundy); }
.soft-section { max-width: none; background: var(--cream); }
.inner-hero { position: relative; min-height: 0; padding-top: 104px; padding-bottom: 42px; display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden; }
.inner-hero::after, .country-page-hero::after, .contact-page::after { content: ""; position: absolute; right: -3.5vw; bottom: -13vw; width: min(48vw, 620px); aspect-ratio: 1; background: url("assets/brand/guga-crest.jpg") center / contain no-repeat; opacity: .035; filter: grayscale(1); pointer-events: none; }
.inner-hero > *, .country-page-hero > *, .contact-page > * { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb b { color: var(--burgundy); font-weight: 600; }
.breadcrumb-dark { color: rgba(238,231,215,.55); }
.breadcrumb-dark b, .breadcrumb-dark a:hover { color: var(--taupe); }
.inner-hero-grid { display: grid; grid-template-columns: 1.2fr .55fr; gap: 8vw; align-items: start; }
.inner-hero h1 { margin: 26px 0 0; font-family: var(--serif); font-size: clamp(3.4rem, 5.1vw, 6.1rem); font-weight: 400; line-height: .92; letter-spacing: -.045em; text-wrap: balance; }
.inner-hero h1 span, .inner-hero h1 em { display: block; }
.inner-hero h1 em { color: var(--burgundy); font-weight: 400; }
.inner-hero-side { padding-bottom: 15px; color: var(--muted); }
.inner-hero-side .button { margin-top: 25px; }
.programmes-hero {
  isolation: isolate;
  background: var(--paper);
}
.programmes-hero::after { display: none; }
.programmes-hero .inner-hero-grid { grid-template-columns: 1.08fr .62fr; gap: 6.5vw; align-items: center; }
.programmes-hero-copy { max-width: 850px; }
.programmes-hero-intro { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: .84rem; }
.programmes-hero-note { display: inline-grid; grid-template-columns: 42px minmax(0, auto); gap: 14px; align-items: center; margin: 34px 0 0; padding: 13px 18px 13px 13px; border: 1px solid var(--line); background: rgba(247,242,233,.76); color: var(--burgundy); }
.programmes-hero-note > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(68,7,9,.2); border-radius: 50%; font-family: var(--serif); font-size: 1.05rem; }
.programmes-hero-note > b { font-size: .61rem; font-weight: 600; letter-spacing: .035em; }
.programmes-hero .inner-hero-side {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(68,7,9,.14);
  background: rgba(247,242,233,.84);
  box-shadow: 0 20px 48px rgba(41,4,5,.08);
  backdrop-filter: blur(8px);
  transform: translateY(-18px);
}
.programmes-hero-shadows { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.programmes-shadow-photo { position: absolute; width: min(36vw, 510px); opacity: .088; filter: grayscale(.72) sepia(.22) saturate(.78); mix-blend-mode: multiply; -webkit-mask-image: radial-gradient(ellipse at center,#000 30%,transparent 77%); mask-image: radial-gradient(ellipse at center,#000 30%,transparent 77%); }
.programmes-shadow-photo-left { bottom: -9%; left: -4vw; }
.programmes-shadow-photo-top { top: -27%; right: 8vw; width: min(31vw, 430px); opacity: .044; transform: rotate(-2deg); }
.programmes-word-shadow { position: absolute; z-index: 0; color: rgba(68,7,9,.042); font-family: var(--serif); font-size: clamp(8rem, 15vw, 16.5rem); font-weight: 400; line-height: .76; letter-spacing: -.06em !important; white-space: nowrap; pointer-events: none; user-select: none; }
.programmes-word-shadow-hero { right: 1%; bottom: -.07em; font-size: clamp(9rem, 16vw, 17rem); }
.programmes-word-shadow-levels { top: 2%; right: 2vw; font-size: clamp(8rem, 14.5vw, 15.5rem); }
.programmes-word-shadow-route { display: none; }
.programmes-word-shadow-next { display: none; }
.programmes-word-shadow-evidence { display: none; }
.programmes-graphic-shadow { position: absolute; z-index: 0; display: block; pointer-events: none; user-select: none; }
.programmes-graphic-realistic { filter: saturate(.72) sepia(.08); }
.programmes-graphic-levels { top: 18%; right: -9vw; width: min(49vw, 720px); opacity: .155; transform: rotate(2deg); }
.programmes-graphic-route { bottom: -52%; left: -19vw; width: min(40vw, 580px); max-height: none; object-fit: contain; opacity: .105; transform: scaleX(-1) rotate(-45deg); transform-origin: 48% 52%; }
.programmes-graphic-next { top: auto; right: -11vw; bottom: -23%; width: min(51vw, 735px); opacity: .13; transform: rotate(7deg); }
.programmes-graphic-evidence { top: 16%; right: -10vw; width: min(52vw, 760px); opacity: .14; transform: rotate(3deg); }
.topic-visual-programmes { position: relative; height: 460px; min-height: 0; overflow: hidden; isolation: isolate; }
.topic-visual-programmes .topic-visual-media, .topic-visual-programmes .topic-visual-media > img { height: 460px; min-height: 0; }
.topic-visual-programmes .topic-visual-media > img { object-position: center 37%; }
.topic-visual-programmes .topic-visual-copy { min-height: 460px; justify-content: center; padding-top: 40px; padding-bottom: 40px; }
.topic-visual-programmes .topic-visual-copy h2 { margin-bottom: 18px; font-size: clamp(2.6rem, 3.8vw, 4.6rem); }
.topic-visual-programmes .topic-visual-copy { isolation: isolate; }
.topic-visual-programmes .topic-visual-copy::before,
.topic-visual-programmes::after { display: none; }
.topic-visual-programmes .topic-visual-copy > * { position: relative; z-index: 1; }
body[data-page="programmes"] .programmes,
body[data-page="programmes"] .path,
body[data-page="programmes"] .deep-dive { position: relative; overflow: hidden; isolation: isolate; padding-top: 92px; padding-bottom: 92px; }
body[data-page="programmes"] .programmes::before,
body[data-page="programmes"] .path::before,
body[data-page="programmes"] .deep-dive::before,
body[data-page="programmes"] .programmes::after,
body[data-page="programmes"] .path::after,
body[data-page="programmes"] .deep-dive::after { position: absolute; z-index: 0; width: min(31vw, 430px); aspect-ratio: 1.12; background-position: center; background-size: cover; content: ""; opacity: .06; filter: grayscale(1) sepia(.25); mix-blend-mode: multiply; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at center,#000 24%,transparent 73%); mask-image: radial-gradient(ellipse at center,#000 24%,transparent 73%); }
body[data-page="programmes"] .programmes::before { display: none; }
body[data-page="programmes"] .programmes::after { display: none; }
body[data-page="programmes"] .path::before,
body[data-page="programmes"] .path::after,
body[data-page="programmes"] .deep-dive::before { display: none; }
body[data-page="programmes"] .deep-dive::after { display: none; }
body[data-page="programmes"] .programmes > :not(.programmes-word-shadow):not(.programmes-graphic-shadow),
body[data-page="programmes"] .path > :not(.programmes-word-shadow):not(.programmes-graphic-shadow),
body[data-page="programmes"] .deep-dive > :not(.programmes-word-shadow):not(.programmes-graphic-shadow) { position: relative; z-index: 1; }
body[data-page="programmes"] .programmes .subject-strip { background: rgba(247,242,233,.84); backdrop-filter: blur(2px); }
body[data-page="programmes"] .deep-dive .section-head { max-width: min(760px, 66vw); }
body[data-page="programmes"] .path-head { position: relative; isolation: isolate; }
body[data-page="programmes"] .path-head::before,
body[data-page="programmes"] .path-head::after { position: absolute; z-index: 0; width: min(28vw, 360px); aspect-ratio: 1.08; background-position: center; background-size: cover; content: ""; opacity: .12; filter: grayscale(1) sepia(.12); pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at center,#000 23%,transparent 73%); mask-image: radial-gradient(ellipse at center,#000 23%,transparent 73%); }
body[data-page="programmes"] .path-head::before,
body[data-page="programmes"] .path-head::after { display: none; }
body[data-page="programmes"] .path-head > * { position: relative; z-index: 1; }
body[data-page="programmes"] .route-tool { min-height: 500px; overflow: hidden; isolation: isolate; }
body[data-page="programmes"] .route-tool::before,
body[data-page="programmes"] .route-tool::after { position: absolute; z-index: 0; width: min(25vw, 330px); aspect-ratio: 1.05; background-position: center; background-size: cover; content: ""; opacity: .045; filter: grayscale(1) sepia(.25); mix-blend-mode: multiply; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at center,#000 22%,transparent 72%); mask-image: radial-gradient(ellipse at center,#000 22%,transparent 72%); }
body[data-page="programmes"] .route-tool::before,
body[data-page="programmes"] .route-tool::after { display: none; }
body[data-page="programmes"] .route-tool > * { position: relative; z-index: 1; }
body[data-page="programmes"] .page-cta { position: relative; overflow: hidden; isolation: isolate; }
body[data-page="programmes"] .page-cta::before,
body[data-page="programmes"] .page-cta::after { position: absolute; z-index: 0; width: min(25vw, 360px); aspect-ratio: 1.1; background-position: center; background-size: cover; content: ""; opacity: .075; filter: grayscale(1) sepia(.18); pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at center,#000 22%,transparent 72%); mask-image: radial-gradient(ellipse at center,#000 22%,transparent 72%); }
body[data-page="programmes"] .page-cta::before,
body[data-page="programmes"] .page-cta::after { display: none; }
body[data-page="programmes"] .page-cta > :not(.programmes-word-shadow):not(.programmes-graphic-shadow) { position: relative; z-index: 1; }

/* Programmes interaction layer: editorial chips and accessible study-level flip cards. */
.topic-visual-programmes .topic-chips > span {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  overflow: hidden;
  padding: 9px 14px;
  cursor: default;
  transition: border-color .24s ease, box-shadow .24s ease, color .24s ease, transform .24s ease;
}
.topic-visual-programmes .topic-chips > span::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--cream);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s cubic-bezier(.2,.72,.25,1);
}
.topic-visual-programmes .topic-chips > span:hover {
  border-color: var(--cream);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  color: var(--burgundy);
  transform: translateY(-4px);
}
.topic-visual-programmes .topic-chips > span:hover::before { transform: scaleX(1); }

body[data-page="programmes"] .subject-strip b {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(68,7,9,.09);
  cursor: default;
  transition: border-color .24s ease, box-shadow .24s ease, color .24s ease, transform .24s ease;
}
body[data-page="programmes"] .subject-strip b::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--burgundy);
  content: "";
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform .32s cubic-bezier(.2,.72,.25,1);
}
body[data-page="programmes"] .subject-strip b:hover {
  border-color: var(--burgundy);
  box-shadow: 0 10px 24px rgba(68,7,9,.13);
  color: var(--cream);
  transform: translateY(-4px) scale(1.015);
}
body[data-page="programmes"] .subject-strip b:hover::before { transform: scaleY(1); }

body[data-page="programmes"] .programme-card {
  position: relative;
  min-height: 430px;
  padding: 0;
  border: 0;
  background: var(--cream);
  box-shadow: none;
  cursor: pointer;
  filter: none;
  isolation: isolate;
  perspective: 1400px;
}
body[data-page="programmes"] .programme-grid { background: rgba(117,106,99,.2); }
body[data-page="programmes"] .programme-card::before,
body[data-page="programmes"] .programme-card::after,
body[data-page="programmes"] .programme-card-inner::before,
body[data-page="programmes"] .programme-card-inner::after { content: none; }
body[data-page="programmes"] .programme-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: var(--cream);
  box-shadow: none;
  filter: none;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.2,.68,.2,1);
}
body[data-page="programmes"] .programme-card-face {
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 27px 27px 72px;
  border: 1px solid rgba(68,7,9,.08);
  inset: 0;
  background: var(--paper);
  backface-visibility: hidden;
  box-shadow: none;
  filter: none;
  -webkit-backface-visibility: hidden;
}
body[data-page="programmes"] .programme-card-front::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,242,233,.12) 0%, rgba(247,242,233,.62) 52%, rgba(247,242,233,.95) 100%),
    var(--programme-image) center / cover no-repeat;
  content: "";
  filter: grayscale(.28) sepia(.08) saturate(.82);
  opacity: .62;
  transform: scale(1.01);
  transition: opacity .35s ease, transform .8s ease;
}
body[data-page="programmes"] .programme-card-front { transform: rotateY(0deg); -webkit-transform: rotateY(0deg); }
body[data-page="programmes"] .programme-card-front::after {
  position: absolute;
  z-index: 0;
  inset: 14px;
  border: 1px solid rgba(68,7,9,.13);
  content: "";
  pointer-events: none;
}
body[data-page="programmes"] .programme-card-face > * { position: relative; z-index: 1; }
body[data-page="programmes"] .programme-card-face > span {
  color: var(--burgundy);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .08em;
}
body[data-page="programmes"] .programme-card-front .programme-mark {
  background: rgba(247,242,233,.86);
}
body[data-page="programmes"] .programme-card-front h3 { margin-top: auto; }
body[data-page="programmes"] .programme-card-back {
  border-color: rgba(68,7,9,.11);
  background: var(--paper);
  box-shadow: none;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
body[data-page="programmes"] .programme-card-back::before { display: none; }
body[data-page="programmes"] .programme-card-back h3 {
  min-height: 0;
  margin: 44px 0 18px;
  color: var(--burgundy);
  font-size: 1.72rem;
}
body[data-page="programmes"] .programme-card-back p { margin: 0 0 18px; }
body[data-page="programmes"] .programme-card-back ul { margin: auto 0 0; }
body[data-page="programmes"] .programme-card-back li { padding: 9px 0; }
body[data-page="programmes"] .programme-flip-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(68,7,9,.34);
  border-radius: 50%;
  background: rgba(247,242,233,.88);
  color: var(--burgundy);
  cursor: pointer;
  backdrop-filter: blur(7px);
  transition: background .22s ease, color .22s ease, transform .32s ease;
}
body[data-page="programmes"] .programme-flip-toggle i {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1;
  transition: transform .55s cubic-bezier(.2,.68,.2,1);
}
body[data-page="programmes"] .programme-flip-toggle:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: scale(1.06);
}
body[data-page="programmes"] .programme-flip-toggle:focus-visible {
  outline: 3px solid var(--burgundy);
  outline-offset: 3px;
}
body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-inner { transform: rotateY(180deg); }
body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-flip-toggle i { transform: rotate(-180deg); }

@media (hover: hover) and (pointer: fine) {
  body[data-page="programmes"] .programme-card:hover .programme-card-inner { transform: rotateY(180deg); }
  body[data-page="programmes"] .programme-card:hover .programme-card-front::before { opacity: .7; transform: scale(1.055); }
}

@media (max-width: 760px) {
  body[data-page="programmes"] .programme-card { min-height: 440px; }
  body[data-page="programmes"] .programme-card-inner { transform: none !important; transform-style: flat; }
  body[data-page="programmes"] .programme-card-face { padding: 24px 24px 70px; backface-visibility: visible; -webkit-backface-visibility: visible; transition: opacity .28s ease, transform .28s ease, visibility .28s; }
  body[data-page="programmes"] .programme-card-front { opacity: 1; transform: none; -webkit-transform: none; }
  body[data-page="programmes"] .programme-card-back { visibility: hidden; opacity: 0; transform: translateY(12px); -webkit-transform: translateY(12px); }
  body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-front { visibility: hidden; opacity: 0; transform: translateY(-8px); -webkit-transform: translateY(-8px); }
  body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-back { visibility: visible; opacity: 1; transform: none; -webkit-transform: none; }
  body[data-page="programmes"] .programme-card-back h3 { margin-top: 36px; }
  body[data-page="programmes"] .programme-flip-toggle { right: 16px; bottom: 16px; }
}

/* Inner-page visual system v2 — Home and Courses & Routes remain the reference pages. */
body[data-page="admissions"] { --editorial-hero-photo: url("assets/programmes/shadows/writing.jpg"); --editorial-hero-position: 58% center; }
body[data-page="destinations"]:not([data-country]) { --editorial-hero-photo: url("assets/brand/directory-destinations-v1.jpg"); --editorial-hero-position: center 46%; }
body[data-page="funding"] { --editorial-hero-photo: url("assets/brand/funding-clean.jpg"); --editorial-hero-position: center 62%; }
body[data-page="resources"] { --editorial-hero-photo: url("assets/programmes/shadows/library-shelves.jpg"); --editorial-hero-position: center; }
body[data-page="student-life"] { --editorial-hero-photo: url("assets/programmes/shadows/student-group.jpg"); --editorial-hero-position: center; }
body[data-page="universities"] { --editorial-hero-photo: url("assets/programmes/shadows/university-building.jpg"); --editorial-hero-position: center; }

body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero {
  max-width: var(--max);
  padding-top: 104px;
  padding-bottom: 68px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(68,7,9,.045), transparent 24%),
    linear-gradient(118deg, var(--paper) 0 76%, var(--cream) 76%);
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::before { display: none; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::after {
  right: auto;
  bottom: -17vw;
  left: -13vw;
  width: min(43vw, 610px);
  opacity: .018;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero .breadcrumb { margin-bottom: 34px; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(48px, 6.3vw, 105px);
  align-items: stretch;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid > div:first-child {
  align-self: center;
  padding: 26px 0 34px;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero h1 {
  max-width: 850px;
  font-size: clamp(3.7rem, 5.55vw, 6.65rem);
  line-height: .89;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(240px, 25vw, 286px) clamp(24px, 2.7vw, 38px) 30px;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(180deg, rgba(32,3,5,.02) 8%, rgba(39,4,6,.28) 48%, rgba(34,3,5,.94) 100%),
    var(--editorial-hero-photo);
  background-position: center, var(--editorial-hero-position, center);
  background-size: cover;
  color: var(--cream);
  box-shadow: none;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side::before {
  position: absolute;
  z-index: -1;
  inset: 14px;
  border: 1px solid rgba(238,231,215,.42);
  content: "";
  pointer-events: none;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side p {
  max-width: 510px;
  margin: 0;
  color: rgba(255,250,240,.9);
  font-size: .8rem;
  text-shadow: 0 2px 22px rgba(0,0,0,.65);
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side .button {
  align-self: flex-start;
  margin-top: 22px;
  border-color: var(--cream);
  background: rgba(238,231,215,.94);
  color: var(--burgundy);
  backdrop-filter: blur(8px);
}

/* Country guides: the landmark now belongs to the opening composition, not below the fold. */
body[data-page="destinations"][data-country] .country-page-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .76fr);
  grid-template-areas:
    "crumb crumb"
    "title visual"
    "facts facts";
  gap: 0 clamp(52px, 6.5vw, 110px);
  margin: 0 auto;
  padding-top: 104px;
  padding-bottom: 70px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 11% 88%, rgba(68,7,9,.045), transparent 22%),
    linear-gradient(118deg, var(--paper) 0 76%, var(--cream) 76%);
}
body[data-page="destinations"][data-country] .country-page-hero::after {
  right: auto;
  bottom: -15vw;
  left: -12vw;
  width: min(42vw, 600px);
  opacity: .018;
}
body[data-page="destinations"][data-country] .country-page-hero .breadcrumb { grid-area: crumb; margin-bottom: 34px; }
body[data-page="destinations"][data-country] .country-page-title {
  grid-area: title;
  display: flex;
  align-self: center;
  flex-direction: column;
  gap: 28px;
  padding: 18px 0 28px;
}
body[data-page="destinations"][data-country] .country-page-title h1 {
  max-width: 840px;
  margin-top: 25px;
  font-size: clamp(3.75rem, 5.45vw, 6.55rem);
  line-height: .9;
}
body[data-page="destinations"][data-country] .country-page-title > div:last-child { max-width: 650px; }
body[data-page="destinations"][data-country] .country-page-title > div:last-child > p { margin: 0; font-size: .82rem; }
body[data-page="destinations"][data-country] .country-hero-visual {
  grid-area: visual;
  align-self: stretch;
  min-height: 520px;
  aspect-ratio: auto;
  margin-top: 0;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: none;
}
body[data-page="destinations"][data-country] .country-hero-visual > img {
  filter: saturate(.8) sepia(.08) contrast(1.02);
  object-position: center;
}
body[data-page="destinations"][data-country] .country-fact-row {
  grid-area: facts;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
body[data-page="destinations"][data-country] .country-fact-row article {
  min-height: 124px;
  border-right: 1px solid var(--line);
  background: rgba(247,242,233,.62);
}
body[data-page="destinations"][data-country] .country-fact-row article:last-child { border-right: 0; }

/* Contact: a warm editorial photograph replaces the washed-out backdrop. */
body[data-page="contact"] .contact-page {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 104px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 8% 90%, rgba(68,7,9,.045), transparent 23%),
    linear-gradient(118deg, var(--paper) 0 76%, var(--cream) 76%);
  color: var(--ink);
}
body[data-page="contact"] .contact-page::before { display: none; }
body[data-page="contact"] .contact-page::after {
  right: auto;
  bottom: -16vw;
  left: -13vw;
  opacity: .018;
}
body[data-page="contact"] .contact-page .breadcrumb { margin-bottom: 34px; color: var(--muted); }
body[data-page="contact"] .contact-page .breadcrumb b,
body[data-page="contact"] .contact-page .breadcrumb a:hover,
body[data-page="contact"] .contact-page .section-index { color: var(--burgundy); }
body[data-page="contact"] .contact-page-grid { grid-template-columns: minmax(0, 1.06fr) minmax(400px, .72fr); gap: clamp(48px, 6.5vw, 110px); align-items: stretch; }
body[data-page="contact"] .contact-page .contact-copy { align-self: center; padding: 20px 0 30px; }
body[data-page="contact"] .contact-page .contact-copy h1 { font-size: clamp(3.75rem, 5.55vw, 6.65rem); line-height: .89; }
body[data-page="contact"] .contact-page .contact-copy h1 em { color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-copy > p:not(.section-index) { color: var(--muted); }
body[data-page="contact"] .contact-page .contact-prepare b { color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-prepare span { border-color: var(--line); color: var(--ink); background: rgba(247,242,233,.66); }
body[data-page="contact"] .contact-page .contact-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(28,3,5,.04) 7%, rgba(34,3,5,.36) 46%, rgba(31,3,5,.96) 100%),
    url("assets/programmes/shadows/team-study.jpg") center / cover no-repeat;
  color: var(--cream);
}
body[data-page="contact"] .contact-page .contact-card::before {
  position: absolute;
  z-index: -1;
  inset: 14px;
  border: 1px solid rgba(238,231,215,.42);
  content: "";
  pointer-events: none;
}
body[data-page="contact"] .contact-page .contact-card h3 { margin-top: 24px; }
body[data-page="contact"] .contact-page .contact-card p { color: rgba(255,250,240,.86); text-shadow: 0 2px 18px rgba(0,0,0,.64); }
body[data-page="contact"] .contact-page .contact-card .button-light { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-card .status,
body[data-page="contact"] .contact-page .contact-card > small { color: var(--cream); }

/* Photograph-led plaques: visible imagery, calm overlays and square editorial edges. */
body[data-page="admissions"] .services {
  border-block: 0;
  background: var(--burgundy);
  color: var(--cream);
}
body[data-page="admissions"] .services-title .section-index,
body[data-page="admissions"] .services-title h2 em,
body[data-page="admissions"] .service-item > span,
body[data-page="admissions"] .service-item li,
body[data-page="admissions"] .service-item > i,
body[data-page="admissions"] .scope-note b { color: var(--taupe); }
body[data-page="admissions"] .service-list,
body[data-page="admissions"] .service-item { border-color: var(--white-line); }
body[data-page="admissions"] .service-item {
  min-height: 190px;
  grid-template-columns: 52px .7fr 1fr 156px;
  align-items: center;
  padding: 26px 0;
  background-image:
    linear-gradient(90deg, var(--burgundy) 0 73%, rgba(68,7,9,.66) 84%, rgba(41,4,5,.2) 100%),
    var(--service-photo);
  background-position: center, right center;
  background-size: cover, 180px 100%;
  background-repeat: no-repeat;
}
body[data-page="admissions"] .service-item:nth-child(1) { --service-photo: url("assets/programmes/shadows/laptop-study.jpg"); }
body[data-page="admissions"] .service-item:nth-child(2) { --service-photo: url("assets/programmes/shadows/campus.jpg"); }
body[data-page="admissions"] .service-item:nth-child(3) { --service-photo: url("assets/programmes/shadows/study-notes.jpg"); }
body[data-page="admissions"] .service-item:nth-child(4) { --service-photo: url("assets/programmes/shadows/team-study.jpg"); }
body[data-page="admissions"] .service-item:nth-child(5) { --service-photo: url("assets/programmes/shadows/library-interior.jpg"); }
body[data-page="admissions"] .service-item:nth-child(6) { --service-photo: url("assets/programmes/shadows/student-group.jpg"); }
body[data-page="admissions"] .service-item p,
body[data-page="admissions"] .scope-note p { color: rgba(238,231,215,.72); }
body[data-page="admissions"] .scope-note { border-color: var(--white-line); background: rgba(255,255,255,.035); }

body[data-page="contact"] .consultation-section .cost-grid article,
body[data-page="resources"] .resource-path-grid .info-card,
body[data-page="universities"] .requirement-grid article,
body[data-page="student-life"] .visa-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(238,231,215,.18);
  background-color: var(--wine-dark);
  background-image:
    linear-gradient(180deg, rgba(28,3,5,.18) 0%, rgba(35,3,5,.7) 52%, rgba(28,3,5,.97) 100%),
    var(--plaque-photo);
  background-position: center;
  background-size: cover;
  color: var(--cream);
}
body[data-page="contact"] .consultation-section .cost-grid article:nth-child(1) { --plaque-photo: url("assets/programmes/shadows/writing.jpg"); }
body[data-page="contact"] .consultation-section .cost-grid article:nth-child(2) { --plaque-photo: url("assets/programmes/shadows/books.jpg"); }
body[data-page="contact"] .consultation-section .cost-grid article:nth-child(3) { --plaque-photo: url("assets/programmes/shadows/laptop-study.jpg"); }
body[data-page="contact"] .consultation-section .cost-grid article:nth-child(4) { --plaque-photo: url("assets/programmes/shadows/campus.jpg"); }
body[data-page="resources"] .resource-path-grid .info-card:nth-child(1) { --plaque-photo: url("assets/programmes/shadows/university-building.jpg"); }
body[data-page="resources"] .resource-path-grid .info-card:nth-child(2) { --plaque-photo: url("assets/programmes/shadows/study-notes.jpg"); }
body[data-page="resources"] .resource-path-grid .info-card:nth-child(3) { --plaque-photo: url("assets/brand/funding-clean.jpg"); }
body[data-page="resources"] .resource-path-grid .info-card:nth-child(4) { --plaque-photo: url("assets/programmes/shadows/student-group.jpg"); }
body[data-page="universities"] .requirement-grid article:nth-child(1) { --plaque-photo: url("assets/universities/shortlist-ambitious-soas.jpg"); }
body[data-page="universities"] .requirement-grid article:nth-child(2) { --plaque-photo: url("assets/programmes/shadows/library-interior.jpg"); }
body[data-page="universities"] .requirement-grid article:nth-child(3) { --plaque-photo: url("assets/programmes/shadows/writing.jpg"); }
body[data-page="universities"] .requirement-grid article:nth-child(4) { --plaque-photo: url("assets/universities/shortlist-confident-oxford.jpg"); }
body[data-page="student-life"] .visa-card:nth-child(1) { --plaque-photo: url("assets/destinations/uk-landmark.jpg"); }
body[data-page="student-life"] .visa-card:nth-child(2) { --plaque-photo: url("assets/programmes/shadows/study-notes.jpg"); }
body[data-page="student-life"] .visa-card:nth-child(3) { --plaque-photo: url("assets/programmes/shadows/student-group.jpg"); }
body[data-page="student-life"] .visa-card:nth-child(4) { --plaque-photo: url("assets/brand/graduates-clean.png"); }
body[data-page="contact"] .consultation-section .cost-grid span,
body[data-page="resources"] .resource-path-grid .info-card > span,
body[data-page="universities"] .requirement-grid article > span,
body[data-page="student-life"] .visa-card > span { color: var(--taupe); }
body[data-page="contact"] .consultation-section .cost-grid p,
body[data-page="resources"] .resource-path-grid .info-card p,
body[data-page="universities"] .requirement-grid p,
body[data-page="student-life"] .visa-card p { color: rgba(255,250,240,.78); text-shadow: 0 1px 16px rgba(0,0,0,.62); }
body[data-page="resources"] .resource-path-grid .info-card > b,
body[data-page="universities"] .requirement-grid li,
body[data-page="student-life"] .visa-card a { color: var(--cream); }
body[data-page="universities"] .requirement-grid li { border-color: rgba(238,231,215,.2); }
body[data-page="resources"] .resource-path-grid .info-card h3,
body[data-page="universities"] .requirement-grid h3,
body[data-page="student-life"] .visa-card h3 { color: var(--cream); text-shadow: 0 2px 22px rgba(0,0,0,.68); }

body[data-page="funding"] .funding-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 210px;
  background: var(--paper);
}
body[data-page="funding"] .funding-card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 168px;
  background:
    linear-gradient(180deg, rgba(41,4,5,.02), rgba(41,4,5,.24)),
    var(--funding-plaque-photo) center / cover no-repeat;
  content: "";
}
body[data-page="funding"] .funding-card::after {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  height: 138px;
  border: 1px solid rgba(238,231,215,.46);
  content: "";
  pointer-events: none;
}
body[data-page="funding"] .funding-card:nth-child(1) { --funding-plaque-photo: url("assets/programmes/shadows/books.jpg"); }
body[data-page="funding"] .funding-card:nth-child(2) { --funding-plaque-photo: url("assets/brand/student-groceries-clean.jpg"); }

/* The About route and Academy board retain their purpose, but receive stronger reference-page contrast. */
body[data-page="about"] .about-route-paper {
  background:
    linear-gradient(135deg, rgba(247,242,233,.92), rgba(238,231,215,.7)),
    url("assets/programmes/graphics-raster/route-globe-v2.webp") 62% 62% / 92% auto no-repeat;
}
body[data-page="about"] .about-route-line path { stroke-width: 1.75; }
body[data-page="about"] .about-value-card {
  background-image: linear-gradient(145deg, rgba(247,242,233,.96), rgba(238,231,215,.82)), var(--value-art);
  background-position: center, right -28px bottom -20px;
  background-size: cover, 150px auto;
  background-repeat: no-repeat;
}
body[data-page="about"] .about-value-card:nth-child(1) { --value-art: url("assets/programmes/graphics-raster/evidence-dossier-v2.webp"); }
body[data-page="about"] .about-value-card:nth-child(2) { --value-art: url("assets/programmes/graphics-raster/route-globe-v2.webp"); }
body[data-page="about"] .about-value-card:nth-child(3) { --value-art: url("assets/programmes/graphics-raster/academic-still-life-v2.webp"); }
body[data-page="about"] .about-value-card:nth-child(4) { --value-art: url("assets/programmes/graphics-raster/next-compass-v2.webp"); }
body[data-page="academy"] .academy-current-board > a::after,
body[data-page="academy"] .academy-course-card::before { opacity: .16; }

@media (max-width: 1120px) {
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .68fr);
    gap: 42px;
  }
  body[data-page="destinations"][data-country] .country-page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 0 42px;
  }
  body[data-page="contact"] .contact-page-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr); gap: 42px; }
}

@media (max-width: 760px) {
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero {
    padding-top: 84px;
    padding-bottom: 42px;
    background: var(--paper);
  }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero .breadcrumb { margin-bottom: 27px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid > div:first-child { padding: 8px 0 2px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.9rem);
    line-height: .91;
  }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side {
    min-height: 390px;
    margin-top: 0;
    padding: 218px 22px 24px;
    background-position: center, var(--editorial-hero-position, center);
    box-shadow: none;
  }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side::before { inset: 10px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side .button { width: 100%; }

  body[data-page="destinations"][data-country] .country-page-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "crumb" "title" "visual" "facts";
    gap: 0;
    padding-top: 84px;
    padding-bottom: 44px;
    background: var(--paper);
  }
  body[data-page="destinations"][data-country] .country-page-hero .breadcrumb { margin-bottom: 27px; }
  body[data-page="destinations"][data-country] .country-page-title { gap: 19px; padding: 4px 0 28px; }
  body[data-page="destinations"][data-country] .country-page-title h1 { font-size: clamp(3.05rem, 13.8vw, 4.85rem); }
  body[data-page="destinations"][data-country] .country-page-title .button { width: 100%; }
  body[data-page="destinations"][data-country] .country-hero-visual { min-height: 390px; }
  body[data-page="destinations"][data-country] .country-hero-visual::after { inset: 10px; }
  body[data-page="destinations"][data-country] .country-visual-mark { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  body[data-page="destinations"][data-country] .country-fact-row { grid-template-columns: 1fr; margin-top: 22px; }
  body[data-page="destinations"][data-country] .country-fact-row article { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  body[data-page="destinations"][data-country] .country-fact-row article:last-child { border-bottom: 0; }

  body[data-page="contact"] .contact-page { padding-top: 84px; padding-bottom: 44px; background: var(--paper); }
  body[data-page="contact"] .contact-page .breadcrumb { margin-bottom: 27px; }
  body[data-page="contact"] .contact-page-grid { grid-template-columns: 1fr; gap: 26px; }
  body[data-page="contact"] .contact-page .contact-copy { padding: 6px 0 0; }
  body[data-page="contact"] .contact-page .contact-copy h1 { font-size: clamp(3.1rem, 14vw, 4.9rem); }
  body[data-page="contact"] .contact-page .contact-card { min-height: 480px; padding: 26px 22px; }
  body[data-page="contact"] .contact-page .contact-card::before { inset: 10px; }

  body[data-page="admissions"] .service-item {
    display: grid;
    min-height: 0;
    grid-template-columns: 38px 1fr 26px;
    gap: 16px;
    padding: 168px 0 26px;
    background-image:
      linear-gradient(180deg, rgba(68,7,9,.08) 0 112px, var(--burgundy) 158px),
      var(--service-photo);
    background-position: center, center top;
    background-size: cover, 100% 150px;
  }
  body[data-page="admissions"] .service-item h3 { grid-column: 2; margin: 0; }
  body[data-page="admissions"] .service-item > div { grid-column: 2 / 4; }
  body[data-page="admissions"] .service-item > i { grid-column: 3; grid-row: 1; }
  body[data-page="funding"] .funding-card { padding: 194px 24px 30px; }
  body[data-page="contact"] .consultation-section .cost-grid,
  body[data-page="student-life"] .visa-grid { grid-template-columns: 1fr; }
  body[data-page="contact"] .consultation-section .cost-grid article,
  body[data-page="resources"] .resource-path-grid .info-card,
  body[data-page="universities"] .requirement-grid article,
  body[data-page="student-life"] .visa-card { min-height: 360px; }
}

@media (max-width: 360px) {
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side,
  body[data-page="destinations"][data-country] .country-hero-visual { min-height: 350px; }
  body[data-page="contact"] .contact-page .contact-card { min-height: 450px; padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .topic-visual-programmes .topic-chips > span,
  .topic-visual-programmes .topic-chips > span::before,
  body[data-page="programmes"] .subject-strip b,
  body[data-page="programmes"] .subject-strip b::before,
  body[data-page="programmes"] .programme-card-inner,
  body[data-page="programmes"] .programme-card-face,
  body[data-page="programmes"] .programme-flip-toggle,
  body[data-page="programmes"] .programme-flip-toggle i { transition: none; }
  body[data-page="programmes"] .programme-card:hover .programme-card-inner,
  body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-inner { transform: none; }
  body[data-page="programmes"] .programme-card-back { visibility: hidden; opacity: 0; transform: none; }
  body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-front { visibility: hidden; opacity: 0; }
  body[data-page="programmes"] .programme-card[data-flipped="true"] .programme-card-back { visibility: visible; opacity: 1; }
}

/* Global editorial search */
body.search-open { overflow: hidden; }
.site-search-trigger {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(247,242,233,.56);
  color: var(--burgundy);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.site-search-trigger:hover { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); transform: translateY(-1px); }
.site-search-icon { position: relative; display: block; width: 17px; height: 17px; color: currentColor; }
.site-search-icon::before { position: absolute; top: 1px; left: 1px; width: 9px; height: 9px; border: 1.5px solid currentColor; border-radius: 50%; content: ""; }
.site-search-icon::after { position: absolute; right: 1px; bottom: 2px; width: 7px; height: 1.5px; background: currentColor; content: ""; transform: rotate(45deg); transform-origin: right center; }

.site-search-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-width: none;
  max-height: min(820px, calc(100dvh - 48px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(238,231,215,.28);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(28,2,4,.42);
}
.site-search-dialog::backdrop { background: rgba(31,3,5,.72); backdrop-filter: blur(7px); }
.site-search-shell { display: grid; min-height: min(720px, calc(100dvh - 48px)); grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr); }
.site-search-editorial {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 58px 48px 42px;
  overflow: hidden;
  background: var(--wine-dark);
  color: var(--cream);
}
.site-search-editorial::before { position: absolute; z-index: -1; inset: 18px; border: 1px solid rgba(238,231,215,.13); content: ""; pointer-events: none; }
.site-search-editorial .section-index { color: var(--taupe); }
.site-search-editorial h2 { margin: 82px 0 26px; font-family: var(--serif); font-size: clamp(3.2rem,4.6vw,5.15rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.site-search-editorial h2 span,
.site-search-editorial h2 em { display: block; }
.site-search-editorial h2 em { color: var(--taupe); font-weight: 400; }
.site-search-editorial > p:not(.section-index) { position: relative; z-index: 1; max-width: 360px; color: rgba(238,231,215,.68); font-size: .78rem; }
.site-search-editorial > img { position: absolute; z-index: -1; right: -88px; bottom: -82px; width: 330px; height: 330px; border-radius: 50%; object-fit: cover; opacity: .075; filter: grayscale(1); }
.site-search-folio { margin-top: auto; color: rgba(238,231,215,.45); font-size: .56rem; letter-spacing: .17em; }
.site-search-workspace { position: relative; min-width: 0; max-height: min(820px,calc(100dvh - 48px)); padding: 70px 48px 30px; overflow-y: auto; background: var(--paper); }
.site-search-close { position: absolute; top: 24px; right: 26px; display: inline-flex; min-height: 34px; align-items: center; gap: 11px; padding: 0; border: 0; background: transparent; color: var(--burgundy); cursor: pointer; font-size: .62rem; font-weight: 600; }
.site-search-close i { position: relative; display: block; width: 28px; height: 28px; border: 1px solid var(--line); }
.site-search-close i::before,
.site-search-close i::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: currentColor; content: ""; }
.site-search-close i::before { transform: translate(-50%,-50%) rotate(45deg); }
.site-search-close i::after { transform: translate(-50%,-50%) rotate(-45deg); }
.site-search-form > label { display: block; margin-bottom: 10px; color: var(--burgundy); font-size: .65rem; font-weight: 600; letter-spacing: .04em; }
.site-search-form > div { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; border: 1px solid rgba(68,7,9,.32); background: rgba(255,255,255,.48); box-shadow: 8px 8px 0 rgba(68,7,9,.045); }
.site-search-form > div > .site-search-icon { justify-self: center; color: var(--burgundy); }
.site-search-form input { width: 100%; min-width: 0; height: 60px; padding: 0 12px 0 0; border: 0; background: transparent; color: var(--ink); font-family: var(--sans); font-size: .9rem; outline: 0; }
.site-search-form input::placeholder { color: #8b8079; opacity: 1; }
.site-search-form button { display: inline-flex; min-width: 112px; min-height: 60px; align-items: center; justify-content: space-between; gap: 18px; padding: 0 18px; border: 0; border-left: 1px solid rgba(238,231,215,.2); background: var(--burgundy); color: var(--cream); cursor: pointer; font-size: .67rem; font-weight: 600; }
.site-search-form button i { font-style: normal; }
html[dir="rtl"] .site-search-form button { border-right: 1px solid rgba(238,231,215,.2); border-left: 0; }
.site-search-suggestions { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin: 15px 0 28px; }
.site-search-suggestions > span { margin-right: 5px; color: var(--muted); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }
html[dir="rtl"] .site-search-suggestions > span { margin-right: 0; margin-left: 5px; }
.site-search-suggestions button { min-height: 30px; padding: 0 10px; border: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--burgundy); cursor: pointer; font-size: .6rem; transition: border-color .2s ease, background .2s ease; }
.site-search-suggestions button:hover { border-color: var(--burgundy); background: var(--cream); }
.site-search-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.site-search-status p { margin: 0; color: var(--burgundy); font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-search-status p:last-child { color: var(--muted); font-weight: 500; }
.site-search-results { display: flex; flex-direction: column; }
.site-search-result { display: grid; min-width: 0; grid-template-columns: 42px minmax(0,1fr) 32px; gap: 15px; align-items: center; min-height: 88px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); transition: background .2s ease, padding .2s ease; }
.site-search-result:hover,
.site-search-result:focus-visible { padding-inline: 12px; background: var(--cream); }
.site-search-result-number { color: var(--burgundy); font-family: var(--serif); font-size: 1.15rem; }
.site-search-result-copy { min-width: 0; }
.site-search-result-copy small { display: block; margin-bottom: 3px; color: var(--burgundy); font-size: .54rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.site-search-result-copy b { display: block; overflow: hidden; font-family: var(--serif); font-size: 1.22rem; font-weight: 400; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.site-search-result-copy p { display: -webkit-box; margin: 5px 0 0; overflow: hidden; color: var(--muted); font-size: .64rem; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.site-search-result > i { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); color: var(--burgundy); font-style: normal; }
.site-search-empty { padding: 25px 0; border-bottom: 1px solid var(--line); }
.site-search-empty b { color: var(--burgundy); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.site-search-empty p { max-width: 500px; margin: 7px 0 0; color: var(--muted); font-size: .68rem; }
.site-search-help { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; color: var(--muted); font-size: .62rem; }
.site-search-help a { display: inline-flex; align-items: center; gap: 8px; color: var(--burgundy); font-weight: 600; }
.site-search-help i { font-style: normal; }

@media (max-width: 1360px) and (min-width: 1121px) {
  .careers-header-button { display: none; }
  .header-actions { gap: 11px; }
}

@media (max-width: 760px) {
  .site-search-trigger { display: none; }
  .mobile-quickbar button,
  .mobile-quickbar a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 0 15px; border: 0; border-radius: 0; background: transparent; color: var(--burgundy); font-family: var(--sans); font-size: .7rem; font-weight: 600; text-align: left; }
  .mobile-quickbar button { cursor: pointer; }
  .mobile-quickbar > :last-child { background: var(--burgundy); color: var(--cream); }
  .mobile-quickbar .site-search-icon { width: 17px; height: 17px; font-size: initial; }
  .site-search-dialog { width: 100vw; height: 100dvh; max-height: none; border: 0; }
  .site-search-shell { min-height: 100dvh; grid-template-columns: 1fr; grid-template-rows: auto minmax(0,1fr); }
  .site-search-editorial { min-height: 180px; padding: 28px 24px 24px; }
  .site-search-editorial::before { inset: 10px; }
  .site-search-editorial h2 { margin: 26px 0 10px; font-size: clamp(2.55rem,12vw,3.65rem); }
  .site-search-editorial > p:not(.section-index) { max-width: 90%; margin: 0; font-size: .68rem; }
  .site-search-editorial > img { right: -50px; bottom: -90px; width: 240px; height: 240px; }
  .site-search-folio { display: none; }
  .site-search-workspace { max-height: none; padding: 64px 20px calc(22px + env(safe-area-inset-bottom)); }
  .site-search-close { top: 17px; right: 20px; }
  .site-search-form > div { grid-template-columns: 42px minmax(0,1fr) 54px; }
  .site-search-form input { height: 54px; padding-right: 6px; }
  .site-search-form button { min-width: 54px; min-height: 54px; justify-content: center; padding: 0; }
  .site-search-form button span { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .site-search-result { min-height: 82px; grid-template-columns: 34px minmax(0,1fr) 30px; gap: 11px; }
  .site-search-result-copy b { display: -webkit-box; font-size: 1.08rem; text-overflow: clip; white-space: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .site-search-result-copy p { -webkit-line-clamp: 2; }
}

@media (max-width: 360px) {
  .site-search-editorial { min-height: 164px; padding: 24px 20px 20px; }
  .site-search-editorial h2 { margin-top: 18px; font-size: 2.45rem; }
  .site-search-editorial > p:not(.section-index) { display: none; }
  .site-search-workspace { padding-inline: 15px; }
  .site-search-suggestions { margin-bottom: 20px; }
  .site-search-suggestions button { padding-inline: 8px; }
  .site-search-help { align-items: flex-start; flex-direction: column; }
}

/* Degree-route drawers: burgundy index tabs rise from behind the editorial case. */
body[data-page="programmes"] .degree-drawer { position: relative; margin-top: 92px; isolation: isolate; }
body[data-page="programmes"] .degree-drawer-tabs {
  position: relative; z-index: 1; display: grid; width: calc(100% - 96px); margin: 0 auto -1px;
  padding: 0 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px;
}
body[data-page="programmes"] .degree-drawer-tabs button {
  position: relative; display: grid; min-width: 0; min-height: 84px; padding: 17px 18px 22px;
  border: 1px solid rgba(238,231,215,.28); border-bottom: 0; background: #5b121f; color: var(--cream);
  cursor: pointer; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr; text-align: left;
  transform: translateY(22px); transition: transform .45s cubic-bezier(.2,.8,.2,1), background .25s ease, box-shadow .25s ease;
}
body[data-page="programmes"] .degree-drawer-tabs button small { grid-column: 1 / -1; margin-bottom: 7px; color: rgba(238,231,215,.62); font-size: .58rem; letter-spacing: .16em; }
body[data-page="programmes"] .degree-drawer-tabs button span { overflow: hidden; font-family: var(--serif); font-size: clamp(.95rem, 1.45vw, 1.35rem); line-height: 1.08; text-overflow: ellipsis; white-space: nowrap; }
body[data-page="programmes"] .degree-drawer-tabs button i { align-self: center; margin-left: 10px; font-family: var(--serif); font-size: 1rem; font-style: normal; transition: transform .35s ease; }
body[data-page="programmes"] .degree-drawer-tabs button[data-drawer-active] { z-index: 2; background: var(--burgundy); transform: translateY(0); box-shadow: 0 -16px 36px rgba(68,7,9,.12); }
body[data-page="programmes"] .degree-drawer-tabs button[data-drawer-active] i { transform: rotate(180deg); }
body[data-page="programmes"] .degree-drawer-tabs button:hover { background: #6b1727; transform: translateY(14px); }
body[data-page="programmes"] .degree-drawer-tabs button[data-drawer-active]:hover { transform: translateY(0); }
body[data-page="programmes"] .degree-drawer-tabs button:focus-visible { z-index: 4; outline: 3px solid var(--taupe); outline-offset: 3px; }
body[data-page="programmes"] .degree-drawer-case { position: relative; z-index: 2; min-height: 600px; overflow: hidden; border: 1px solid rgba(68,7,9,.19); background: var(--paper); box-shadow: 0 28px 70px rgba(68,7,9,.1); }
body[data-page="programmes"] .degree-drawer-case::before { position: absolute; z-index: 4; top: 0; right: 0; left: 0; height: 3px; background: var(--burgundy); content: ""; }
body[data-page="programmes"] .degree-drawer-panel { display: grid; min-height: 600px; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
body[data-page="programmes"] .degree-drawer-panel[hidden] { display: none; }
body[data-page="programmes"] .degree-drawer-panel.is-active { animation: degreeDrawerReveal .5s cubic-bezier(.2,.8,.2,1) both; }
body[data-page="programmes"] .degree-drawer-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 58px clamp(36px, 4.5vw, 70px); }
body[data-page="programmes"] .degree-drawer-copy > span { color: var(--burgundy); font-size: .61rem; font-weight: 600; letter-spacing: .17em; }
body[data-page="programmes"] .degree-drawer-copy h3 { margin: 30px 0 18px; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 4.35rem); font-weight: 400; line-height: .96; }
body[data-page="programmes"] .degree-drawer-copy > p { max-width: 580px; margin: 0; color: var(--text); font-size: .86rem; line-height: 1.72; }
body[data-page="programmes"] .degree-drawer-copy .degree-drawer-insight { margin-top: 17px; padding: 15px 0 15px 18px; border-left: 2px solid rgba(68,7,9,.34); color: var(--burgundy); font-size: .72rem; line-height: 1.62; }
body[data-page="programmes"] .degree-drawer-copy h4 { margin: 31px 0 7px; color: var(--burgundy); font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
body[data-page="programmes"] .degree-drawer-copy ul { margin: 0; padding: 0; list-style: none; }
body[data-page="programmes"] .degree-drawer-copy li { position: relative; padding: 8px 0 8px 18px; border-top: 1px solid rgba(68,7,9,.1); color: var(--text); font-size: .69rem; line-height: 1.5; }
body[data-page="programmes"] .degree-drawer-copy li::before { position: absolute; top: 15px; left: 1px; width: 5px; height: 5px; background: var(--burgundy); content: ""; transform: rotate(45deg); }
body[data-page="programmes"] .degree-drawer-copy small { display: block; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(68,7,9,.2); color: var(--burgundy); font-size: .67rem; font-weight: 600; line-height: 1.55; }
body[data-page="programmes"] .degree-drawer-media { position: relative; min-width: 0; min-height: 600px; margin: 0; overflow: hidden; background: var(--burgundy); }
body[data-page="programmes"] .degree-drawer-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(30,4,10,.7)); content: ""; pointer-events: none; }
body[data-page="programmes"] .degree-drawer-media video { display: block; width: 100%; height: 100%; min-height: 600px; object-fit: cover; filter: saturate(.78) sepia(.04); }
body[data-page="programmes"] .degree-drawer-media .degree-video-hd { object-position: center center; filter: none; transform: none; }
body[data-page="programmes"] .degree-drawer-media figcaption { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; color: rgba(255,248,235,.84); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
@keyframes degreeDrawerReveal { from { opacity: .55; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  body[data-page="programmes"] .degree-drawer-tabs { width: calc(100% - 42px); padding: 0 8px; }
  body[data-page="programmes"] .degree-drawer-tabs button { padding-right: 13px; padding-left: 13px; }
  body[data-page="programmes"] .degree-drawer-copy { padding: 48px 38px; }
}

@media (max-width: 760px) {
  body[data-page="programmes"] .degree-drawer { margin-top: 72px; }
  body[data-page="programmes"] .degree-drawer-tabs { width: 100%; padding: 0; gap: 3px; }
  body[data-page="programmes"] .degree-drawer-tabs button { min-height: 72px; padding: 13px 8px 18px; grid-template-columns: 1fr; transform: translateY(18px); }
  body[data-page="programmes"] .degree-drawer-tabs button small { margin-bottom: 5px; font-size: .49rem; letter-spacing: .08em; }
  body[data-page="programmes"] .degree-drawer-tabs button span { font-size: clamp(.68rem, 3.15vw, .9rem); }
  body[data-page="programmes"] .degree-drawer-tabs button i { display: none; }
  body[data-page="programmes"] .degree-drawer-tabs button:hover { transform: translateY(18px); }
  body[data-page="programmes"] .degree-drawer-tabs button[data-drawer-active], body[data-page="programmes"] .degree-drawer-tabs button[data-drawer-active]:hover { transform: translateY(0); }
  body[data-page="programmes"] .degree-drawer-case { min-height: 0; }
  body[data-page="programmes"] .degree-drawer-panel { min-height: 0; grid-template-columns: 1fr; }
  body[data-page="programmes"] .degree-drawer-copy { padding: 38px 28px 34px; }
  body[data-page="programmes"] .degree-drawer-copy h3 { margin-top: 24px; font-size: clamp(2.15rem, 12vw, 3.6rem); }
  body[data-page="programmes"] .degree-drawer-copy > p { font-size: .78rem; }
  body[data-page="programmes"] .degree-drawer-copy h4 { margin-top: 27px; }
  body[data-page="programmes"] .degree-drawer-copy li { font-size: .66rem; }
  body[data-page="programmes"] .degree-drawer-media, body[data-page="programmes"] .degree-drawer-media video { min-height: 245px; height: 62vw; max-height: 330px; }
}

@media (max-width: 340px) {
  body[data-page="programmes"] .degree-drawer-tabs button { padding-right: 5px; padding-left: 5px; }
  body[data-page="programmes"] .degree-drawer-tabs button small { font-size: .43rem; }
  body[data-page="programmes"] .degree-drawer-tabs button span { font-size: .62rem; }
  body[data-page="programmes"] .degree-drawer-copy { padding-right: 23px; padding-left: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="programmes"] .degree-drawer-tabs button, body[data-page="programmes"] .degree-drawer-tabs button i { transition: none; }
  body[data-page="programmes"] .degree-drawer-panel.is-active { animation: none; }
}
.brand-story-programmes { padding-top: 76px; padding-bottom: 76px; }
.brand-story-programmes .brand-story-media figure > img { height: 460px; object-position: center 56%; filter: saturate(.76) sepia(.05); }
.home-directory { padding-top: 125px; }
.home-directory .section-head, .home-destination-hub .section-head { display: block; max-width: 1040px; }
.home-directory .section-head .section-index, .home-destination-hub .section-head .section-index { margin: 0 0 28px; }
.home-directory .section-head h2, .home-destination-hub .section-head h2 { margin: 0; text-align: left; }
.home-directory .section-head > p:last-child, .home-destination-hub .section-head > p:last-child { max-width: 680px; margin: 25px 0 0; text-align: left; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.directory-card { position: relative; display: flex; min-height: 455px; flex-direction: column; justify-content: flex-end; padding: 190px 28px 60px; overflow: hidden; border: 1px solid rgba(238,231,215,.2); background: var(--burgundy); color: var(--cream); isolation: isolate; transition: transform .25s, border-color .25s; }
.directory-card:hover { border-color: rgba(238,231,215,.46); transform: translateY(-4px); }
.directory-card > span { position: absolute; z-index: 2; top: 18px; left: 18px; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(238,231,215,.58); background: rgba(50,16,24,.72); color: var(--cream); font-size: .61rem; backdrop-filter: blur(7px); }
.directory-card:hover > span { color: var(--taupe); }
.directory-card-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: var(--burgundy); }
.directory-card-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,7,13,.12) 0%, rgba(38,8,16,.32) 42%, rgba(43,9,18,.88) 72%, rgba(37,7,15,.97) 100%); content: ""; transition: background .35s; }
.directory-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) sepia(.08); transition: transform .6s ease, filter .35s ease; }
.directory-card:hover .directory-card-media img { transform: scale(1.035); filter: saturate(.82) sepia(.04); }
.directory-icon { position: absolute; z-index: 2; top: 18px; right: 18px; display: grid; width: 50px; height: 50px; place-items: center; margin: 0; border: 1px solid rgba(238,231,215,.58); border-radius: 50%; background: rgba(50,16,24,.72); color: var(--cream); font-family: var(--serif); font-size: 1rem; backdrop-filter: blur(7px); transition: background .25s, color .25s, border-color .25s; }
.directory-card:hover .directory-icon { border-color: rgba(238,231,215,.85); background: rgba(50,16,24,.88); color: var(--taupe); }
.directory-card h3, .directory-card p { position: relative; z-index: 1; }
.directory-card h3 { margin: 0 0 14px; color: var(--cream); font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1.04; text-shadow: 0 1px 18px rgba(20,4,9,.4); }
.directory-card p { margin: 0; color: rgba(247,242,233,.78); font-size: .74rem; }
.directory-card:hover p { color: rgba(247,242,233,.9); }
.directory-card > b { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; color: var(--taupe); font-size: .64rem; }
.directory-card:hover > b { color: var(--cream); }
@media (prefers-reduced-motion: reduce) { .directory-card-media img { transition: none; } .directory-card:hover .directory-card-media img { transform: none; } }
.home-proof { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--cream); }
.home-proof .standards-copy .section-index { margin-top: 40px; }
.home-proof .standards-copy h2 { margin-top: 28px; }
.home-proof .standards-copy > p:last-child { margin-top: 20px; }
.journey-preview article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.journey-preview span { color: var(--burgundy); font-family: var(--serif); font-size: 1.35rem; }
.journey-preview b { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.journey-preview p { margin: 4px 0 0; color: var(--muted); font-size: .7rem; }
.page-cta { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 5vw; align-items: end; background: var(--burgundy); color: var(--cream); }
.page-cta .section-index { color: var(--taupe); }
.page-cta h2 { margin: 22px 0 10px; font-family: var(--serif); font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 400; line-height: .96; }
.page-cta p { max-width: 700px; margin: 0; color: rgba(238,231,215,.65); }
.page-cta > div > p:last-child { margin-top: 34px; }
.page-cta > .button { align-self: end; justify-self: end; }
.cost-grid, .arrival-grid, .academy-route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.cost-grid article, .academy-route-grid article { min-height: 285px; padding: 28px; background: var(--paper); }
.cost-grid span, .academy-route-grid > article > span { color: var(--burgundy); font-size: .64rem; }
.cost-grid b { display: block; margin: 75px 0 13px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.cost-grid p, .academy-route-grid p { color: var(--muted); font-size: .7rem; }
.calculator-section { max-width: none; background: var(--wine-dark); }
.official-panel { display: grid; grid-template-columns: .55fr 1.45fr; gap: 6vw; }
.arrival-grid { grid-template-columns: repeat(2, 1fr); }
.arrival-grid article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; min-height: 210px; padding: 30px; background: var(--paper); }
.arrival-grid span { color: var(--burgundy); font-family: var(--serif); font-size: 1.35rem; }
.arrival-grid b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.arrival-grid p { color: var(--muted); font-size: .72rem; }
.academy-page-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; padding-top: 84px; background: var(--burgundy); color: var(--cream); }
.academy-page-hero .academy-art { min-height: 676px; }
.academy-page-hero .academy-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.academy-copy h1 { margin: 30px 0 25px; font-family: var(--serif); font-size: clamp(3.2rem, 5.5vw, 6.2rem); font-weight: 400; line-height: .9; }
.academy-copy h1 span, .academy-copy h1 em { display: block; }
.academy-copy h1 em { color: var(--taupe); font-weight: 400; }
.academy-route-grid article { min-height: 370px; }
.academy-route-grid .programme-mark { margin-top: 35px; }
.academy-route-grid h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.contact-page { position: relative; max-width: none; min-height: 0; overflow: hidden; padding-top: 104px; padding-bottom: 72px; background: var(--burgundy); color: var(--cream); }
.contact-page .breadcrumb { color: rgba(238,231,215,.55); }
.contact-page .breadcrumb b, .contact-page .breadcrumb a:hover { color: var(--taupe); }
.contact-page-grid { display: grid; grid-template-columns: 1.12fr .7fr; gap: 8vw; align-items: start; }
.contact-page .contact-copy h1 { margin: 32px 0 28px; font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 400; line-height: .88; }
.contact-page .contact-copy h1 span, .contact-page .contact-copy h1 em { display: block; }
.contact-page .contact-copy h1 em { color: var(--taupe); font-weight: 400; }
.contact-page .section-index { color: var(--taupe); }
.contact-page .contact-copy > p:not(.section-index) { color: rgba(238,231,215,.67); }
.contact-page .contact-card { align-self: start; color: var(--cream); }
.university-hero { padding-bottom: 62px; background: linear-gradient(115deg, var(--paper) 0 72%, var(--cream) 72%); }
.university-hero h1 { max-width: 920px; font-size: clamp(3.4rem, 5.1vw, 6.1rem); line-height: .92; text-wrap: balance; }
.explorer-toolbar { display: grid; grid-template-columns: 1.4fr .8fr .8fr auto; gap: 10px; align-items: end; padding: 24px; border: 1px solid var(--line); background: var(--paper); }
.explorer-toolbar label > span { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: .63rem; font-weight: 600; }
.explorer-toolbar input, .explorer-toolbar select { width: 100%; height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--ink); outline: none; }
.explorer-toolbar input:focus, .explorer-toolbar select:focus { border-color: var(--burgundy); }
.explorer-toolbar button { height: 48px; padding: 0 17px; border: 1px solid var(--burgundy); background: transparent; color: var(--burgundy); cursor: pointer; font-size: .68rem; font-weight: 600; }
.explorer-status { display: flex; justify-content: space-between; margin: 24px 0 14px; color: var(--muted); }
.explorer-status span { display: flex; align-items: baseline; gap: 7px; }
.explorer-status b { color: var(--burgundy); font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.explorer-status i { font-size: .65rem; font-style: normal; }
.university-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.university-card { position: relative; min-height: 365px; padding: 26px; border: 1px solid var(--line); background: var(--paper); transition: transform .22s, box-shadow .22s; }
.university-card:hover { transform: translateY(-3px); box-shadow: 0 16px 35px rgba(68,7,9,.08); }
.university-card-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.university-card-top > span { color: var(--burgundy); font-size: .61rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.save-university { width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--burgundy); cursor: pointer; font-size: 1.1rem; }
.save-university.saved { background: var(--burgundy); color: var(--cream); }
.university-card h3 { margin: 44px 0 4px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.05; }
.university-city { color: var(--burgundy); font-size: .65rem; }
.university-focus { color: var(--muted); font-size: .72rem; }
.university-levels { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.university-levels span { padding: 5px 8px; background: var(--cream); color: var(--burgundy); font-size: .59rem; }
.university-actions { position: absolute; right: 26px; bottom: 23px; left: 26px; display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.university-actions a { color: var(--burgundy); font-size: .61rem; font-weight: 600; }
.empty-universities { grid-column: 1 / -1; padding: 70px 25px; border: 1px dashed var(--line); color: var(--muted); text-align: center; }
.catalogue-note { display: grid; grid-template-columns: .4fr 1fr; gap: 5vw; margin-top: 40px; padding: 30px; border: 1px solid var(--line); }
.catalogue-note b { color: var(--burgundy); font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.catalogue-note p { margin: 0; color: var(--muted); font-size: .72rem; }
.requirement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.requirement-grid article { min-height: 385px; padding: 32px; border: 1px solid var(--line); }
.requirement-grid article > span { color: var(--burgundy); font-size: .64rem; }
.requirement-grid h3 { margin: 50px 0 14px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.requirement-grid p { color: var(--muted); font-size: .74rem; }
.requirement-grid li { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--burgundy); font-size: .66rem; }
.shortlist-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.shortlist-columns article { position: relative; isolation: isolate; display: flex; min-height: 330px; overflow: hidden; flex-direction: column; padding: 30px; background: var(--wine-dark); color: var(--cream); }
.shortlist-columns article::before,
.shortlist-columns article::after { content: ""; position: absolute; inset: 0; z-index: -2; }
.shortlist-columns article::before { background: var(--shortlist-image) var(--shortlist-position, center) / cover no-repeat; filter: saturate(.82) contrast(1.04); transform: scale(1.015); transition: transform .7s ease; }
.shortlist-columns article::after { z-index: -1; background: linear-gradient(180deg, rgba(25,3,5,.48) 0%, rgba(31,4,6,.67) 48%, rgba(22,2,4,.96) 100%); }
.shortlist-columns article[data-shortlist-visual="ambitious"] { --shortlist-image: url("assets/universities/shortlist-ambitious-soas.jpg"); --shortlist-position: center 54%; }
.shortlist-columns article[data-shortlist-visual="best-fit"] { --shortlist-image: url("assets/universities/shortlist-best-fit-study.jpg"); --shortlist-position: 58% center; }
.shortlist-columns article[data-shortlist-visual="confident"] { --shortlist-image: url("assets/universities/shortlist-confident-oxford.jpg"); --shortlist-position: center 72%; }
.shortlist-columns article:hover::before { transform: scale(1.055); }
.shortlist-columns span { color: rgba(255,250,240,.88); font-size: .64rem; text-shadow: 0 1px 10px rgba(0,0,0,.72); }
.shortlist-columns h3 { min-height: 3.2rem; margin: auto 0 14px; color: #fffaf0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.08; text-shadow: 0 2px 22px rgba(0,0,0,.84); }
.shortlist-columns p { max-width: 94%; margin: 0; color: rgba(255,250,240,.92); font-size: .74rem; font-weight: 500; line-height: 1.5; text-shadow: 0 1px 14px rgba(0,0,0,.92); }
/* Editorial deep-dives */
.deep-dive { max-width: none; }
.deep-dive + .deep-dive { border-top: 1px solid var(--line); }
.offer-grid, .funding-layers, .learning-plan, .consultation-journey { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.info-card { position: relative; min-height: 390px; padding: 32px; border: 1px solid var(--line); background: var(--paper); }
.soft-section .info-card { background: rgba(255,255,255,.58); }
.info-card > span { color: var(--burgundy); font-size: .64rem; font-weight: 600; letter-spacing: .07em; }
.info-card h3 { margin: 44px 0 14px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1.06; }
.info-card h4 { margin: 25px 0 7px; color: var(--burgundy); font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; }
.info-card p, .info-card small { color: var(--muted); font-size: .72rem; }
.info-card small { display: block; margin-top: 20px; }
.info-card ul { margin: 14px 0 0; padding: 0; list-style: none; }
.info-card li { position: relative; padding: 8px 0 8px 17px; border-bottom: 1px solid var(--line); color: var(--burgundy); font-size: .66rem; }
.info-card li::before { position: absolute; top: 12px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--taupe); content: ""; }
.info-card a { display: inline-block; margin-top: 20px; color: var(--burgundy); font-size: .65rem; font-weight: 600; }
.decision-band { display: grid; grid-template-columns: 1fr auto; gap: 5vw; align-items: center; margin-top: 12px; padding: 34px; background: var(--wine-dark); color: var(--cream); }
.decision-band b { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.decision-band p { max-width: 780px; margin: 8px 0 0; color: rgba(238,231,215,.63); font-size: .72rem; }

.country-dossier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.country-dossier { border: 1px solid var(--line); background: var(--paper); }
.country-dossier summary { display: grid; grid-template-columns: 45px 1fr 24px; gap: 15px; align-items: center; min-height: 112px; padding: 22px 25px; cursor: pointer; list-style: none; }
.country-dossier summary::-webkit-details-marker { display: none; }
.country-dossier summary > span { font-size: 1.4rem; }
.country-dossier summary small { display: block; margin-bottom: 4px; color: var(--muted); font-size: .57rem; letter-spacing: .1em; }
.country-dossier summary b { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.country-dossier summary i { color: var(--burgundy); font-family: var(--serif); font-size: 1.5rem; font-style: normal; transition: transform .22s; }
.country-dossier[open] summary i { transform: rotate(45deg); }
.dossier-body { padding: 0 25px 28px 85px; border-top: 1px solid var(--line); }
.dossier-body > p:first-child { margin-top: 24px; }
.dossier-body p { color: var(--muted); font-size: .72rem; }
.dossier-body h4 { margin: 24px 0 7px; color: var(--burgundy); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.dossier-body ul { margin: 0; padding: 0; list-style: none; }
.dossier-body li { padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .66rem; }
.dossier-body a { display: inline-block; margin-top: 14px; color: var(--burgundy); font-size: .65rem; font-weight: 600; }

.visa-sequence { position: relative; margin: 0; padding: 0; list-style: none; }
.visa-sequence::before { position: absolute; top: 20px; bottom: 20px; left: 27px; width: 1px; background: var(--line); content: ""; }
.visa-sequence li { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 0 0 42px; }
.visa-sequence li > span { z-index: 1; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid var(--burgundy); border-radius: 50%; background: var(--cream); color: var(--burgundy); font-family: var(--serif); }
.visa-sequence h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.visa-sequence p { max-width: 900px; margin: 0; color: var(--muted); font-size: .74rem; }
.visa-sequence a { display: inline-block; margin-top: 10px; color: var(--burgundy); font-size: .65rem; font-weight: 600; }
.housing-guide { margin-top: 35px; padding: 38px; background: var(--wine-dark); color: var(--cream); }
.housing-guide > div:first-child { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.housing-guide .section-index { color: var(--taupe); }
.housing-guide h2 { max-width: 680px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 400; text-align: right; }
.housing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--white-line); }
.housing-grid article { min-height: 250px; padding: 25px; background: var(--wine-dark); }
.housing-grid h3 { margin: 0 0 45px; color: var(--taupe); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.housing-grid p { color: rgba(238,231,215,.62); font-size: .68rem; }

/* Expanded platform architecture */
.mobile-quickbar { display: none; }
.mobile-menu-foot { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; color: var(--muted); font-size: .6rem; letter-spacing: .08em; }
.mobile-menu-foot a { padding: 0 !important; border: 0 !important; color: var(--burgundy); font-family: var(--sans) !important; font-size: .65rem !important; font-weight: 600; }
.resource-hero { background: linear-gradient(115deg, var(--paper) 0 72%, var(--cream) 72%); }
.resource-path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.resource-path-grid .info-card { min-height: 330px; }
.resource-path-grid .info-card > b { position: absolute; right: 32px; bottom: 28px; left: 32px; color: var(--burgundy); font-size: .66rem; }
.home-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.home-country-grid a { position: relative; min-height: 280px; overflow: hidden; isolation: isolate; padding: 27px; border: 1px solid var(--line); background: var(--burgundy); color: var(--cream); transition: transform .22s; }
.home-country-grid a::before { content: ""; position: absolute; z-index: -2; inset: 0; background: var(--country-image) var(--country-position, center) / cover no-repeat; transition: transform .5s ease; }
.home-country-grid a::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(41, 4, 5, .08) 8%, rgba(41, 4, 5, .38) 48%, rgba(32, 3, 4, .9) 100%); pointer-events: none; }
.home-country-grid a:hover { transform: translateY(-3px); }
.home-country-grid a:hover::before { transform: scale(1.02); }
.home-country-grid a:nth-child(1) { --country-image: url("assets/destinations/uk-clean.jpg"); --country-position: 53% 47%; }
.home-country-grid a:nth-child(2) { --country-image: url("assets/destinations/usa-clean.jpg"); --country-position: 43% 48%; }
.home-country-grid a:nth-child(3) { --country-image: url("assets/destinations/canada-clean.jpg"); --country-position: 50% 47%; }
.home-country-grid a:nth-child(4) { --country-image: url("assets/destinations/europe-clean.jpg"); --country-position: 50% 46%; }
.home-country-grid a:nth-child(5) { --country-image: url("assets/destinations/uae-clean.jpg"); --country-position: 50% 44%; }
.home-country-grid a:nth-child(6) { --country-image: url("assets/destinations/morocco-clean.jpg"); --country-position: 50% 45%; }
.home-country-grid a > span { display: block; margin-bottom: 64px; font-size: 1.7rem; }
.home-country-grid small { color: rgba(255,255,255,.76); font-size: .59rem; text-transform: uppercase; letter-spacing: .09em; }
.home-country-grid h3 { margin: 9px 0 0; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.home-country-grid b { position: absolute; right: 27px; bottom: 24px; left: 27px; color: var(--cream); font-size: .63rem; }
.home-country-grid a:hover small, .home-country-grid a:hover b { color: var(--taupe); }
.home-control { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: start; }
.home-control .standards-copy { position: sticky; top: 110px; }
.home-control .standards-copy .section-index { margin-bottom: 52px; }
.home-control .standards-copy p:not(.section-index) { margin: 54px 0 20px; color: var(--muted); }
.control-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.control-grid article { position: relative; min-height: 255px; padding: 27px; overflow: hidden; background: var(--paper); }
.control-grid span { color: var(--burgundy); font-size: .63rem; }
.control-grid b { position: relative; z-index: 1; display: block; max-width: 46%; margin: 65px 0 10px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.control-grid p { position: relative; z-index: 1; max-width: 46%; margin: 0; color: var(--muted); font-size: .7rem; }
.control-visual { position: absolute; top: 18px; right: 10px; width: 46%; height: 150px; color: rgba(91,27,44,.5); pointer-events: none; }
.control-visual svg { display: block; width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; }
.control-visual .visual-faint { stroke: rgba(91,27,44,.2); }
.control-visual .visual-soft { stroke: rgba(91,27,44,.15); stroke-width: 2; }
.control-visual .visual-strong { stroke: var(--burgundy); stroke-width: 1.5; }
.control-visual .visual-dash { stroke: rgba(91,27,44,.48); stroke-dasharray: 2 7; }
.control-visual .visual-fill { fill: var(--burgundy); stroke: var(--burgundy); }
.control-visual .visual-faint-fill { fill: rgba(91,27,44,.06); stroke: rgba(91,27,44,.18); }
.control-visual .visual-soft-fill { fill: rgba(184,153,112,.08); stroke: rgba(91,27,44,.11); }
.control-visual .visual-paper { fill: var(--paper); stroke: var(--burgundy); }
.control-grid article:first-child > span::after { display: block; width: 18px; height: 1px; margin-top: 8px; background: rgba(91,27,44,.35); content: ""; }
.control-route { top: 6px; right: -3px; width: 62%; height: 235px; color: var(--burgundy); }
.control-route .route-orbits { fill: none; stroke: rgba(91,27,44,.09); stroke-width: .8; stroke-dasharray: 2 5; }
.control-route .route-path-shadow { fill: none; stroke: rgba(184,153,112,.12); stroke-width: 7; }
.control-route .route-path { fill: none; stroke: rgba(91,27,44,.38); stroke-width: 1.45; }
.control-route .route-start-outer { fill: var(--paper); stroke: var(--burgundy); stroke-width: 1.8; }
.control-route .route-start-inner { fill: var(--burgundy); stroke: none; }
.control-route .route-node { stroke-width: 1.25; }
.control-route .route-node-soft { fill: #ddd1c2; stroke: rgba(91,27,44,.16); }
.control-route .route-node-accent { fill: var(--burgundy); stroke: var(--paper); }
.control-route .route-node-paper { fill: var(--paper); stroke: rgba(91,27,44,.42); }
.control-route .route-label { fill: none; stroke: rgba(91,27,44,.2); stroke-width: .75; }
.control-route .route-mast { fill: none; stroke: var(--burgundy); stroke-width: 1.8; }
.control-route .route-flag { fill: var(--burgundy); stroke: var(--burgundy); stroke-width: .7; }
.control-route .route-finish-ring { fill: var(--paper); stroke: rgba(91,27,44,.65); stroke-width: 1.8; }
.control-results { top: 7px; right: -3px; width: 64%; height: 235px; color: var(--burgundy); }
.control-results svg { filter: drop-shadow(0 12px 11px rgba(68,7,9,.065)); }
.control-results .profile-sheet { stroke: rgba(91,27,44,.24); stroke-width: .8; }
.control-results .profile-sheet-back { fill: url(#profileBackPaper); stroke: rgba(91,27,44,.16); }
.control-results .profile-sheet-middle { fill: url(#profileMiddlePaper); stroke: rgba(91,27,44,.2); }
.control-results .profile-sheet-front { fill: url(#profileFrontPaper); stroke: rgba(91,27,44,.32); }
.control-results .profile-sheet-edge { fill: none; stroke: rgba(91,27,44,.09); stroke-width: .7; }
.control-results .profile-sheet-edge-front { stroke: rgba(91,27,44,.13); }
.control-results .profile-back-heading { fill: none; stroke: rgba(91,27,44,.15); stroke-width: 2.4; }
.control-results .profile-back-lines { fill: none; stroke: rgba(91,27,44,.17); stroke-width: 1.2; }
.control-results .profile-check-boxes { fill: rgba(255,255,255,.24); stroke: rgba(91,27,44,.12); stroke-width: .75; }
.control-results .profile-checks { fill: none; stroke: rgba(91,27,44,.38); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.control-results .profile-middle-band { fill: rgba(184,153,112,.09); stroke: none; }
.control-results .profile-middle-accent { fill: none; stroke: rgba(91,27,44,.15); stroke-width: 2.6; }
.control-results .profile-middle-seal { fill: rgba(184,153,112,.06); stroke: rgba(91,27,44,.14); stroke-width: .7; }
.control-results .profile-middle-seal-lines { fill: none; stroke: rgba(91,27,44,.13); stroke-width: .9; }
.control-results .profile-crest, .control-results .profile-crest-detail { display: none; }
.control-results .profile-title { fill: var(--burgundy); stroke: none; font-family: var(--serif); font-size: 13px; letter-spacing: .7px; transform: translateX(-42px); }
.control-results .profile-title-rule { fill: none; stroke: rgba(91,27,44,.14); stroke-width: .75; transform: translateX(-42px); }
.control-results .profile-copy { fill: none; stroke: rgba(91,27,44,.24); stroke-linecap: round; stroke-width: 2; }
.control-results .profile-building-panel { fill: #eee5d5; stroke: rgba(91,27,44,.13); stroke-width: .7; }
.control-results .profile-building-image { opacity: .76; }
.control-results .profile-building-glaze { fill: rgba(247,242,233,.2); stroke: rgba(91,27,44,.12); stroke-width: .7; }
.control-results .profile-info-block { fill: rgba(91,27,44,.075); stroke: none; }
.control-results .profile-info-block-light { fill: rgba(184,153,112,.1); }
.control-results .profile-info-block-detail { fill: none; stroke: rgba(91,27,44,.12); stroke-width: .7; }
.control-results .profile-info-lines { fill: none; stroke: rgba(91,27,44,.19); stroke-linecap: round; stroke-width: 1.2; }
.control-source { top: 5px; right: -4px; width: 55%; height: 190px; color: var(--burgundy); }
.control-source .source-sheet { stroke: rgba(91,27,44,.22); stroke-width: .8; }
.control-source .source-sheet-back { fill: url(#sourceBackPaper); }
.control-source .source-sheet-front { fill: url(#sourceFrontPaper); stroke: rgba(91,27,44,.3); }
.control-source .source-paper-grain { fill: url(#sourcePaperGrain); stroke: none; opacity: .42; }
.control-source .source-paper-grain-front { opacity: .32; }
.control-source .source-sheet-edge { fill: none; stroke: rgba(91,27,44,.09); stroke-width: .65; }
.control-source .source-sheet-edge-front { stroke: rgba(91,27,44,.13); }
.control-source .source-grid { fill: none; stroke: rgba(91,27,44,.13); stroke-width: .65; }
.control-source .source-grid-minor { stroke: rgba(91,27,44,.065); stroke-width: .45; }
.control-source .source-chart-wash { fill: rgba(184,153,112,.105); stroke: none; }
.control-source .source-chart-path-under { fill: none; stroke: rgba(184,153,112,.18); stroke-width: 5; }
.control-source .source-chart-path { fill: none; stroke: rgba(91,27,44,.63); stroke-width: 1.35; }
.control-source .source-chart-nodes { fill: var(--paper); stroke: rgba(91,27,44,.48); stroke-width: 1; }
.control-source .source-chart-node-accent { fill: var(--burgundy); stroke: var(--paper); }
.control-source .source-card-title { fill: var(--burgundy); stroke: none; font-family: var(--serif); font-size: 12px; letter-spacing: .45px; }
.control-source .source-card-rule { fill: none; stroke: rgba(91,27,44,.28); stroke-width: .75; }
.control-source .source-card-lines { fill: none; stroke: rgba(91,27,44,.18); stroke-linecap: round; stroke-width: 1.5; }
.control-source .source-seal { display: none; fill: none; stroke: rgba(91,27,44,.58); stroke-width: .7; }
.control-source .source-seal-middle { stroke-dasharray: 1.4 2.4; }
.control-source .source-seal-inner { fill: rgba(184,153,112,.06); }
.control-source .source-seal text { fill: var(--burgundy); stroke: none; font-family: var(--sans); text-anchor: middle; }
.control-source .source-seal-guga { font-size: 5.2px; font-weight: 600; letter-spacing: 1.6px; }
.control-source .source-seal-letter { font-family: var(--serif); font-size: 15px; }
.control-source .source-seal-education { font-size: 4px; font-weight: 600; letter-spacing: .85px; }
.control-source .source-seal-dot { fill: var(--burgundy); stroke: none; }
.control-source .source-verified-badge > circle:first-of-type { fill: url(#sourceBadgePaper); stroke: rgba(91,27,44,.2); stroke-width: .8; }
.control-source .source-verified-badge-ring { fill: none; stroke: rgba(91,27,44,.08); stroke-width: .65; }
.control-source .source-verified-badge path { fill: none; stroke: var(--burgundy); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.control-mobile { top: -2px; right: -4px; width: 55%; height: 218px; color: var(--burgundy); }
.control-mobile .touch-phone-shell { fill: url(#touchPhonePaper); stroke: rgba(91,27,44,.27); stroke-width: .85; }
.control-mobile .touch-phone-edge { fill: none; stroke: rgba(91,27,44,.08); stroke-width: .6; }
.control-mobile .touch-phone-speaker { fill: rgba(91,27,44,.16); stroke: none; }
.control-mobile .touch-phone-camera { fill: rgba(91,27,44,.18); stroke: none; }
.control-mobile .touch-phone-brand { fill: var(--burgundy); stroke: none; font-family: var(--serif); font-size: 8px; letter-spacing: 1.4px; text-anchor: middle; }
.control-mobile .touch-phone-menu, .control-mobile .touch-phone-intro { fill: none; stroke: rgba(91,27,44,.23); stroke-linecap: round; stroke-width: .8; }
.control-mobile .touch-phone-intro { stroke-width: 1.1; }
.control-mobile .touch-primary-action rect { fill: var(--burgundy); stroke: var(--burgundy); stroke-width: .7; }
.control-mobile .touch-primary-action path { fill: none; stroke: var(--paper); stroke-linecap: round; stroke-linejoin: round; stroke-width: .75; }
.control-mobile .touch-primary-copy { opacity: .78; }
.control-mobile .touch-secondary-action > rect { fill: url(#touchScreen); stroke: rgba(91,27,44,.27); stroke-width: .7; }
.control-mobile .touch-secondary-action > circle { fill: none; stroke: rgba(91,27,44,.35); stroke-width: .8; }
.control-mobile .touch-secondary-action path { fill: none; stroke: rgba(91,27,44,.38); stroke-linecap: round; stroke-linejoin: round; stroke-width: .7; }
.control-mobile .touch-secondary-copy { opacity: .75; }
.control-mobile .touch-phone-home { fill: none; stroke: rgba(91,27,44,.18); stroke-linecap: round; stroke-width: 1.2; }
.control-mobile .touch-rings { fill: none; stroke: rgba(91,27,44,.11); stroke-width: .75; }
.control-mobile .touch-rings circle:nth-child(2) { stroke: rgba(91,27,44,.085); }
.control-mobile .touch-rings circle:nth-child(3) { stroke: rgba(91,27,44,.055); }
.control-mobile .touch-rings .touch-point { fill: var(--paper); stroke: rgba(91,27,44,.34); stroke-width: .8; }
.control-mobile .touch-hand-image { opacity: .56; filter: sepia(.25) saturate(.45) contrast(.88); }

.country-page-hero { position: relative; max-width: none; min-height: 0; overflow: hidden; padding-top: 104px; padding-bottom: 72px; background: linear-gradient(118deg, var(--paper) 0 69%, var(--cream) 69%); }
.country-page-hero .breadcrumb { margin-bottom: 44px; }
.country-page-title { display: grid; grid-template-columns: 1.25fr .55fr; gap: 8vw; align-items: start; }
.country-page-title h1 { margin: 27px 0 0; font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 7rem); font-weight: 400; line-height: .91; letter-spacing: -.04em; }
.country-page-title h1 small { display: block; margin-bottom: 22px; color: var(--burgundy); font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.country-page-title > div:last-child > p { color: var(--muted); }
.country-page-title .button { margin-top: 24px; }
.country-hero-visual { position: relative; width: 100%; aspect-ratio: 1200 / 760; margin-top: 68px; overflow: hidden; border: 1px solid var(--line); background: var(--cream); box-shadow: 0 26px 70px rgba(68,7,9,.08); }
.country-hero-visual > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.country-hero-visual::after { content: ""; position: absolute; inset: 17px; border: 1px solid rgba(238,231,215,.48); pointer-events: none; }
.country-visual-mark { position: absolute; right: 30px; bottom: 30px; z-index: 2; display: flex; align-items: center; gap: 13px; max-width: calc(100% - 60px); padding: 11px 16px 11px 11px; background: rgba(41,4,5,.9); color: var(--cream); font-size: .59rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(9px); }
.country-visual-mark img { width: 50px; height: 50px; flex: 0 0 auto; border: 1px solid rgba(238,231,215,.5); border-radius: 50%; object-fit: cover; }
.country-fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); }
.country-fact-row article { min-height: 135px; padding: 22px; background: var(--paper); }
.country-fact-row small { display: block; margin-bottom: 22px; color: var(--burgundy); font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.country-fact-row b { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; }
.country-entry { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; }
.country-entry-single { display: block; }
.country-entry-single .country-checklist { width: 100%; max-width: none; }
.country-sidebar { position: sticky; top: 110px; align-self: start; }
.country-sidebar h2, .country-checklist h2, .country-costs h2, .country-universities h2 { margin: 27px 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.7rem); font-weight: 400; line-height: .95; }
.country-sidebar ul { margin-top: 35px; border-top: 1px solid var(--line); }
.country-sidebar li { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .73rem; }
.country-checklist ol { margin: 30px 0 0; padding: 0; list-style: none; }
.country-checklist li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: center; padding: 21px 0; border-top: 1px solid var(--line); }
.country-checklist li > span { color: var(--burgundy); font-family: var(--serif); font-size: 1.25rem; }
.country-checklist li p { margin: 0; }
.country-disclaimer { margin-top: 25px; padding: 20px; border-left: 2px solid var(--burgundy); background: var(--paper); color: var(--muted); font-size: .68rem; }
.country-journey { max-width: none; background: var(--wine-dark); color: var(--cream); }
.country-journey .section-index { color: var(--taupe); }
.country-journey .section-head > p:last-child { color: rgba(238,231,215,.6); }
.country-journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--white-line); }
.country-journey-grid article { min-height: 320px; padding: 25px; background: var(--wine-dark); }
.country-journey-grid span { color: var(--taupe); font-size: .62rem; }
.country-journey-grid h3 { margin: 72px 0 14px; color: var(--cream); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.country-journey-grid p { color: rgba(238,231,215,.6); font-size: .68rem; }
.country-planning { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9vw; }
.country-costs li, .country-universities li { display: flex; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
.country-costs li span, .country-universities li span { color: var(--burgundy); }
.country-universities > p:not(.section-index) { margin-top: 20px; color: var(--muted); font-size: .67rem; }
.country-universities li b { color: var(--ink); font-weight: 500; }
.country-source { max-width: none; display: grid; grid-template-columns: 1.1fr .7fr; gap: 8vw; background: var(--burgundy); color: var(--cream); }
.country-source .section-index { color: var(--taupe); }
.country-source h2 { margin: 28px 0 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.8rem); font-weight: 400; line-height: .96; }
.country-source > div:last-child > p { color: rgba(238,231,215,.65); }
.official-link-list { display: flex; flex-direction: column; margin-top: 28px; border-top: 1px solid var(--white-line); }
.official-link-list a { padding: 15px 0; border-bottom: 1px solid var(--white-line); color: var(--taupe); font-size: .69rem; font-weight: 600; }
.intake-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 38px; border: 1px solid var(--line); background: var(--cream); }
.intake-form label > span { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: .64rem; font-weight: 600; }
.intake-form input, .intake-form select, .intake-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); outline: none; }
.intake-form textarea { resize: vertical; }
.intake-form input:focus, .intake-form select:focus, .intake-form textarea:focus { border-color: var(--burgundy); }
.intake-wide { grid-column: 1 / -1; }
.intake-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 10px; }
.intake-submit p { max-width: 600px; margin: 0; color: var(--muted); font-size: .65rem; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .careers-header-button { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle, .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr .75fr; }
  .hero-trust { gap: 15px; }
  .section-head, .timeline-head, .funding-top { grid-template-columns: .2fr 1fr; }
  .section-head > p:last-child, .timeline-head > p:last-child, .funding-top > p:last-child { grid-column: 2; }
  .programme-grid, .visa-grid, .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-uk { grid-row: span 1; }
  .budget-tool { grid-template-columns: repeat(2, 1fr); }
  .budget-result { grid-column: 1 / -1; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .resources { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-grid, .academy-route-grid { grid-template-columns: repeat(2, 1fr); }
  .official-panel { grid-template-columns: 1fr; }
  .inner-hero-grid { grid-template-columns: 1fr .62fr; }
  .university-grid { grid-template-columns: repeat(2, 1fr); }
  .explorer-toolbar { grid-template-columns: repeat(2, 1fr); }
  .country-dossier-grid { grid-template-columns: 1fr; }
  .housing-grid { grid-template-columns: 1fr 1fr; }
  .home-country-grid { grid-template-columns: repeat(2, 1fr); }
  .home-control { grid-template-columns: 1fr; }
  .home-control .standards-copy, .country-sidebar { position: static; }
  .country-page-title { grid-template-columns: 1fr .65fr; }
  .country-journey-grid { grid-template-columns: repeat(3, 1fr); }
  .country-journey-grid article:nth-child(n+4) { min-height: 260px; }
  .topic-visual { grid-template-columns: 1fr 1fr; }
  .topic-visual-copy { padding: 70px 5vw; }
  .topic-visual-media, .topic-visual-media > img { min-height: 620px; }
  .brand-story { grid-template-columns: .8fr 1.2fr; gap: 5vw; }
  .brand-story-media figure > img { height: 590px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .section-pad { padding: 78px 22px; }
  .site-header { min-height: 68px; padding: 0 18px; }
  .logo { grid-template-columns: 34px auto; gap: 8px; }
  .logo-crest { width: 34px; height: 34px; }
  .logo-type { font-size: 1.02rem; }
  .logo-type small { font-size: .34rem; letter-spacing: .32em; }
  .header-actions { gap: 8px; }
  .header-actions .button { display: none; }
  .hero { min-height: 0; padding-top: 84px; grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero h1 { font-size: clamp(3.4rem, 15.5vw, 5.7rem); }
  .hero-buttons { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-trust { display: grid; grid-template-columns: 1fr; margin-top: 30px; }
  .hero-visual { width: min(100%, 480px); min-height: 0; aspect-ratio: 3 / 4; justify-self: center; }
  .hero-foot { grid-column: 1; }
  .intro-main { grid-template-columns: 1fr; }
  .intro h2, .section-head h2, .services-title h2, .timeline-head h2, .funding-top h2, .faq-head h2, .contact-copy h2, .standards-copy h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .round-link { width: 105px; height: 105px; }
  .audience-grid, .programme-grid, .destination-grid, .timeline-grid, .funding-cards, .visa-grid, .scenario-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 290px; }
  .path { grid-template-columns: 1fr; }
  .route-tool { min-height: 600px; padding: 25px; }
  .route-progress { margin-bottom: 45px; }
  .choice-grid, .choice-grid-three { grid-template-columns: 1fr; }
  .choice-grid button { display: grid; min-height: 105px; grid-template-columns: 62px 1fr; align-items: center; }
  .choice-grid button > span { grid-row: 1 / 3; margin: 0; }
  .section-head, .timeline-head, .funding-top { display: block; }
  .section-head h2, .timeline-head h2, .funding-top h2 { margin: 25px 0; }
  .programme-card { min-height: 390px; }
  .destination-card, .destination-uk { min-height: 420px; }
  .compare-panel { grid-template-columns: 1fr; padding: 28px; }
  .compare-panel h3 { margin-top: 28px; }
  .compare-grid { grid-template-columns: 1fr; }
  .services-title { grid-template-columns: 1fr; }
  .services-title h2 { margin-top: 25px; }
  .service-item { grid-template-columns: 38px 1fr 20px; }
  .service-item > div { grid-column: 2 / 4; }
  .scope-note { grid-template-columns: 1fr; }
  .document-tool { grid-template-columns: 1fr; padding: 24px; }
  .document-progress { position: static; }
  .document-list { grid-template-columns: 1fr; }
  .privacy-note { grid-column: 1; }
  .timeline-note { grid-template-columns: 40px 1fr; }
  .timeline-note a { grid-column: 2; }
  .budget-tool { grid-template-columns: 1fr; }
  .budget-result { grid-column: 1; }
  .budget-copy, .budget-form, .budget-result { padding: 28px; }
  .arrival-strip { grid-template-columns: repeat(2, 1fr); }
  .arrival-strip div:nth-child(2) { border-right: 0; }
  .arrival-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--white-line); }
  .academy { grid-template-columns: 1fr; }
  .academy-art { min-height: 430px; }
  .academy-hero-crest { top: 26px; left: 26px; width: 96px; height: 96px; }
  .academy-art div { right: 26px; bottom: 26px; }
  .academy-copy { padding: 70px 22px; }
  .standards { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .contact { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .footer-brand { grid-template-columns: 1fr; justify-items: center; gap: 22px; text-align: center; }
  .footer-brand .logo,
  .footer-socials,
  .footer-credential,
  .footer-brand p { justify-self: center; }
  .footer-brand p { text-align: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .topic-visual { grid-template-columns: 1fr; min-height: 0; }
  .topic-visual-media, .topic-visual-media > img { min-height: 500px; }
  .topic-visual-copy { min-height: 600px; padding: 72px 22px; }
  .topic-symbol { width: 126px; height: 126px; margin: 31px 0 28px; }
  .topic-symbol b { top: 15px; right: 13px; width: 53px; height: 53px; font-size: 1.45rem; }
  .topic-person { bottom: 20px; left: 26px; transform: scale(.88); transform-origin: left bottom; }
  .topic-visual-copy h2 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .topic-media-mark { right: 26px; bottom: 26px; }
  .brand-story { grid-template-columns: 1fr; gap: 45px; padding: 78px 22px; }
  .brand-story-copy { max-width: 650px; }
  .brand-story-media figure > img { height: 540px; }
  .inner-hero { min-height: 0; padding-top: 84px; padding-bottom: 42px; }
  .breadcrumb { margin-bottom: 28px; }
  .inner-hero-grid { grid-template-columns: 1fr; }
  .inner-hero h1 { font-size: clamp(3rem, 12.5vw, 4.8rem); }
  .inner-hero-side { margin-top: 30px; }
  .directory-grid, .cost-grid, .academy-route-grid { grid-template-columns: 1fr; }
  .directory-card { min-height: 440px; }
  .home-proof { grid-template-columns: 1fr; }
  .home-proof .standards-copy .section-index { margin-top: 0; }
  .home-proof .standards-copy h2 { margin-top: 28px; }
  .page-cta { grid-template-columns: 1fr; }
  .page-cta .button { width: 100%; margin-top: 10px; justify-self: stretch; }
  .arrival-grid { grid-template-columns: 1fr; }
  .academy-page-hero { grid-template-columns: 1fr; padding-top: 68px; }
  .academy-page-hero .academy-art { min-height: 430px; }
  .academy-page-hero .academy-copy { padding: 70px 22px; }
  .contact-page { min-height: 0; padding-top: 84px; padding-bottom: 56px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-page .contact-card { margin-top: 25px; }
  .university-hero { background: var(--paper); }
  .university-hero { padding-bottom: 44px; }
  .university-hero h1 { font-size: clamp(2.8rem, 10.8vw, 4.15rem); }
  .explorer-toolbar { grid-template-columns: 1fr; padding: 18px; }
  .university-grid, .requirement-grid, .shortlist-columns { grid-template-columns: 1fr; }
  .university-card { min-height: 385px; }
  .explorer-status { align-items: flex-start; flex-direction: column; gap: 6px; }
  .catalogue-note { grid-template-columns: 1fr; }
  .offer-grid, .funding-layers, .learning-plan, .consultation-journey, .country-dossier-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .decision-band { grid-template-columns: 1fr; padding: 28px; }
  .decision-band .button { width: 100%; }
  .country-dossier summary { grid-template-columns: 34px 1fr 20px; padding: 19px; }
  .dossier-body { padding: 0 19px 24px; }
  .visa-sequence li { gap: 18px; }
  .housing-guide { padding: 28px 20px; }
  .housing-guide > div:first-child { display: block; }
  .housing-guide h2 { margin-top: 18px; text-align: left; }
  .housing-grid { grid-template-columns: 1fr; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  body.menu-open { padding-bottom: 0; }
  body.menu-open .mobile-quickbar { display: none; }
  .mobile-menu { height: 100dvh; padding: 92px 20px calc(38px + env(safe-area-inset-bottom)); overflow-y: auto; }
  .mobile-menu nav a { min-height: 56px; padding: 12px 0; font-size: clamp(1.55rem, 7.2vw, 2.35rem); }
  .mobile-menu-foot { padding-bottom: 20px; }
  .mobile-quickbar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 88; display: grid; grid-template-columns: 1fr 1.3fr; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(247,242,233,.97); backdrop-filter: blur(15px); }
  .mobile-quickbar a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 0 15px; color: var(--burgundy); font-size: .7rem; font-weight: 600; }
  .mobile-quickbar a + a { background: var(--burgundy); color: var(--cream); }
  .mobile-quickbar b { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
  .site-footer { padding-bottom: calc(35px + env(safe-area-inset-bottom)); }
  .button, .text-link, .language-switch select, .menu-toggle, .explorer-toolbar button, .faq-item button { min-height: 44px; }
  input, select, textarea { font-size: 16px !important; }
  p, h1, h2, h3, h4, li, a, b, small { overflow-wrap: anywhere; }
  .hero { gap: 32px; padding-top: 84px; }
  .hero h1 { margin-top: 22px; }
  .hero-lead { font-size: .92rem; }
  .hero-buttons .button, .hero-buttons .text-link { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-stamp { top: 20px; left: 18px; width: 88px; height: 88px; }
  .hero-note { right: 12px; bottom: 12px; left: 12px; }
  .destination-marquee { margin-top: 0; }
  .directory-card { min-height: 420px; padding: 170px 24px 58px; }
  .directory-icon { top: 18px; right: 18px; }
  .directory-card > b { right: 24px; left: 24px; }
  .resource-hero { background: var(--paper); }
  .resource-path-grid, .home-country-grid, .control-grid { grid-template-columns: 1fr; }
  .resource-path-grid .info-card { min-height: 260px; }
  .home-country-grid a { min-height: 260px; padding-bottom: 72px; }
  .control-grid article { min-height: 310px; padding: 24px; }
  .control-grid b { max-width: 49%; margin-top: 55px; }
  .control-grid p { max-width: 49%; }
  .control-visual, .control-results, .control-source, .control-mobile { top: 25px; right: 6px; width: 48%; height: 155px; margin: 0; }
  .control-grid .control-route { top: 8px; right: -2px; width: 60%; height: 215px; }
  .control-grid .control-results { top: 8px; right: -3px; width: 62%; height: 215px; }
  .control-grid .control-source { top: 5px; right: -4px; width: 57%; height: 198px; }
  .control-grid .control-mobile { top: -2px; right: -5px; width: 58%; height: 224px; }
  .home-country-grid a > span { margin-bottom: 48px; }
  .home-control { gap: 45px; }
  .home-control .standards-copy .section-index { margin-bottom: 36px; }
  .home-control .standards-copy p:not(.section-index) { margin-top: 38px; }
  .country-page-hero { min-height: 0; padding-top: 84px; padding-bottom: 56px; background: var(--paper); }
  .country-page-hero .breadcrumb { margin-bottom: 28px; }
  .country-page-title, .country-entry, .country-planning, .country-source { grid-template-columns: 1fr; }
  .country-page-title h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .country-page-title > div:last-child { margin-top: 28px; }
  .country-page-title .button { width: 100%; }
  .country-hero-visual { aspect-ratio: 4 / 3; margin-top: 48px; }
  .country-hero-visual > img { object-fit: cover; }
  .country-visual-mark { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
  .country-fact-row { grid-template-columns: 1fr; margin-top: 48px; }
  .country-fact-row article { min-height: 115px; }
  .country-sidebar h2, .country-checklist h2, .country-costs h2, .country-universities h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .country-checklist { margin-top: 45px; }
  .country-checklist li { grid-template-columns: 40px 1fr; gap: 13px; }
  .country-journey-grid { grid-template-columns: 1fr; }
  .country-journey-grid article, .country-journey-grid article:nth-child(n+4) { min-height: 230px; }
  .country-journey-grid h3 { margin-top: 48px; }
  .country-universities { margin-top: 45px; }
  .country-source { gap: 40px; }
  .country-source h2 { font-size: clamp(2.15rem, 10vw, 3.7rem); }
  .footer-links { gap: 30px 18px; }
  .intake-form { grid-template-columns: 1fr; padding: 23px; }
  .intake-wide { grid-column: 1; }
  .intake-submit { align-items: stretch; flex-direction: column; }
  .intake-submit .button { width: 100%; }
}

@media (max-width: 420px) {
  .section-pad { padding: 66px 18px; }
  .site-header { padding-inline: 15px; }
  .language-switch select { width: 106px; padding-left: 8px; font-size: .59rem; }
  .logo-type { font-size: .92rem; }
  .logo-type small { font-size: .31rem; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 4.25rem); }
  .inner-hero h1 { font-size: clamp(2.7rem, 12.5vw, 3.8rem); }
  .hero-visual { min-height: 0; }
  .topic-visual-media, .topic-visual-media > img { min-height: 430px; }
  .topic-visual-copy { min-height: 560px; padding: 66px 18px; }
  .topic-media-mark { right: 18px; bottom: 18px; }
  .topic-media-mark span { max-width: 145px; }
  .inner-hero { min-height: 0; }
  .route-tool { min-height: 620px; padding: 20px; }
  .choice-grid button { grid-template-columns: 52px 1fr; padding: 18px; }
  .contact-card, .budget-copy, .budget-form, .budget-result, .document-tool { padding: 21px; }
  .university-card { min-height: 410px; padding: 22px; }
  .university-actions { right: 22px; left: 22px; }
  .university-actions a { max-width: 48%; }
  .decision-band { padding: 23px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-brand { padding-bottom: 38px; }
  .brand-story { padding: 66px 18px; }
  .brand-story-copy h2 { font-size: clamp(2.35rem, 10.8vw, 3.6rem); }
  .brand-story-media figure > img { height: 520px; }
  .country-page-title h1 { font-size: clamp(2.8rem, 13.5vw, 3.75rem); }
  .country-hero-visual { aspect-ratio: 1 / 1; }
  .country-visual-mark { font-size: .52rem; }
  .country-visual-mark img { width: 42px; height: 42px; }
}

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

/* About page */
:where(a, button, input, select, textarea):focus-visible { outline: 2px solid var(--burgundy); outline-offset: 4px; }
.about-page :where(a, button):focus-visible { box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--burgundy); outline: 0; }
.desktop-nav { gap: clamp(14px, 1.55vw, 25px); }
.footer-links { grid-template-columns: repeat(4, 1fr); }

.about-hero { min-height: 0; padding-top: 104px; padding-bottom: 72px; display: grid; grid-template-columns: 1.08fr .74fr; gap: 6.5vw; align-items: start; }
.about-hero-copy { max-width: 790px; }
.about-hero .breadcrumb { margin-bottom: 40px; }
.about-hero h1 { margin: 28px 0 30px; font-family: var(--serif); font-size: clamp(4rem, 6.3vw, 7.35rem); font-weight: 400; line-height: .87; letter-spacing: -.045em; }
.about-hero h1 span, .about-hero h1 em { display: block; }
.about-hero h1 em { color: var(--burgundy); font-weight: 400; }
.about-hero-intro { max-width: 680px; color: var(--muted); font-size: .95rem; }
.about-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.about-route-visual { position: relative; min-width: 0; margin: 0; }
.about-route-paper { position: relative; min-height: 640px; overflow: hidden; border: 1px solid var(--line); background-color: var(--cream); background-image: radial-gradient(circle at 17% 12%, rgba(255,255,255,.62), transparent 28%), linear-gradient(123deg, rgba(68,7,9,.035), transparent 45%, rgba(68,7,9,.025)); }
.about-route-paper::after { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(68,7,9,.13); pointer-events: none; }
.about-route-crest { position: absolute; right: -70px; bottom: -55px; width: 350px; height: 350px; border-radius: 50%; object-fit: cover; opacity: .065; filter: grayscale(1); }
.about-route-line { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-route-line path { fill: none; stroke: var(--burgundy); stroke-width: 1.4; stroke-dasharray: 6 7; vector-effect: non-scaling-stroke; }
.about-route-point { position: absolute; z-index: 2; display: grid; grid-template-columns: 13px auto; column-gap: 12px; align-items: center; color: var(--burgundy); }
.about-route-point i { display: block; width: 13px; height: 13px; grid-row: 1 / 3; border: 3px solid var(--cream); border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 0 1px var(--burgundy); }
.about-route-point span { font-family: var(--serif); font-size: 1.25rem; line-height: 1; }
.about-route-point small { margin-top: 4px; color: var(--muted); font-size: .56rem; letter-spacing: .13em; }
.route-point-ukraine { bottom: 13.5%; left: 15%; }
.route-point-czechia { top: 48%; left: 47%; }
.route-point-kingdom { top: 15%; right: 11%; }
.about-route-wordmark { position: absolute; top: 38px; left: 33px; margin: 0; color: rgba(68,7,9,.08); font-family: var(--serif); font-size: clamp(4rem, 7vw, 7rem); letter-spacing: .08em; }
.about-route-visual figcaption { display: flex; align-items: center; justify-content: space-between; min-height: 50px; padding: 0 16px; border: 1px solid var(--line); border-top: 0; color: var(--burgundy); font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.about-route-visual figcaption::after { content: "01 / 09"; color: var(--muted); }

.about-why { position: relative; max-width: none; display: grid; grid-template-columns: 1fr .72fr; gap: 5vw 9vw; overflow: hidden; padding-top: 150px; padding-bottom: 150px; background: var(--cream); }
.about-why::after { content: ""; position: absolute; right: -9vw; bottom: -18vw; width: min(58vw, 760px); aspect-ratio: 1; background: url("assets/brand/guga-crest.jpg") center / contain no-repeat; opacity: .026; filter: grayscale(1); pointer-events: none; }
.about-why > * { position: relative; z-index: 1; }
.about-statement h2, .about-section-head h2, .founder-copy h2, .transparency-grid h2, .about-final-cta h2 { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(3.35rem, 5.5vw, 6.4rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.about-statement h2 span, .about-statement h2 em, .about-section-head h2 span, .about-section-head h2 em, .founder-copy h2 span, .founder-copy h2 em, .transparency-grid h2 span, .transparency-grid h2 em, .about-final-cta h2 span, .about-final-cta h2 em { display: block; }
.about-statement h2 em, .about-section-head h2 em, .founder-copy h2 em, .transparency-grid h2 em, .about-final-cta h2 em { color: var(--burgundy); font-weight: 400; }
.about-why-copy { padding-top: 56px; color: var(--muted); }
.about-why-copy p + p { margin-top: 24px; }
.about-pullquote { position: relative; grid-column: 1 / -1; max-width: 1120px; margin: 54px 0 0; padding: 58px 7vw 6px; border-top: 1px solid var(--line); }
.about-pullquote > span { position: absolute; top: 36px; left: 0; color: rgba(68,7,9,.14); font-family: var(--serif); font-size: 8rem; line-height: .7; }
.about-pullquote p { margin: 0; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.8rem); line-height: 1.03; letter-spacing: -.025em; }

.about-founder { max-width: none; display: grid; grid-template-columns: .4fr .6fr; gap: 6.5vw; background: var(--wine-dark); color: var(--cream); }
.founder-route { position: relative; min-height: 760px; overflow: hidden; padding: 44px; border: 1px solid var(--white-line); background: rgba(238,231,215,.045); }
.founder-route > img { position: absolute; right: -90px; bottom: -70px; width: 360px; height: 360px; border-radius: 50%; object-fit: cover; opacity: .12; filter: grayscale(1); }
.founder-route .section-index { max-width: 230px; color: var(--taupe); }
.founder-route ol { position: absolute; right: 44px; bottom: 72px; left: 44px; margin: 0; padding: 0; list-style: none; }
.founder-route li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--white-line); }
.founder-route li::before { content: ""; position: absolute; bottom: -4px; left: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--taupe); }
.founder-route li span { color: var(--taupe); font-size: .6rem; }
.founder-route li b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.founder-copy { align-self: center; }
.founder-copy .section-index { color: var(--taupe); }
.founder-copy h2 { margin-top: 34px; }
.founder-copy h2 em { color: var(--taupe); }
.founder-narrative { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 3vw; margin-top: 46px; color: rgba(238,231,215,.68); font-size: .8rem; }
.founder-narrative p:last-child { grid-column: 2; }
.founder-quote { margin: 45px 0 0; padding: 36px 0 0; border-top: 1px solid var(--white-line); }
.founder-quote > p { margin: 0; color: var(--cream); font-family: var(--serif); font-size: clamp(1.35rem, 1.75vw, 2.1rem); line-height: 1.18; }
.founder-quote > .founder-motto { max-width: 700px; margin-top: 36px; color: var(--taupe); font-size: clamp(2.8rem, 4.6vw, 5.7rem); font-style: italic; line-height: .9; letter-spacing: -.035em; }
.founder-quote footer { display: flex; align-items: baseline; justify-content: space-between; gap: 25px; margin-top: 34px; }
.founder-quote strong { color: var(--taupe); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; font-style: italic; }
.founder-quote footer span { color: rgba(238,231,215,.5); font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }

.about-purpose { padding-top: 130px; padding-bottom: 130px; }
.about-section-head { margin-bottom: 68px; }
.about-section-head > .section-index { margin-bottom: 32px; }
.about-section-head > h2 { max-width: 1050px; margin-top: 0; }
.purpose-panels { display: grid; grid-template-columns: 1fr 1fr; }
.purpose-panel { min-height: 490px; padding: 48px; border: 1px solid var(--line); }
.purpose-panel > span { font-size: .64rem; }
.purpose-panel h3 { margin: 105px 0 28px; font-family: var(--serif); font-size: clamp(2.8rem, 4vw, 4.6rem); font-weight: 400; line-height: .95; }
.purpose-panel p { max-width: 570px; margin: 0; font-size: .86rem; }
.purpose-mission { background: var(--burgundy); color: var(--cream); }
.purpose-mission > span { color: var(--taupe); }
.purpose-mission p { color: rgba(238,231,215,.68); }
.purpose-vision { background: var(--paper); color: var(--ink); }
.purpose-vision > span { color: var(--burgundy); }
.purpose-vision p { color: var(--muted); }

.about-values { padding-top: 130px; padding-bottom: 130px; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.about-value-card { min-height: 430px; padding: 28px; background: var(--paper); }
.about-value-card > span { color: var(--burgundy); font-size: .64rem; }
.value-mark { display: grid; width: 72px; height: 72px; place-items: center; margin: 48px 0 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); font-family: var(--serif); font-size: 1.5rem; }
.about-value-card h3 { min-height: 58px; margin-bottom: 17px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.05; }
.about-value-card p { margin: 0; color: var(--muted); font-size: .72rem; }

.about-audiences { max-width: none; background: var(--burgundy); color: var(--cream); }
.about-section-head-dark .section-index { color: var(--taupe); }
.about-section-head-dark h2 em { color: var(--taupe); }
.about-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--white-line); }
.about-audience-grid article { min-height: 340px; padding: 30px; background: var(--burgundy); }
.about-audience-grid article > span { color: var(--taupe); font-size: .63rem; }
.about-audience-grid h3 { margin: 82px 0 17px; color: var(--cream); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.08; }
.about-audience-grid p { margin: 0; color: rgba(238,231,215,.64); font-size: .72rem; }

.about-approach { padding-top: 135px; padding-bottom: 135px; scroll-margin-top: 80px; }
.about-journey { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.about-journey li { position: relative; min-height: 330px; padding: 28px 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-journey li:last-child { border-right: 1px solid var(--line); }
.about-journey li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 21px; right: -13px; display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); color: var(--burgundy); font-size: .7rem; }
.about-journey li > span { color: var(--burgundy); font-size: .63rem; }
.about-journey li > div { margin-top: 80px; }
.about-journey h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.about-journey p { margin: 0; color: var(--muted); font-size: .71rem; }
.about-disclaimer { display: grid; grid-template-columns: 42px 1fr; gap: 18px; max-width: 980px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); }
.about-disclaimer > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--burgundy); border-radius: 50%; color: var(--burgundy); font-family: var(--serif); }
.about-disclaimer p { margin: 2px 0 0; font-size: .67rem; }

.about-transparency { max-width: none; background: var(--burgundy); }
.transparency-panel { max-width: 1320px; margin: 0 auto; padding: 62px; border: 1px solid rgba(255,255,255,.25); background: var(--cream); }
.transparency-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 7vw; margin-top: 56px; }
.transparency-grid h2 { margin: 0; }
.transparency-grid > div { align-self: end; color: var(--muted); font-size: .82rem; }
.transparency-grid > div p + p { margin-top: 25px; }
.transparency-statement { margin: 60px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); color: var(--burgundy); font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 4rem); line-height: 1; }

.about-team { padding-top: 130px; padding-bottom: 130px; }
.about-team .about-section-head { display: block; max-width: 1050px; }
.about-team .about-section-head .section-index { align-self: start; }
.about-team .about-section-head h2 { margin: 0; }
.about-team .about-section-head > p:last-child { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: .78rem; }
.about-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.about-team-grid article { position: relative; min-height: 420px; overflow: hidden; padding: 30px; background: var(--paper); }
.about-team-grid article::after { content: attr(data-role); position: absolute; right: -10px; bottom: -30px; color: rgba(68,7,9,.025); font-family: var(--serif); font-size: 12rem; }
.team-symbol { display: grid; width: 82px; height: 82px; place-items: center; margin-bottom: 54px; border: 1px solid var(--line); color: var(--burgundy); font-family: var(--serif); font-size: 1.5rem; }
.about-team-grid article > span { color: var(--burgundy); font-size: .63rem; }
.about-team-grid h3 { max-width: 330px; margin: 18px 0 15px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.07; }
.about-team-grid p { max-width: 370px; margin: 0; color: var(--muted); font-size: .72rem; }

.about-ecosystem { padding-top: 135px; padding-bottom: 135px; }
.ecosystem-panels { display: grid; grid-template-columns: 1fr 1fr; }
.ecosystem-panels article { min-height: 480px; padding: 48px; border: 1px solid var(--line); }
.ecosystem-panels img { display: block; width: 92px; height: 92px; border-radius: 50%; object-fit: cover; }
.ecosystem-panels p { margin: 75px 0 0; font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; }
.ecosystem-panels h3 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(3rem, 4.4vw, 5rem); font-weight: 400; line-height: .9; }
.ecosystem-panels article > span { display: block; max-width: 520px; font-size: .8rem; }
.ecosystem-education { background: var(--burgundy); color: var(--cream); }
.ecosystem-education img { border: 1px solid rgba(238,231,215,.35); }
.ecosystem-education > span { color: rgba(238,231,215,.66); }
.ecosystem-academy { background: var(--cream); color: var(--burgundy); }
.ecosystem-academy > span { color: var(--muted); }
.ecosystem-note { max-width: 860px; margin: 42px 0 0 auto; padding-left: 34px; border-left: 1px solid var(--burgundy); color: var(--muted); }

.about-final-cta { max-width: none; display: grid; grid-template-columns: 1fr auto; gap: 7vw; align-items: end; background: var(--wine-dark); color: var(--cream); }
.about-final-cta .section-index { color: var(--taupe); }
.about-final-cta h2 { max-width: 980px; margin-top: 34px; }
.about-final-cta h2 em { color: var(--taupe); }
.about-final-cta > div:first-child > p:last-child { max-width: 740px; margin: 30px 0 0; color: rgba(238,231,215,.64); }
.about-final-actions { display: flex; min-width: 260px; align-items: stretch; flex-direction: column; gap: 15px; }
.about-final-actions .text-link { justify-content: space-between; border-color: var(--taupe); color: var(--cream); }

html[dir="rtl"] .about-route-point { text-align: left; direction: ltr; }
html[dir="rtl"] .about-pullquote > span { right: 0; left: auto; }
html[dir="rtl"] .ecosystem-note { margin-right: auto; margin-left: 0; padding-right: 34px; padding-left: 0; border-right: 1px solid var(--burgundy); border-left: 0; }

@media (max-width: 1120px) {
  .about-hero { grid-template-columns: 1fr .72fr; gap: 5vw; }
  .about-values-grid, .about-audience-grid, .about-journey { grid-template-columns: repeat(2, 1fr); }
  .about-value-card, .about-audience-grid article { min-height: 360px; }
  .about-journey li:nth-child(2) { border-right: 1px solid var(--line); }
  .about-journey li:nth-child(n+3) { border-top: 0; }
  .about-journey li:nth-child(2)::after { display: none; }
  .about-team .about-section-head { grid-template-columns: .22fr 1fr; }
  .about-team .about-section-head > p:last-child { grid-column: 2; max-width: 650px; }
}

@media (max-width: 900px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .about-hero { min-height: 0; grid-template-columns: 1fr; padding-top: 104px; }
  .about-route-visual { width: min(100%, 660px); margin-top: 30px; }
  .about-route-paper { min-height: 620px; }
  .about-why, .about-founder, .transparency-grid, .about-final-cta { grid-template-columns: 1fr; }
  .about-why-copy { max-width: 680px; padding-top: 0; }
  .about-founder { gap: 65px; }
  .founder-route { min-height: 570px; }
  .founder-narrative { grid-template-columns: 1fr; }
  .founder-narrative p:last-child { grid-column: 1; }
  .transparency-grid { gap: 35px; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-team-grid article { min-height: 350px; }
  .about-final-actions { width: min(100%, 390px); margin-top: 18px; }
}

@media (max-width: 760px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
  .about-hero { padding-top: 84px; padding-bottom: 56px; }
  .about-hero .breadcrumb { margin-bottom: 28px; }
  .about-hero h1 { font-size: clamp(3.25rem, 14.8vw, 5.2rem); }
  .about-hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .about-hero-actions .button, .about-hero-actions .text-link { width: 100%; }
  .about-route-paper { min-height: 520px; }
  .about-route-wordmark { top: 28px; left: 24px; }
  .route-point-ukraine { left: 12%; }
  .route-point-czechia { left: 44%; }
  .route-point-kingdom { right: 7%; }
  .about-why { gap: 35px; padding-top: 100px; padding-bottom: 100px; }
  .about-statement h2, .about-section-head h2, .founder-copy h2, .transparency-grid h2, .about-final-cta h2 { font-size: clamp(2.85rem, 13vw, 4.6rem); }
  .about-pullquote { margin-top: 30px; padding: 54px 0 0 45px; }
  .about-pullquote > span { top: 32px; font-size: 6rem; }
  .about-pullquote p { font-size: clamp(2rem, 9vw, 3.2rem); }
  .founder-route { min-height: 520px; padding: 28px; }
  .founder-route ol { right: 28px; bottom: 45px; left: 28px; }
  .founder-route li { padding: 22px 0; }
  .founder-quote footer { align-items: flex-start; flex-direction: column; gap: 8px; }
  .purpose-panels, .about-values-grid, .about-audience-grid, .about-journey, .ecosystem-panels { grid-template-columns: 1fr; }
  .purpose-panel { min-height: 420px; padding: 30px; }
  .purpose-panel h3 { margin-top: 78px; }
  .about-value-card, .about-audience-grid article { min-height: 320px; }
  .about-audience-grid h3 { margin-top: 65px; }
  .about-journey li { min-height: 0; grid-template-columns: 42px 1fr; border-right: 1px solid var(--line); border-top: 0; }
  .about-journey li:first-child { border-top: 1px solid var(--line); }
  .about-journey li:not(:last-child)::after { top: auto; right: auto; bottom: -13px; left: 16px; content: "↓"; }
  .about-journey li:nth-child(2)::after { display: grid; }
  .about-journey li > div { margin-top: 48px; }
  .about-disclaimer { grid-template-columns: 34px 1fr; }
  .transparency-panel { padding: 30px; }
  .transparency-grid { margin-top: 40px; }
  .about-team .about-section-head { display: block; }
  .about-team .about-section-head > p:last-child { margin-top: 28px; }
  .about-team-grid article { min-height: 330px; padding: 26px; }
  .team-symbol { margin-bottom: 45px; }
  .ecosystem-panels article { min-height: 420px; padding: 30px; }
  .ecosystem-panels p { margin-top: 65px; }
  .ecosystem-note { margin-top: 32px; padding-left: 22px; }
  .about-final-actions { min-width: 0; }
}

@media (max-width: 420px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-identity { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-route-paper { min-height: 460px; }
  .about-route-point span { font-size: 1rem; }
  .about-route-point { column-gap: 8px; }
  .route-point-ukraine { bottom: 12%; left: 8%; }
  .route-point-czechia { top: 48%; left: 41%; }
  .route-point-kingdom { top: 15%; right: 4%; }
  .about-route-visual figcaption { font-size: .54rem; }
  .about-pullquote { padding-left: 34px; }
  .founder-route { min-height: 480px; padding: 22px; }
  .founder-route ol { right: 22px; bottom: 34px; left: 22px; }
  .purpose-panel, .transparency-panel, .ecosystem-panels article { padding: 24px; }
  .about-value-card, .about-audience-grid article { padding: 24px; }
}

@media (max-width: 340px) {
  .about-route-paper { min-height: 420px; }
  .about-route-point span { font-size: .88rem; }
  .about-route-point small { font-size: .48rem; }
  .about-route-point i { width: 11px; height: 11px; }
  .about-final-actions .button { gap: 12px; padding-left: 15px; }
}

@media (min-width: 1121px) {
  html:is([lang="ru"], [lang="uk"]) .hero { grid-template-columns: 1.34fr .66fr; gap: 34px 4vw; }
}

@media (min-width: 761px) and (max-width: 1120px) {
  html:is([lang="ru"], [lang="uk"]) .hero { grid-template-columns: 1.18fr .62fr; gap: 34px 4vw; }
}

@media (max-width: 760px) {
  html:is([lang="ru"], [lang="uk"]) .hero h1 { letter-spacing: -.08em; }
}

@media (max-width: 420px) {
  .hero { padding-top: 80px; }
}

/* GUGA Academy product page */
.text-link-light { border-color: rgba(238,231,215,.48); color: var(--cream); }
.academy-mvp-hero { display: grid; min-height: 0; grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr); gap: 4vw; align-items: center; padding: 104px 4.5vw 64px; background: var(--burgundy); color: var(--cream); }
.academy-mvp-copy { max-width: 680px; }
.academy-mvp-copy .breadcrumb { margin-bottom: 40px; }
.academy-mvp-copy .section-index { color: var(--taupe); }
.academy-mvp-copy h1 { margin: 30px 0 28px; font-family: var(--serif); font-size: clamp(4rem, 6.2vw, 7.1rem); font-weight: 400; line-height: .86; letter-spacing: -.045em; }
.academy-mvp-copy h1 span, .academy-mvp-copy h1 em { display: block; }
.academy-mvp-copy h1 em { color: var(--taupe); font-weight: 400; }
.academy-mvp-lead { max-width: 640px; color: rgba(238,231,215,.7); font-size: .94rem; }
.academy-mvp-actions { display: flex; gap: 28px; align-items: center; margin-top: 34px; }
.academy-launch-note { display: grid; grid-template-columns: 10px 1fr; gap: 14px; max-width: 590px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--white-line); }
.academy-launch-note > i { width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: #91a989; box-shadow: 0 0 0 5px rgba(145,169,137,.12); }
.academy-launch-note div { display: flex; flex-direction: column; gap: 4px; }
.academy-launch-note b { color: var(--cream); font-size: .7rem; font-weight: 600; }
.academy-launch-note span { color: rgba(238,231,215,.54); font-size: .64rem; }

.academy-portal-visual { width: 100%; max-width: 850px; margin: 0; justify-self: end; }
.academy-portal-frame { overflow: hidden; border: 1px solid rgba(238,231,215,.3); background: var(--paper); color: var(--ink); box-shadow: 0 42px 95px rgba(20,0,1,.28); }
.academy-portal-topbar { display: flex; min-height: 74px; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--line); background: var(--cream); }
.academy-portal-brand { display: grid; grid-template-columns: 42px auto; gap: 10px; align-items: center; color: var(--burgundy); font-family: var(--serif); font-size: 1.15rem; line-height: .78; }
.academy-portal-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.academy-portal-brand span { display: flex; flex-direction: column; letter-spacing: .09em; }
.academy-portal-brand small { margin-top: 6px; font-family: var(--sans); font-size: .35rem; font-weight: 600; letter-spacing: .32em; }
.academy-preview-chip { padding: 7px 10px; border: 1px solid var(--line); color: var(--burgundy); font-size: .59rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-portal-body { display: grid; min-height: 550px; grid-template-columns: 148px 1fr; }
.academy-portal-nav { display: flex; flex-direction: column; gap: 6px; padding: 28px 16px; border-right: 1px solid var(--line); background: rgba(238,231,215,.62); }
.academy-portal-nav > span { display: grid; min-height: 44px; grid-template-columns: 22px 1fr; gap: 8px; align-items: center; padding: 0 10px; color: var(--muted); font-size: .58rem; }
.academy-portal-nav > span.is-active { background: var(--burgundy); color: var(--cream); }
.academy-portal-nav i { font-size: .49rem; font-style: normal; }
.academy-portal-nav b { font-weight: 600; }
.academy-portal-content { padding: 34px; }
.academy-portal-greeting { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.academy-portal-greeting > span { color: var(--burgundy); font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.academy-portal-greeting > b { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.academy-portal-dashboard { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; margin-top: 18px; }
.academy-portal-dashboard article { border: 1px solid var(--line); background: rgba(255,255,255,.52); }
.academy-next-lesson { min-height: 280px; padding: 26px; background: var(--burgundy) !important; color: var(--cream); }
.academy-next-lesson > span, .academy-week-card > span { color: var(--taupe); font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.academy-next-lesson strong { display: block; margin: 42px 0 2px; font-family: var(--serif); font-size: 4.4rem; font-weight: 400; line-height: 1; }
.academy-next-lesson > p { color: rgba(238,231,215,.68); font-size: .67rem; }
.academy-next-lesson > div { display: flex; gap: 9px; align-items: center; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--white-line); }
.academy-next-lesson > div i { width: 7px; height: 7px; border-radius: 50%; background: #91a989; }
.academy-next-lesson > div b { font-size: .57rem; font-weight: 500; }
.academy-week-card { min-height: 280px; padding: 23px; }
.academy-mini-calendar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin: 36px 0 35px; }
.academy-mini-calendar b { display: grid; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); color: var(--muted); font-size: .52rem; }
.academy-mini-calendar .is-today { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.academy-week-card p { display: flex; justify-content: space-between; gap: 8px; margin: 0; padding: 12px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .58rem; }
.academy-week-card p b { color: var(--burgundy); font-weight: 600; }
.academy-message-card { grid-column: 1 / -1; display: grid; min-height: 92px; grid-template-columns: 46px 1fr; gap: 14px; align-items: center; padding: 18px; }
.academy-avatar { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--burgundy); color: var(--cream); font-family: var(--serif); }
.academy-message-card span { color: var(--burgundy); font-size: .56rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-message-card p { margin: 3px 0 0; color: var(--muted); font-size: .62rem; }
.academy-portal-visual figcaption { display: flex; justify-content: space-between; gap: 20px; padding: 14px 2px 0; color: rgba(238,231,215,.55); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.academy-portal-visual figcaption b { color: var(--taupe); font-weight: 500; }

.academy-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.academy-feature-card { min-height: 390px; padding: 30px; background: var(--paper); }
.academy-feature-card > span, .academy-role-card > div span, .academy-journey-grid > li > span, .academy-audience-grid article > span, .academy-trust-grid article > span { color: var(--burgundy); font-size: .63rem; }
.academy-feature-mark { display: grid; width: 76px; height: 76px; margin: 47px 0 32px; place-items: center; border: 1px solid var(--line); color: var(--burgundy); font-family: var(--serif); font-size: 1.2rem; transform: rotate(-3deg); }
.academy-feature-card:nth-child(even) .academy-feature-mark { transform: rotate(3deg); }
.academy-feature-card h3, .academy-journey-grid h3, .academy-audience-grid h3, .academy-trust-grid h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.05; }
.academy-feature-card p, .academy-journey-grid p, .academy-audience-grid p, .academy-trust-grid p { margin: 0; color: var(--muted); font-size: .72rem; }

.academy-roles, .academy-audience { max-width: none; background: var(--wine-dark); color: var(--cream); }
.academy-editorial-head { display: block; max-width: var(--max); margin: 0 auto 70px; }
.academy-editorial-head .section-index { color: var(--taupe); }
.academy-editorial-head h2, .academy-workspace-copy h2, .academy-final-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.3rem, 5.5vw, 6.2rem); font-weight: 400; line-height: .91; letter-spacing: -.035em; }
.academy-editorial-head h2 { max-width: 1050px; margin-top: 28px; }
.academy-editorial-head h2 span, .academy-editorial-head h2 em, .academy-workspace-copy h2 span, .academy-workspace-copy h2 em, .academy-final-cta h2 span, .academy-final-cta h2 em { display: block; }
.academy-editorial-head h2 em, .academy-final-cta h2 em { color: var(--taupe); font-weight: 400; }
.academy-editorial-head > p:last-child { max-width: 650px; margin: 28px 0 0; color: rgba(238,231,215,.62); font-size: .78rem; }
.academy-role-grid { display: grid; max-width: var(--max); grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0 auto; background: var(--white-line); }
.academy-role-card { min-height: 530px; padding: 32px; background: var(--burgundy); }
.academy-role-card > div { display: flex; align-items: center; justify-content: space-between; }
.academy-role-card > div span { color: var(--taupe); }
.academy-role-card > div b { color: rgba(238,231,215,.45); font-size: .56rem; letter-spacing: .18em; }
.academy-role-card h3 { margin: 105px 0 20px; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }
.academy-role-card > p { color: rgba(238,231,215,.64); font-size: .74rem; }
.academy-role-card ul { margin-top: 36px; border-top: 1px solid var(--white-line); }
.academy-role-card li { position: relative; padding: 13px 0 13px 18px; border-bottom: 1px solid var(--white-line); color: var(--cream); font-size: .64rem; }
.academy-role-card li::before { position: absolute; left: 0; content: "↗"; color: var(--taupe); }

.academy-journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; }
.academy-journey-grid li { position: relative; min-height: 300px; padding: 30px; border: 1px solid var(--line); border-right: 0; background: rgba(255,255,255,.42); }
.academy-journey-grid li:nth-child(3n) { border-right: 1px solid var(--line); }
.academy-journey-grid li:nth-child(n+4) { border-top: 0; }
.academy-journey-grid h3 { margin-top: 85px; }

.academy-lesson-workspace { display: grid; max-width: none; grid-template-columns: .78fr 1.22fr; gap: 7vw; align-items: center; }
.academy-workspace-copy { max-width: 650px; justify-self: end; }
.academy-workspace-copy h2 { margin: 32px 0 30px; }
.academy-workspace-copy h2 em { color: var(--burgundy); font-weight: 400; }
.academy-workspace-copy > p:not(.section-index) { color: var(--muted); }
.academy-workspace-points { margin-top: 40px; border-top: 1px solid var(--line); }
.academy-workspace-points article { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.academy-workspace-points article > span { color: var(--burgundy); font-family: var(--serif); font-size: 1.15rem; }
.academy-workspace-points b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.academy-workspace-points p { margin: 3px 0 0; color: var(--muted); font-size: .67rem; }
.academy-room-preview { display: grid; min-height: 660px; grid-template-columns: 1fr 220px; grid-template-rows: 68px 1fr 70px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 30px 70px rgba(68,7,9,.12); }
.academy-room-head { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--line); }
.academy-room-head > span { display: flex; align-items: center; gap: 10px; }
.academy-room-head i { width: 8px; height: 8px; border-radius: 50%; background: #91a989; }
.academy-room-head b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.academy-room-head small { color: var(--muted); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.academy-room-stage { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, var(--burgundy), var(--wine-dark)); }
.academy-room-stage::before { position: absolute; inset: 20px; border: 1px solid rgba(238,231,215,.2); content: ""; }
.academy-room-stage > img { position: absolute; top: 25px; right: 25px; width: 66px; height: 66px; border: 2px solid rgba(238,231,215,.68); border-radius: 50%; object-fit: cover; }
.academy-room-stage > p { position: absolute; bottom: 18px; left: 22px; margin: 0; color: rgba(238,231,215,.56); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.academy-video-person { position: relative; width: 155px; height: 220px; }
.academy-video-person span { position: absolute; top: 0; left: 50%; width: 78px; height: 78px; border: 1px solid rgba(238,231,215,.5); border-radius: 50%; background: rgba(238,231,215,.12); transform: translateX(-50%); }
.academy-video-person i { position: absolute; right: 0; bottom: 0; left: 0; height: 128px; border: 1px solid rgba(238,231,215,.5); border-radius: 50% 50% 0 0; background: rgba(238,231,215,.1); }
.academy-room-side { grid-row: 2 / 4; grid-column: 2; padding: 22px; border-left: 1px solid var(--line); background: var(--cream); }
.academy-room-side article { padding: 18px 0; border-bottom: 1px solid var(--line); }
.academy-room-side span { display: block; margin-bottom: 7px; color: var(--burgundy); font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.academy-room-side b { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; line-height: 1.18; overflow-wrap: anywhere; }
.academy-room-controls { display: flex; align-items: center; justify-content: center; gap: 8px; border-top: 1px solid var(--line); background: var(--paper); }
.academy-room-controls span { display: grid; min-width: 46px; height: 34px; place-items: center; border: 1px solid var(--line); color: var(--burgundy); font-size: .46rem; font-weight: 600; }
.academy-room-controls .academy-room-end { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }

.academy-audience-grid { display: grid; max-width: var(--max); grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 auto; background: var(--white-line); }
.academy-audience-grid article { min-height: 345px; padding: 30px; background: var(--burgundy); }
.academy-audience-grid article > span { color: var(--taupe); }
.academy-audience-grid h3 { margin-top: 90px; color: var(--cream); }
.academy-audience-grid p { color: rgba(238,231,215,.62); }
.academy-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.academy-trust-grid article { min-height: 320px; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.academy-trust-grid h3 { margin-top: 80px; }

.academy-final-cta { display: grid; max-width: none; grid-template-columns: 1fr auto; gap: 7vw; align-items: end; background: var(--burgundy); color: var(--cream); }
.academy-final-cta .section-index { color: var(--taupe); }
.academy-final-cta h2 { max-width: 980px; margin: 32px 0 25px; }
.academy-final-cta p { max-width: 760px; margin: 0; color: rgba(238,231,215,.62); }
.academy-final-actions { display: flex; min-width: 300px; flex-direction: column; gap: 14px; align-items: stretch; }
.academy-final-actions .text-link { justify-content: space-between; }

.academy-hero-access { display: grid; max-width: 620px; grid-template-columns: repeat(4, minmax(0,1fr)); margin-top: 30px; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.academy-hero-access a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 8px; padding: 0 10px; border-right: 1px solid var(--white-line); color: rgba(238,231,215,.72); font-size: .58rem; font-weight: 600; }
.academy-hero-access a:last-child { border-right: 0; background: rgba(238,231,215,.08); color: var(--cream); }
.academy-hero-access i { color: var(--taupe); font-style: normal; }

.academy-marketplace { max-width: none; background: var(--paper); }
.academy-product-bar { display: grid; max-width: var(--max); min-height: 76px; grid-template-columns: 190px 1fr auto; gap: 28px; align-items: center; margin: -56px auto 112px; padding: 0 22px; border: 1px solid var(--line); background: rgba(247,242,233,.96); box-shadow: 0 18px 50px rgba(68,7,9,.09); }
.academy-product-brand { display: grid; width: max-content; grid-template-columns: 38px auto; gap: 9px; align-items: center; color: var(--burgundy); font-family: var(--serif); font-size: 1.05rem; line-height: .78; }
.academy-product-brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.academy-product-brand span { display: flex; flex-direction: column; letter-spacing: .08em; }
.academy-product-brand small { margin-top: 6px; font-family: var(--sans); font-size: .32rem; font-weight: 600; letter-spacing: .3em; }
.academy-product-bar > nav { display: flex; justify-content: center; gap: clamp(18px,2.2vw,34px); }
.academy-product-bar > nav a, .academy-product-actions > a:first-child { color: #4e4540; font-size: .64rem; font-weight: 600; }
.academy-product-bar > nav a:hover, .academy-product-actions > a:first-child:hover { color: var(--burgundy); }
.academy-product-actions { display: flex; align-items: center; gap: 18px; }
.academy-marketplace-head { max-width: var(--max); margin-inline: auto; }
.academy-teacher-search { display: grid; max-width: var(--max); grid-template-columns: minmax(280px,1.45fr) minmax(180px,.75fr) minmax(180px,.75fr) auto; gap: 10px; align-items: end; margin: 0 auto; padding: 22px; border: 1px solid var(--line); background: var(--cream); }
.academy-teacher-search label > span { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-teacher-search input, .academy-teacher-search select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--paper); color: var(--ink); }
.academy-teacher-search input:focus, .academy-teacher-search select:focus { border-color: var(--burgundy); }
.academy-search-query > div { position: relative; }
.academy-search-query i { position: absolute; top: 50%; left: 15px; z-index: 1; color: var(--burgundy); font-style: normal; transform: translateY(-50%); }
.academy-search-query input { padding-left: 42px; }
.academy-teacher-search .button { height: 52px; border: 0; }
.academy-profile-status { display: flex; max-width: var(--max); align-items: center; justify-content: space-between; margin: 26px auto 20px; }
.academy-profile-status p { margin: 0; color: var(--muted); font-size: .67rem; }
.academy-profile-status p b { color: var(--burgundy); font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.academy-profile-status button { min-height: 40px; padding: 0; border: 0; border-bottom: 1px solid var(--burgundy); background: transparent; color: var(--burgundy); font-size: .62rem; font-weight: 600; cursor: pointer; }
.academy-teacher-grid { display: grid; max-width: var(--max); grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 0 auto; }
.academy-teacher-card { display: grid; min-height: 480px; grid-template-columns: 205px minmax(0,1fr); overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.academy-teacher-card[hidden] { display: none; }
.academy-teacher-portrait { position: relative; min-height: 100%; overflow: hidden; background: linear-gradient(145deg,var(--burgundy),var(--wine-dark)); }
.academy-teacher-portrait::before { position: absolute; inset: 14px; border: 1px solid rgba(238,231,215,.24); content: ""; }
.academy-teacher-portrait span { position: absolute; top: 86px; left: 50%; width: 82px; height: 82px; border: 1px solid rgba(238,231,215,.5); border-radius: 50%; background: rgba(238,231,215,.1); transform: translateX(-50%); }
.academy-teacher-portrait i { position: absolute; right: 25px; bottom: 72px; left: 25px; height: 155px; border: 1px solid rgba(238,231,215,.5); border-radius: 50% 50% 0 0; background: rgba(238,231,215,.08); }
.academy-teacher-portrait b { position: absolute; right: 24px; bottom: 24px; color: var(--taupe); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.academy-teacher-portrait-light { background: linear-gradient(145deg,#d5c5b1,var(--cream)); }
.academy-teacher-portrait-light::before, .academy-teacher-portrait-light span, .academy-teacher-portrait-light i { border-color: rgba(68,7,9,.28); }
.academy-teacher-portrait-light span, .academy-teacher-portrait-light i { background: rgba(68,7,9,.07); }
.academy-teacher-portrait-light b { color: var(--burgundy); }
.academy-teacher-card-body { display: flex; min-width: 0; flex-direction: column; padding: 28px; }
.academy-profile-label { margin: 0 0 25px; color: var(--burgundy) !important; font-size: .56rem !important; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.academy-teacher-card h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.03; }
.academy-teacher-card-body > p:not(.academy-profile-label) { margin: 0 0 24px; color: var(--muted); font-size: .69rem; }
.academy-teacher-card dl { margin: auto 0 22px; border-top: 1px solid var(--line); }
.academy-teacher-card dl > div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.academy-teacher-card dt { color: var(--burgundy); font-size: .55rem; font-weight: 600; }
.academy-teacher-card dd { margin: 0; color: var(--muted); font-size: .57rem; }
.academy-teacher-card-body > a { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--burgundy); font-size: .64rem; font-weight: 600; }
.academy-teacher-card-body > a i { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.academy-profile-note, .academy-access-note { display: grid; max-width: var(--max); grid-template-columns: 28px 1fr; gap: 14px; margin: 28px auto 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .63rem; }
.academy-profile-note > span:first-child, .academy-access-note > span:first-child { color: var(--burgundy); font-family: var(--serif); font-size: 1.4rem; }

.academy-dashboard-showcase { max-width: none; background: var(--wine-dark); color: var(--cream); }
.academy-dashboard-showcase .academy-editorial-head .section-index { color: var(--taupe); }
.academy-dashboard-shell { max-width: var(--max); margin: 0 auto; overflow: hidden; border: 1px solid rgba(238,231,215,.28); background: var(--paper); color: var(--ink); box-shadow: 0 35px 85px rgba(0,0,0,.25); }
.academy-dashboard-topbar { display: grid; min-height: 78px; grid-template-columns: 190px 1fr auto; gap: 20px; align-items: center; padding: 0 24px; border-bottom: 1px solid var(--line); background: var(--cream); }
.academy-dashboard-brand { display: grid; grid-template-columns: 40px auto; gap: 9px; align-items: center; color: var(--burgundy); font-family: var(--serif); font-size: 1.05rem; line-height: .8; }
.academy-dashboard-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.academy-dashboard-brand span { display: flex; flex-direction: column; letter-spacing: .08em; }
.academy-dashboard-brand small { margin-top: 6px; font-family: var(--sans); font-size: .31rem; font-weight: 600; letter-spacing: .22em; }
.academy-dashboard-status { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: .58rem; }
.academy-dashboard-status i { width: 7px; height: 7px; border-radius: 50%; background: #b08c57; box-shadow: 0 0 0 4px rgba(176,140,87,.12); }
.academy-dashboard-topbar > a { display: flex; align-items: center; gap: 12px; color: var(--burgundy); font-size: .61rem; font-weight: 600; }
.academy-dashboard-topbar > a i { font-style: normal; }
.academy-role-tabs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-bottom: 1px solid var(--line); background: rgba(238,231,215,.5); }
.academy-role-tabs button { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 12px; padding: 0 26px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; }
.academy-role-tabs button:last-child { border-right: 0; }
.academy-role-tabs button[aria-selected="true"] { background: var(--burgundy); color: var(--cream); }
.academy-role-tabs span { font-family: var(--serif); font-size: 1.45rem; }
.academy-role-tabs b { font-size: .53rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-role-panel { display: grid; min-height: 590px; grid-template-columns: 210px minmax(0,1fr); }
.academy-role-panel[hidden] { display: none; }
.academy-role-panel > aside { display: flex; flex-direction: column; padding: 30px 18px; border-right: 1px solid var(--line); background: var(--cream); }
.academy-role-panel > aside p { margin: 0 0 24px; padding: 0 10px; color: var(--burgundy); font-size: .53rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.academy-role-panel > aside span { padding: 12px 10px; color: var(--muted); font-size: .61rem; }
.academy-role-panel > aside span.is-active { background: var(--burgundy); color: var(--cream); }
.academy-panel-main { min-width: 0; padding: 34px; }
.academy-panel-main > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.academy-panel-main > header p { margin: 0 0 8px; color: var(--burgundy); font-size: .55rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.academy-panel-main > header h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem,3vw,3.4rem); font-weight: 400; line-height: .95; }
.academy-panel-main > header > a { flex: 0 0 auto; padding-bottom: 7px; border-bottom: 1px solid var(--burgundy); color: var(--burgundy); font-size: .61rem; font-weight: 600; }
.academy-panel-grid { display: grid; grid-template-columns: 1.35fr .82fr .82fr; gap: 12px; margin-top: 22px; }
.academy-panel-grid article { min-height: 305px; padding: 25px; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.academy-panel-grid article > span { color: var(--burgundy); font-size: .55rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.academy-panel-grid h4 { margin: 68px 0 12px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.02; }
.academy-panel-grid p { color: var(--muted); font-size: .64rem; }
.academy-panel-grid article > a { display: inline-block; margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--burgundy); font-size: .6rem; font-weight: 600; }
.academy-panel-primary { background: var(--burgundy) !important; color: var(--cream); }
.academy-panel-primary > span { color: var(--taupe) !important; }
.academy-panel-primary p { color: rgba(238,231,215,.62); }
.academy-panel-primary > a { color: var(--cream) !important; }
.academy-dashboard-showcase .academy-access-note { border-color: var(--white-line); color: rgba(238,231,215,.58); }
.academy-dashboard-showcase .academy-access-note > span:first-child { color: var(--taupe); }

html[dir="rtl"] .academy-role-card li { padding-right: 18px; padding-left: 0; }
html[dir="rtl"] .academy-role-card li::before { right: 0; left: auto; transform: scaleX(-1); }
html[dir="rtl"] .academy-room-stage > p { right: 22px; left: auto; }
html[dir="rtl"] .academy-search-query i { right: 15px; left: auto; }
html[dir="rtl"] .academy-search-query input { padding-right: 42px; padding-left: 14px; }

@media (max-width: 1120px) {
  .academy-mvp-hero { min-height: 0; grid-template-columns: 1fr; padding: 104px 5.3vw 72px; }
  .academy-mvp-copy { max-width: 820px; }
  .academy-portal-visual { max-width: 900px; margin-top: 35px; justify-self: start; }
  .academy-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-editorial-head { grid-template-columns: .2fr 1fr; }
  .academy-editorial-head > p:last-child { grid-column: 2; max-width: 720px; }
  .academy-role-card { min-height: 550px; }
  .academy-lesson-workspace { grid-template-columns: 1fr; gap: 60px; }
  .academy-workspace-copy { max-width: 850px; justify-self: start; }
  .academy-room-preview { width: 100%; max-width: 960px; }
  .academy-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-product-bar { grid-template-columns: 1fr auto; }
  .academy-product-bar > nav { display: none; }
  .academy-teacher-search { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-search-query { grid-column: 1 / -1; }
  .academy-teacher-search .button { width: 100%; }
  .academy-teacher-grid { grid-template-columns: 1fr; }
  .academy-dashboard-topbar { grid-template-columns: 190px 1fr auto; }
  .academy-role-panel { grid-template-columns: 190px minmax(0, 1fr); }
  .academy-panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-panel-primary { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .academy-mvp-hero { padding: 84px 22px 56px; }
  .academy-mvp-copy .breadcrumb { margin-bottom: 28px; }
  .academy-mvp-copy h1 { font-size: clamp(3rem, 12.8vw, 4.8rem); }
  .academy-mvp-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .academy-mvp-actions .button, .academy-mvp-actions .text-link { width: 100%; }
  .academy-launch-note { margin-top: 32px; }
  .academy-portal-topbar { padding: 0 16px; }
  .academy-portal-body { min-height: 0; grid-template-columns: 1fr; }
  .academy-portal-nav { display: grid; grid-template-columns: repeat(4, 1fr); padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .academy-portal-nav > span { display: flex; min-height: 42px; justify-content: center; padding: 0 5px; }
  .academy-portal-nav i { display: none; }
  .academy-portal-nav b { font-size: .5rem; }
  .academy-portal-content { padding: 20px; }
  .academy-portal-greeting { align-items: flex-start; flex-direction: column; gap: 5px; }
  .academy-portal-dashboard { grid-template-columns: 1fr; }
  .academy-next-lesson, .academy-week-card { min-height: 250px; }
  .academy-message-card { grid-column: 1; }
  .academy-portal-visual figcaption { font-size: .5rem; }
  .academy-feature-grid, .academy-role-grid, .academy-journey-grid, .academy-audience-grid, .academy-trust-grid { grid-template-columns: 1fr; }
  .academy-feature-card { min-height: 340px; padding: 26px; }
  .academy-feature-mark { margin: 40px 0 28px; }
  .academy-editorial-head { display: block; margin-bottom: 55px; }
  .academy-editorial-head h2, .academy-workspace-copy h2, .academy-final-cta h2 { margin: 28px 0; font-size: clamp(2.85rem, 13vw, 4.6rem); }
  .academy-role-card { min-height: 460px; padding: 27px; }
  .academy-role-card h3 { margin-top: 75px; }
  .academy-journey-grid li { min-height: 255px; border-right: 1px solid var(--line); border-bottom: 0; }
  .academy-journey-grid li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .academy-journey-grid li:last-child { border-bottom: 1px solid var(--line); }
  .academy-journey-grid h3 { margin-top: 62px; }
  .academy-lesson-workspace { padding-inline: 22px; }
  .academy-room-preview { min-height: 700px; grid-template-columns: 1fr; grid-template-rows: 66px 350px 64px auto; }
  .academy-room-head { padding: 0 18px; }
  .academy-room-head small { display: none; }
  .academy-room-stage { grid-row: 2; }
  .academy-room-controls { grid-row: 3; }
  .academy-room-side { grid-row: 4; grid-column: 1; border-top: 1px solid var(--line); border-left: 0; }
  .academy-audience-grid article { min-height: 300px; padding: 26px; }
  .academy-audience-grid h3 { margin-top: 65px; }
  .academy-trust-grid article { min-height: 285px; padding: 26px; }
  .academy-trust-grid h3 { margin-top: 60px; }
  .academy-final-cta { grid-template-columns: 1fr; align-items: start; }
  .academy-final-actions { min-width: 0; margin-top: 15px; }
  .academy-hero-access { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-hero-access a:nth-child(2) { border-right: 0; }
  .academy-hero-access a:nth-child(-n+2) { border-bottom: 1px solid var(--white-line); }
  .academy-product-bar { min-height: 70px; margin: -42px auto 76px; padding: 0 18px; }
  .academy-product-actions { gap: 13px; }
  .academy-teacher-search { grid-template-columns: 1fr; padding: 18px; }
  .academy-search-query { grid-column: auto; }
  .academy-teacher-card { min-height: 460px; grid-template-columns: 180px minmax(0, 1fr); }
  .academy-teacher-card-body { padding: 24px; }
  .academy-dashboard-topbar { grid-template-columns: 1fr auto; padding: 0 18px; }
  .academy-dashboard-status { display: none; }
  .academy-role-tabs button { min-height: 76px; flex-direction: column; justify-content: center; gap: 4px; padding: 10px; }
  .academy-role-tabs span { font-size: 1.2rem; }
  .academy-role-tabs b { font-size: .45rem; }
  .academy-role-panel { min-height: 0; grid-template-columns: 1fr; }
  .academy-role-panel > aside { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .academy-role-panel > aside p { grid-column: 1 / -1; margin: 0 0 8px; }
  .academy-role-panel > aside span { padding: 10px 6px; text-align: center; }
  .academy-panel-main { padding: 28px 22px; }
  .academy-panel-grid { grid-template-columns: 1fr; }
  .academy-panel-primary { grid-column: auto; }
  .academy-panel-grid article { min-height: 260px; }
  .academy-panel-grid h4 { margin-top: 50px; }
}

@media (max-width: 600px) {
  .academy-product-actions > a:first-child { display: none; }
  .academy-teacher-card { grid-template-columns: 1fr; }
  .academy-teacher-portrait { min-height: 330px; }
  .academy-teacher-portrait span { top: 65px; }
  .academy-teacher-portrait i { bottom: 58px; }
}

@media (max-width: 420px) {
  .academy-mvp-hero { padding-inline: 18px; }
  .academy-preview-chip { max-width: 112px; text-align: center; }
  .academy-portal-content { padding: 16px; }
  .academy-next-lesson, .academy-week-card { padding: 21px; }
  .academy-next-lesson strong { font-size: 3.9rem; }
  .academy-message-card { grid-template-columns: 38px 1fr; padding: 14px; }
  .academy-avatar { width: 38px; height: 38px; }
  .academy-portal-visual figcaption span { max-width: 75%; }
  .academy-feature-card, .academy-role-card, .academy-audience-grid article, .academy-trust-grid article { padding: 23px; }
  .academy-room-preview { grid-template-rows: 62px 315px 62px auto; }
  .academy-room-head b { font-size: 1.05rem; }
  .academy-room-stage > img { top: 18px; right: 18px; width: 54px; height: 54px; }
  .academy-hero-access a { min-height: 45px; padding: 0 8px; font-size: .54rem; }
  .academy-product-bar { margin-inline: -2px; padding: 0 12px; }
  .academy-product-brand { grid-template-columns: 34px auto; font-size: .94rem; }
  .academy-product-brand img { width: 34px; height: 34px; }
  .academy-product-actions .button { min-width: 0; min-height: 42px; padding-inline: 13px; font-size: .54rem; }
  .academy-profile-status { align-items: flex-start; flex-direction: column; gap: 10px; }
  .academy-teacher-search { padding: 14px; }
  .academy-teacher-card-body { padding: 22px; }
  .academy-teacher-card h3 { font-size: 1.85rem; }
  .academy-teacher-card dl > div { grid-template-columns: 76px minmax(0, 1fr); }
  .academy-role-tabs button { min-height: 68px; }
  .academy-role-tabs b { display: none; }
  .academy-role-panel > aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .academy-panel-main { padding: 24px 18px; }
  .academy-panel-main > header { align-items: flex-start; flex-direction: column; }
  .academy-panel-grid article { min-height: 235px; padding: 22px; }
  .academy-panel-grid h4 { margin-top: 40px; }
}

@media (max-width: 340px) {
  .academy-portal-brand { grid-template-columns: 35px auto; font-size: .96rem; }
  .academy-portal-brand img { width: 35px; height: 35px; }
  .academy-preview-chip { max-width: 98px; font-size: .5rem; }
  .academy-portal-nav b { font-size: .44rem; }
  .academy-room-controls span { min-width: 42px; }
}

/* GUGA Academy course catalogue — light editorial direction */
.academy-catalogue-hero { position: relative; isolation: isolate; display: grid; min-height: 710px; grid-template-columns: minmax(0,.92fr) minmax(520px,.78fr); gap: clamp(48px,7vw,120px); align-items: center; padding: 126px 5.3vw 82px; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.academy-catalogue-hero::before { content: ""; position: absolute; z-index: -1; right: -110px; bottom: -155px; width: min(44vw,680px); aspect-ratio: .8; background: url("assets/brand/academy-accents-clean.jpg") center/cover no-repeat; filter: grayscale(1) sepia(.2); opacity: .055; transform: rotate(5deg); }
.academy-catalogue-hero::after { content: "ACADEMY"; position: absolute; z-index: -2; left: 4.6vw; bottom: -1.5vw; color: rgba(82,9,13,.035); font-family: var(--serif); font-size: clamp(7rem,16vw,17rem); line-height: .7; letter-spacing: -.05em; pointer-events: none; white-space: nowrap; }
.academy-catalogue-hero > * { position: relative; z-index: 1; }
.academy-catalogue-copy { max-width: 760px; }
.academy-catalogue-copy .breadcrumb { margin-bottom: 66px; }
.academy-catalogue-copy .section-index { color: var(--burgundy); }
.academy-catalogue-copy h1 { margin: 28px 0 30px; font-family: var(--serif); font-size: clamp(4.35rem,6.2vw,7.15rem); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.academy-catalogue-copy h1 span, .academy-catalogue-copy h1 em { display: block; }
.academy-catalogue-copy h1 em { color: var(--burgundy); font-weight: 400; }
.academy-catalogue-copy > p:not(.section-index) { max-width: 660px; color: var(--muted); font-size: .82rem; }
.academy-catalogue-actions { display: flex; gap: 16px; align-items: center; margin-top: 38px; }
.academy-catalogue-proof { display: grid; max-width: 660px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.academy-catalogue-proof > span { display: flex; min-height: 72px; align-items: center; gap: 12px; padding: 0 15px; border-right: 1px solid var(--line); }
.academy-catalogue-proof > span:last-child { border-right: 0; }
.academy-catalogue-proof b { color: var(--burgundy); font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.academy-catalogue-proof small { color: var(--muted); font-size: .58rem; font-weight: 600; line-height: 1.35; }
.academy-current-board { width: 100%; max-width: 640px; justify-self: end; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.46); color: var(--ink); box-shadow: 20px 26px 0 rgba(82,9,13,.035); }
.academy-current-board-head { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 26px; border-bottom: 1px solid var(--line); background: var(--cream); }
.academy-current-board-head span { color: var(--burgundy); font-family: var(--serif); font-size: 1.45rem; }
.academy-current-board-head b { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .52rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-current-board > a { position: relative; isolation: isolate; display: grid; min-height: 126px; grid-template-columns: 42px minmax(0,1fr) 34px; gap: 15px; align-items: center; padding: 18px 26px; overflow: hidden; border-bottom: 1px solid var(--line); color: var(--ink); transition: background .2s ease, box-shadow .2s ease; }
.academy-current-board > a::before { content: ""; position: absolute; z-index: -1; inset: 0 0 0 auto; width: 54%; background-position: center; background-size: cover; background-repeat: no-repeat; filter: grayscale(1) sepia(.18); opacity: .13; -webkit-mask-image: linear-gradient(90deg,transparent,#000 42%); mask-image: linear-gradient(90deg,transparent,#000 42%); transition: opacity .2s ease, transform .35s ease; }
.academy-current-board > a:nth-of-type(1)::before { background-image: url("assets/programmes/shadows/laptop-study.jpg"); }
.academy-current-board > a:nth-of-type(2)::before { background-image: url("assets/programmes/shadows/study-notes.jpg"); }
.academy-current-board > a:nth-of-type(3)::before { background-image: url("assets/programmes/shadows/writing.jpg"); }
.academy-current-board > a:hover { background: rgba(238,231,215,.5); box-shadow: inset 4px 0 0 var(--burgundy); }
.academy-current-board > a:hover::before { opacity: .2; transform: scale(1.025); }
.academy-current-board > a > span { color: var(--burgundy); font-family: var(--serif); font-size: 1.25rem; }
.academy-current-board > a div { display: flex; min-width: 0; flex-direction: column; gap: 7px; }
.academy-current-board > a b { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1; }
.academy-current-board > a small { color: var(--muted); font-size: .58rem; }
.academy-current-board > a i { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; }
.academy-current-board-foot { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 26px; background: var(--cream); }
.academy-current-board-foot span { max-width: 250px; color: var(--muted); font-size: .58rem; }
.academy-current-board-foot a { flex: 0 0 auto; padding-bottom: 5px; border-bottom: 1px solid var(--burgundy); color: var(--burgundy); font-size: .6rem; font-weight: 600; }

.academy-course-catalogue { padding-bottom: clamp(86px,9vw,145px); }
.academy-course-search { grid-template-columns: minmax(300px,1.45fr) minmax(190px,.72fr) minmax(180px,.68fr) auto; }
.academy-popular-subjects { display: flex; max-width: var(--max); min-height: 70px; align-items: center; gap: 24px; margin: 14px auto 0; padding: 12px 18px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.academy-popular-subjects > span { flex: 0 0 auto; color: var(--burgundy); font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-popular-subjects > div { display: flex; min-width: 0; flex-wrap: wrap; gap: 7px; }
.academy-popular-subjects button { min-height: 34px; padding: 0 13px; border: 1px solid var(--line); background: var(--paper); color: var(--muted); font-family: var(--sans); font-size: .55rem; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.academy-popular-subjects button:hover, .academy-popular-subjects button[aria-pressed="true"] { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.academy-course-grid { display: grid; max-width: var(--max); grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 0 auto; }
.academy-course-card { position: relative; isolation: isolate; display: flex; min-height: 570px; flex-direction: column; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.48); }
.academy-course-card::before { content: ""; position: absolute; z-index: -1; top: 0; right: 0; width: 66%; height: 230px; background: url("assets/programmes/shadows/study-notes.jpg") center/cover no-repeat; filter: grayscale(1) sepia(.18); opacity: .09; -webkit-mask-image: linear-gradient(135deg,transparent 4%,#000 68%); mask-image: linear-gradient(135deg,transparent 4%,#000 68%); pointer-events: none; }
.academy-course-card[data-category~="english"]::before { background-image: url("assets/programmes/shadows/writing.jpg"); }
.academy-course-card[data-category~="academic"]::before { background-image: url("assets/programmes/shadows/library-interior.jpg"); }
.academy-course-card[data-category~="career"]::before { background-image: url("assets/programmes/shadows/team-study.jpg"); }
.academy-course-card[data-category~="programming"]::before { background-image: url("assets/programmes/shadows/laptop-study.jpg"); }
.academy-course-card[data-category~="ai"]::before { background-image: url("assets/programmes/shadows/study-notes.jpg"); }
.academy-course-card[data-category~="design"]::before { background-image: url("assets/programmes/shadows/writing.jpg"); }
.academy-course-card[hidden] { display: none; }
.academy-course-card-featured { background: var(--cream); }
.academy-course-card-new { background: rgba(238,231,215,.58); }
.academy-course-card-new .academy-course-badge { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.academy-course-card-private { background: rgba(238,231,215,.72); color: var(--ink); }
.academy-course-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.academy-course-number { color: var(--burgundy); font-family: var(--serif); font-size: 1.2rem; }
.academy-course-badge { padding: 7px 9px; border: 1px solid var(--line); color: var(--burgundy); font-size: .5rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.academy-course-card-private .academy-course-number, .academy-course-card-private .academy-course-badge { color: var(--burgundy); }
.academy-course-card-private .academy-course-badge { border-color: var(--line); }
.academy-course-mark { display: grid; width: 88px; height: 88px; margin: 40px 0 28px; place-items: center; border: 1px solid var(--line); color: var(--burgundy); font-family: var(--serif); font-size: 1rem; transform: rotate(-2deg); }
.academy-course-card:nth-child(even) .academy-course-mark { transform: rotate(2deg); }
.academy-course-card-private .academy-course-mark { border-color: var(--line); color: var(--burgundy); }
.academy-course-type { margin: 0 0 12px !important; color: var(--burgundy) !important; font-size: .56rem !important; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-course-card-private .academy-course-type { color: var(--burgundy) !important; }
.academy-course-card h3 { min-height: 2.05em; margin: 0 0 15px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.02; }
.academy-course-card > p:not(.academy-course-type) { margin: 0; color: var(--muted); font-size: .68rem; }
.academy-course-card-private > p:not(.academy-course-type) { color: var(--muted); }
.academy-course-card dl { margin: auto 0 25px; padding-top: 25px; }
.academy-course-card dl > div { display: grid; grid-template-columns: 78px minmax(0,1fr); gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.academy-course-card-private dl > div { border-color: var(--line); }
.academy-course-card dt { color: var(--muted); font-size: .53rem; text-transform: uppercase; }
.academy-course-card dd { margin: 0; color: var(--ink); font-size: .59rem; font-weight: 600; text-align: right; }
.academy-course-card-private dt { color: var(--muted); }
.academy-course-card-private dd { color: var(--ink); }
.academy-course-select { display: flex; width: 100%; min-height: 50px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 16px; border: 1px solid var(--burgundy); background: transparent; color: var(--burgundy); font-family: var(--sans); font-size: .61rem; font-weight: 600; cursor: pointer; transition: background .2s ease, color .2s ease; }
.academy-course-select:hover { background: var(--burgundy); color: var(--cream); }
.academy-course-select i { font-style: normal; }
.academy-course-card-private .academy-course-select { border-color: var(--burgundy); color: var(--burgundy); }
.academy-course-card-private .academy-course-select:hover { background: var(--burgundy); color: var(--cream); }
.academy-course-empty { max-width: var(--max); margin: 0 auto; padding: 70px 24px; border: 1px solid var(--line); background: var(--cream); text-align: center; }
.academy-course-empty[hidden] { display: none; }
.academy-course-empty > span { color: var(--burgundy); font-family: var(--serif); font-size: 2rem; }
.academy-course-empty h3 { margin: 18px 0 10px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.academy-course-empty p { max-width: 520px; margin: 0 auto 22px; color: var(--muted); font-size: .68rem; }
.academy-course-empty a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--burgundy); color: var(--burgundy); font-size: .61rem; font-weight: 600; }
.academy-course-note { display: grid; max-width: var(--max); grid-template-columns: 28px 1fr; gap: 14px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .63rem; }
.academy-course-note > span:first-child { color: var(--burgundy); font-family: var(--serif); font-size: 1.4rem; }

.academy-enrolment { position: relative; display: grid; max-width: none; grid-template-columns: minmax(340px,.7fr) minmax(600px,1.15fr); gap: clamp(50px,7vw,120px); align-items: start; overflow: hidden; border-top: 1px solid var(--line); background: var(--paper); color: var(--ink); }
.academy-enrolment::before { content: ""; position: absolute; right: -8vw; bottom: -20%; width: min(42vw,650px); aspect-ratio: 1.5; background: url("assets/programmes/shadows/study-notes.jpg") center/cover no-repeat; filter: grayscale(1) sepia(.18); opacity: .045; -webkit-mask-image: linear-gradient(90deg,transparent,#000); mask-image: linear-gradient(90deg,transparent,#000); pointer-events: none; }
.academy-enrolment > * { position: relative; z-index: 1; }
.academy-enrolment-copy { max-width: 660px; justify-self: end; }
.academy-enrolment-copy .section-index { color: var(--burgundy); }
.academy-enrolment-copy h2 { margin: 32px 0 28px; font-family: var(--serif); font-size: clamp(3.5rem,5.8vw,6.7rem); font-weight: 400; line-height: .9; }
.academy-enrolment-copy h2 span, .academy-enrolment-copy h2 em { display: block; }
.academy-enrolment-copy h2 em { color: var(--burgundy); font-weight: 400; }
.academy-enrolment-copy > p:not(.section-index) { color: var(--muted); }
.academy-enrolment-steps { margin: 42px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.academy-enrolment-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.academy-enrolment-steps li > span { color: var(--burgundy); font-family: var(--serif); font-size: 1.1rem; }
.academy-enrolment-steps b { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.academy-enrolment-steps p { margin: 3px 0 0; color: var(--muted); font-size: .6rem; }
.academy-enrolment-form { max-width: 900px; padding: clamp(26px,3.4vw,48px); border: 1px solid var(--line); background: rgba(255,255,255,.46); color: var(--ink); box-shadow: 18px 22px 0 rgba(82,9,13,.03); }
.academy-intent-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 0 0 30px; padding: 0 0 30px; border: 0; border-bottom: 1px solid var(--line); }
.academy-intent-options legend { grid-column: 1 / -1; width: 100%; margin-bottom: 13px; color: var(--burgundy); font-family: var(--serif); font-size: 1.55rem; }
.academy-intent-options label { position: relative; min-width: 0; cursor: pointer; }
.academy-intent-options input { position: absolute; opacity: 0; pointer-events: none; }
.academy-intent-options label > span { display: flex; min-height: 105px; flex-direction: column; justify-content: center; padding: 18px 20px; border: 1px solid var(--line); background: rgba(255,255,255,.48); transition: border-color .2s ease, background .2s ease, color .2s ease; }
.academy-intent-options input:checked + span { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
.academy-intent-options input:focus-visible + span { outline: 2px solid var(--taupe); outline-offset: 3px; }
.academy-intent-options b { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.academy-intent-options small { margin-top: 6px; color: var(--muted); font-size: .57rem; }
.academy-intent-options input:checked + span small { color: rgba(238,231,215,.62); }
.academy-enrolment-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.academy-enrolment-fields label { display: block; }
.academy-enrolment-fields label > span { display: block; margin-bottom: 8px; color: var(--burgundy); font-size: .56rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-form-course, .academy-form-wide { grid-column: 1 / -1; }
.academy-form-course.is-disabled { opacity: .48; }
.academy-enrolment-fields input, .academy-enrolment-fields select, .academy-enrolment-fields textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
.academy-enrolment-fields input, .academy-enrolment-fields select { height: 52px; padding: 0 14px; }
.academy-enrolment-fields textarea { min-height: 100px; padding: 14px; resize: vertical; }
.academy-enrolment-fields input:focus, .academy-enrolment-fields select:focus, .academy-enrolment-fields textarea:focus { border-color: var(--burgundy); }
.academy-enrolment-summary { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 0 18px; border: 1px solid var(--line); background: var(--cream); }
.academy-enrolment-summary span { color: var(--muted); font-size: .54rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.academy-enrolment-summary b { color: var(--burgundy); font-family: var(--serif); font-size: 1.2rem; font-weight: 400; text-align: right; }
.academy-enrolment-submit { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin-top: 18px; padding: 22px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); }
.academy-enrolment-submit p { margin: 0; color: var(--muted); font-size: .56rem; }
.academy-enrolment-submit .button { flex: 0 0 auto; }

.academy-current-board > a:focus-visible, .academy-course-select:focus-visible, .academy-popular-subjects button:focus-visible { outline: 2px solid var(--burgundy); outline-offset: -4px; }

html[dir="rtl"] .academy-course-card dd, html[dir="rtl"] .academy-enrolment-summary b { text-align: left; }

@media (max-width: 1120px) {
  .academy-catalogue-hero { min-height: 0; grid-template-columns: 1fr; padding-top: 112px; }
  .academy-catalogue-copy { max-width: 900px; }
  .academy-current-board { max-width: 900px; justify-self: start; }
  .academy-course-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .academy-course-search { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .academy-course-search .academy-search-query { grid-column: 1 / -1; }
  .academy-enrolment { grid-template-columns: 1fr; }
  .academy-enrolment-copy { max-width: 850px; justify-self: start; }
  .academy-enrolment-form { width: 100%; max-width: 960px; }
}

@media (max-width: 760px) {
  .academy-catalogue-hero { padding: 84px 22px 64px; }
  .academy-catalogue-copy .breadcrumb { margin-bottom: 34px; }
  .academy-catalogue-copy h1 { font-size: clamp(3.2rem,14vw,5.1rem); }
  .academy-catalogue-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .academy-catalogue-actions .button, .academy-catalogue-actions .text-link { width: 100%; }
  .academy-catalogue-proof { grid-template-columns: 1fr; margin-top: 38px; }
  .academy-catalogue-proof > span { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); }
  .academy-catalogue-proof > span:last-child { border-bottom: 0; }
  .academy-current-board > a { min-height: 106px; padding: 15px 18px; }
  .academy-current-board > a b { font-size: 1.35rem; }
  .academy-current-board-foot { align-items: flex-start; flex-direction: column; }
  .academy-course-grid { grid-template-columns: 1fr; }
  .academy-course-card { min-height: 530px; padding: 24px; }
  .academy-course-card h3 { min-height: 0; }
  .academy-course-search { grid-template-columns: 1fr; }
  .academy-course-search .academy-search-query { grid-column: auto; }
  .academy-popular-subjects { align-items: flex-start; flex-direction: column; gap: 12px; }
  .academy-enrolment { gap: 48px; padding-inline: 22px; }
  .academy-enrolment-copy h2 { font-size: clamp(3rem,13vw,4.8rem); }
  .academy-intent-options, .academy-enrolment-fields { grid-template-columns: 1fr; }
  .academy-form-course, .academy-form-wide { grid-column: auto; }
  .academy-enrolment-submit { grid-template-columns: 1fr; }
  .academy-enrolment-submit .button { width: 100%; }
}

@media (max-width: 420px) {
  .academy-catalogue-hero { padding-inline: 18px; }
  .academy-current-board-head { align-items: flex-start; flex-direction: column; padding: 18px; }
  .academy-current-board > a { grid-template-columns: 32px minmax(0,1fr) 30px; gap: 10px; }
  .academy-current-board > a b { font-size: 1.16rem; }
  .academy-course-card { padding: 22px; }
  .academy-course-mark { margin-top: 32px; }
  .academy-enrolment { padding-inline: 18px; }
  .academy-enrolment-form { padding: 20px 16px; }
  .academy-intent-options label > span { min-height: 96px; padding: 16px; }
  .academy-enrolment-summary { align-items: flex-start; flex-direction: column; gap: 6px; padding-block: 15px; }
  .academy-enrolment-summary b { text-align: left; }
}

/* Editorial headings — keep generous tracking consistent across every page and language. */
h1, h2, h3, h4 {
  letter-spacing: .015em !important;
  text-wrap: balance;
}

/* Avoid typographic widows: short final lines stay with the preceding words where space allows. */
p, li, figcaption, blockquote {
  text-wrap: pretty;
}

/* Keep every first screen close to the fixed header and let its content set the height. */
@media (max-width: 760px) {
  .section-pad.inner-hero { padding-top: 84px; padding-bottom: 42px; }
  .section-pad.programmes-hero { padding-bottom: 34px; }
  .programmes-hero .inner-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .programmes-hero .inner-hero-side { margin-top: 16px; padding: 22px; background: rgba(247,242,233,.91); transform: none; }
  .programmes-hero-intro { margin-top: 23px; font-size: .76rem; }
  .programmes-hero-note { display: none; }
  .programmes-shadow-photo { width: 205px; opacity: .052; }
  .programmes-shadow-photo-left { bottom: 31%; left: -18px; }
  .programmes-shadow-photo-top { display: none; }
  .programmes-word-shadow { font-size: clamp(5.8rem, 28vw, 8.2rem); opacity: .72; }
  .programmes-word-shadow-hero { top: auto; right: auto; bottom: -.03em; left: 5%; font-size: clamp(4.5rem, 20vw, 6rem); transform: none; }
  .programmes-word-shadow-levels { top: 1.5%; right: 4%; font-size: clamp(4.6rem, 22vw, 6rem); }
  .programmes-word-shadow-next { display: none; }
  .programmes-graphic-levels { top: 150px; right: -82px; width: 292px; opacity: .075; transform: rotate(2deg); }
  .programmes-graphic-route { top: 410px; right: auto; bottom: auto; left: -175px; width: 260px; max-height: none; opacity: .065; transform: scaleX(-1) rotate(-45deg); transform-origin: 48% 52%; }
  .programmes-graphic-next { top: auto; right: -82px; bottom: -48px; display: block; width: 310px; opacity: .065; transform: rotate(7deg); }
  .programmes-graphic-evidence { top: 270px; right: -112px; width: 360px; opacity: .07; transform: rotate(3deg); }
  .topic-visual-programmes { height: auto; }
  .topic-visual-programmes .topic-visual-media, .topic-visual-programmes .topic-visual-media > img { height: 300px; min-height: 0; }
  .topic-visual-programmes .topic-visual-copy { min-height: 0; padding: 42px 22px 46px; }
  body[data-page="programmes"] .programmes,
  body[data-page="programmes"] .path,
  body[data-page="programmes"] .deep-dive { padding-top: 64px; padding-bottom: 64px; }
  body[data-page="programmes"] .programmes::before,
  body[data-page="programmes"] .path::before,
  body[data-page="programmes"] .deep-dive::before,
  body[data-page="programmes"] .programmes::after,
  body[data-page="programmes"] .path::after,
  body[data-page="programmes"] .deep-dive::after { width: 235px; opacity: .045; }
  body[data-page="programmes"] .route-tool::before,
  body[data-page="programmes"] .route-tool::after { width: 210px; opacity: .038; }
  body[data-page="programmes"] .path-head::before,
  body[data-page="programmes"] .path-head::after { width: 220px; opacity: .1; }
  body[data-page="programmes"] .route-tool { min-height: 600px; }
  body[data-page="programmes"] .page-cta::before,
  body[data-page="programmes"] .page-cta::after { width: 220px; opacity: .065; }
  body[data-page="programmes"] .deep-dive .section-head { max-width: 100%; }
  .brand-story-programmes { gap: 30px; padding: 58px 22px; }
  .brand-story-programmes .brand-story-media figure > img { height: 350px; }
  .section-pad.contact-page,
  .section-pad.country-page-hero,
  .section-pad.about-hero { padding-top: 84px; padding-bottom: 56px; }
  .academy-mvp-hero { padding-top: 84px; padding-bottom: 56px; }
}

/* Inner-page editorial refresh — intentionally excludes Home and Courses & Routes. */
body[data-page="admissions"] { --inner-page-photo: url("assets/programmes/shadows/writing.jpg"); --inner-page-photo-position: center; }
body[data-page="destinations"]:not([data-country]) { --inner-page-photo: url("assets/brand/directory-destinations-v1.jpg"); --inner-page-photo-position: center; }
body[data-page="funding"] { --inner-page-photo: url("assets/programmes/shadows/study-notes.jpg"); --inner-page-photo-position: center; }
body[data-page="resources"] { --inner-page-photo: url("assets/programmes/shadows/library-shelves.jpg"); --inner-page-photo-position: center; }
body[data-page="student-life"] { --inner-page-photo: url("assets/programmes/shadows/university-building.jpg"); --inner-page-photo-position: center; }
body[data-page="universities"] { --inner-page-photo: url("assets/brand/directory-universities-v1.jpg"); --inner-page-photo-position: center; }

body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero {
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -2vw;
  bottom: 0;
  width: min(49vw, 760px);
  background-image: var(--inner-page-photo);
  background-position: var(--inner-page-photo-position, center);
  background-size: cover;
  content: "";
  filter: grayscale(1) sepia(.18);
  opacity: .14;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 36%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 36%);
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side {
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line);
  background: rgba(247, 242, 233, .91);
  box-shadow: 16px 18px 0 rgba(68, 7, 9, .025);
}

/* Keep large calls to action light, typographic and editorial on inner pages. */
body:not([data-page="home"]):not([data-page="programmes"]) .page-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
body:not([data-page="home"]):not([data-page="programmes"]) .page-cta .section-index { color: var(--burgundy); }
body:not([data-page="home"]):not([data-page="programmes"]) .page-cta p { color: var(--muted); }
body:not([data-page="home"]):not([data-page="programmes"]) .page-cta .button-light {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--cream);
}
body:not([data-page="home"]):not([data-page="programmes"]) .page-cta .button-light:hover {
  border-color: var(--wine-dark);
  background: var(--wine-dark);
}

/* Admissions: the service overview now uses the same paper system as the rest of the route. */
body[data-page="admissions"] .services { border-block: 1px solid var(--line); background: var(--cream); color: var(--ink); }
body[data-page="admissions"] .services-title .section-index,
body[data-page="admissions"] .services-title h2 em,
body[data-page="admissions"] .service-item > span,
body[data-page="admissions"] .service-item li,
body[data-page="admissions"] .service-item > i,
body[data-page="admissions"] .scope-note b { color: var(--burgundy); }
body[data-page="admissions"] .service-list,
body[data-page="admissions"] .service-item { border-color: var(--line); }
body[data-page="admissions"] .service-item p,
body[data-page="admissions"] .scope-note p { color: var(--muted); }
body[data-page="admissions"] .scope-note { border-color: var(--line); background: rgba(255, 255, 255, .34); }

/* Funding: preserve the calculator as a tool, but remove the large dark page band. */
body[data-page="funding"] .calculator-section { border-block: 1px solid var(--line); background: var(--cream); }

/* Student life: convert the former charcoal band into restrained paper cards. */
body[data-page="student-life"] .visa { border-block: 1px solid var(--line); background: var(--cream); color: var(--ink); }
body[data-page="student-life"] .visa .section-index,
body[data-page="student-life"] .visa .section-head h2 em,
body[data-page="student-life"] .visa-card > span,
body[data-page="student-life"] .visa-card a,
body[data-page="student-life"] .arrival-strip span { color: var(--burgundy); }
body[data-page="student-life"] .visa .section-head > p:last-child,
body[data-page="student-life"] .visa-card p { color: var(--muted); }
body[data-page="student-life"] .visa-grid { background: var(--line); }
body[data-page="student-life"] .visa-card { background: var(--paper); }
body[data-page="student-life"] .arrival-strip,
body[data-page="student-life"] .arrival-strip div { border-color: var(--line); }

/* Country guides: every destination keeps its own photograph, with a light information journey. */
body[data-page="destinations"][data-country] .country-page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
body[data-page="destinations"][data-country] .country-hero-visual {
  border-color: var(--line);
  background: var(--cream);
  box-shadow: 18px 22px 0 rgba(68, 7, 9, .035);
}
body[data-page="destinations"][data-country] .country-hero-visual img { filter: grayscale(.12) sepia(.06); }
body[data-page="destinations"][data-country] .country-journey,
body[data-page="destinations"][data-country] .country-source {
  border-block: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
body[data-page="destinations"][data-country] .country-journey .section-index,
body[data-page="destinations"][data-country] .country-journey-grid span,
body[data-page="destinations"][data-country] .country-source .section-index,
body[data-page="destinations"][data-country] .official-link-list a { color: var(--burgundy); }
body[data-page="destinations"][data-country] .country-journey .section-head > p:last-child,
body[data-page="destinations"][data-country] .country-journey-grid p,
body[data-page="destinations"][data-country] .country-source > div:last-child > p { color: var(--muted); }
body[data-page="destinations"][data-country] .country-journey-grid { background: var(--line); }
body[data-page="destinations"][data-country] .country-journey-grid article { background: var(--paper); }
body[data-page="destinations"][data-country] .country-journey-grid h3 { color: var(--ink); }
body[data-page="destinations"][data-country] .official-link-list,
body[data-page="destinations"][data-country] .official-link-list a { border-color: var(--line); }

/* UK guide: a compact subject directory and a single left-aligned university panel. */
body[data-page="destinations"][data-country] .country-uk-courses {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(52px, 6vw, 86px);
}
body[data-page="destinations"][data-country] .country-uk-courses::before {
  position: absolute;
  z-index: 0;
  top: -120px;
  right: -3vw;
  width: min(44vw,620px);
  aspect-ratio: 1.34;
  background: url("assets/programmes/shadows/university-building.jpg") center / cover no-repeat;
  content: "";
  filter: grayscale(1) sepia(.28) contrast(.92);
  opacity: .075;
  -webkit-mask-image: radial-gradient(ellipse at center,#000 28%,transparent 76%);
  mask-image: radial-gradient(ellipse at center,#000 28%,transparent 76%);
  pointer-events: none;
  transform: rotate(2deg);
}
body[data-page="destinations"][data-country] .country-uk-courses > * { position: relative; z-index: 1; }
body[data-page="destinations"][data-country] .country-uk-courses-head,
body[data-page="destinations"][data-country] .country-uk-course-list,
body[data-page="destinations"][data-country] .country-uk-course-note,
body[data-page="destinations"][data-country] .country-uk-university-section .country-universities {
  width: min(1180px, 100%);
  margin-inline: auto;
}
body[data-page="destinations"][data-country] .country-uk-courses-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
}
body[data-page="destinations"][data-country] .country-uk-courses-head .section-index {
  margin-bottom: 20px;
  color: var(--burgundy);
}
body[data-page="destinations"][data-country] .country-uk-courses-head h2,
body[data-page="destinations"][data-country] .country-uk-university-section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.7vw, 5.25rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
body[data-page="destinations"][data-country] .country-uk-courses-head > p {
  max-width: 610px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(.86rem, 1.25vw, 1rem);
  line-height: 1.68;
}
body[data-page="destinations"][data-country] .country-uk-course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-course {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .28);
}
body[data-page="destinations"][data-country] .country-uk-course > span {
  padding-top: 5px;
  color: var(--burgundy);
  font-size: .66rem;
  letter-spacing: .1em;
}
body[data-page="destinations"][data-country] .country-uk-course h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
  font-weight: 400;
  line-height: 1.08;
}
body[data-page="destinations"][data-country] .country-uk-course p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.8;
}
body[data-page="destinations"][data-country] .country-uk-course-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0 0;
}
body[data-page="destinations"][data-country] .country-uk-course-note p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}
body[data-page="destinations"][data-country] .country-uk-course-note b { color: var(--ink); }
body[data-page="destinations"][data-country] .country-uk-course-note .button { min-width: 230px; }
body[data-page="destinations"][data-country] .country-uk-university-section {
  display: block;
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
}
body[data-page="destinations"][data-country] .country-uk-university-section .country-universities {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  column-gap: clamp(40px, 7vw, 108px);
}
body[data-page="destinations"][data-country] .country-uk-university-section .section-index { grid-column: 1 / -1; }
body[data-page="destinations"][data-country] .country-uk-university-section h2 {
  grid-column: 1;
  grid-row: 2 / span 3;
  align-self: start;
}
body[data-page="destinations"][data-country] .country-uk-university-section ul,
body[data-page="destinations"][data-country] .country-uk-university-section p,
body[data-page="destinations"][data-country] .country-uk-university-section .text-link { grid-column: 2; }
body[data-page="destinations"][data-country] .country-uk-university-section ul { margin-top: 0; }

@media (max-width: 820px) {
  body[data-page="destinations"][data-country] .country-uk-courses-head,
  body[data-page="destinations"][data-country] .country-uk-university-section .country-universities {
    grid-template-columns: 1fr;
  }
  body[data-page="destinations"][data-country] .country-uk-courses-head { gap: 18px; }
  body[data-page="destinations"][data-country] .country-uk-courses-head > p { margin: 0; }
  body[data-page="destinations"][data-country] .country-uk-university-section h2,
  body[data-page="destinations"][data-country] .country-uk-university-section ul,
  body[data-page="destinations"][data-country] .country-uk-university-section p,
  body[data-page="destinations"][data-country] .country-uk-university-section .text-link {
    grid-column: 1;
    grid-row: auto;
  }
  body[data-page="destinations"][data-country] .country-uk-university-section ul { margin-top: 28px; }
}

@media (max-width: 620px) {
  body[data-page="destinations"][data-country] .country-uk-courses {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  body[data-page="destinations"][data-country] .country-uk-courses-head h2,
  body[data-page="destinations"][data-country] .country-uk-university-section h2 {
    font-size: clamp(2.4rem, 11.3vw, 3.2rem);
  }
  body[data-page="destinations"][data-country] .country-uk-course-list { grid-template-columns: 1fr; }
  body[data-page="destinations"][data-country] .country-uk-course { padding: 22px 18px; }
  body[data-page="destinations"][data-country] .country-uk-course-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body[data-page="destinations"][data-country] .country-uk-course-note .button { width: 100%; min-width: 0; }
}

/* UK guide: a compact course-first finder backed by official course pages. */
body[data-page="destinations"][data-country] .country-uk-catalogue-tools,
body[data-page="destinations"][data-country] .country-uk-results-head,
body[data-page="destinations"][data-country] .country-uk-pagination {
  width: min(1180px, 100%);
  margin-inline: auto;
}
body[data-page="destinations"][data-country] .country-uk-catalogue-tools {
  display: grid;
  grid-template-columns: minmax(250px, .9fr) minmax(0, 2.1fr);
  margin-top: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .34);
  box-shadow:
    0 22px 52px rgba(73, 19, 28, .07),
    0 4px 12px rgba(73, 19, 28, .035);
}
body[data-page="destinations"][data-country] .country-uk-catalogue-tools label {
  display: grid;
  gap: 9px;
  min-width: 0;
}
body[data-page="destinations"][data-country] .country-uk-catalogue-tools label > span,
body[data-page="destinations"][data-country] .country-uk-filter-toggle span {
  color: var(--burgundy);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body[data-page="destinations"][data-country] .country-uk-search {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-catalogue-tools input,
body[data-page="destinations"][data-country] .country-uk-catalogue-tools select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
body[data-page="destinations"][data-country] .country-uk-filter-panel {
  display: grid;
  grid-template-columns: minmax(145px, 1fr) minmax(125px, .78fr) minmax(145px, 1fr) auto;
  align-items: end;
  gap: 12px;
  min-width: 0;
  padding: 18px 20px;
}
body[data-page="destinations"][data-country] .country-uk-filter-panel > button,
body[data-page="destinations"][data-country] .country-uk-filter-toggle {
  min-height: 44px;
  border: 1px solid var(--burgundy);
  border-radius: 0;
  background: transparent;
  color: var(--burgundy);
  font: inherit;
  font-size: .74rem;
  font-weight: 600;
  cursor: pointer;
}
body[data-page="destinations"][data-country] .country-uk-filter-toggle { display: none; }
body[data-page="destinations"][data-country] .country-uk-results-head {
  display: flex;
  justify-content: flex-end;
  padding: 18px 0 12px;
}
body[data-page="destinations"][data-country] .country-uk-results-head p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
}
body[data-page="destinations"][data-country] .country-uk-results-head b {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}
body[data-page="destinations"][data-country] .country-uk-empty {
  display: grid;
  width: min(1180px, 100%);
  min-height: 240px;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 72px) clamp(22px, 5vw, 64px);
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, .7);
  box-shadow:
    0 28px 64px rgba(73, 19, 28, .065),
    0 6px 18px rgba(73, 19, 28, .035);
  text-align: center;
}
body[data-page="destinations"][data-country] .country-uk-empty[hidden],
body[data-page="destinations"][data-country] .country-uk-course-list[hidden] {
  display: none !important;
}
body[data-page="destinations"][data-country] .country-uk-empty h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.08;
}
body[data-page="destinations"][data-country] .country-uk-empty p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}
body[data-page="destinations"][data-country] .country-uk-empty button {
  min-height: 42px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid var(--burgundy);
  border-radius: 0;
  background: transparent;
  color: var(--burgundy);
  font: inherit;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
}
body[data-page="destinations"][data-country] .country-uk-course-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  background: rgba(255, 253, 247, .7);
  box-shadow:
    0 28px 64px rgba(73, 19, 28, .085),
    0 6px 18px rgba(73, 19, 28, .045);
}
body[data-page="destinations"][data-country] .country-uk-catalogue-card {
  display: grid;
  grid-template-rows: clamp(150px, 16vw, 205px) auto 1fr;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .54);
}
body[data-page="destinations"][data-country] .country-uk-catalogue-card[hidden] { display: none !important; }
body[data-page="destinations"][data-country] .country-uk-course-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
body[data-page="destinations"][data-country] .country-uk-course-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) sepia(.12);
}
body[data-page="destinations"][data-country] .country-uk-course-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 236, .12), transparent 48%, rgba(75, 7, 12, .12));
  pointer-events: none;
}
body[data-page="destinations"][data-country] .country-uk-card-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--burgundy);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 18px 22px 0;
}
body[data-page="destinations"][data-country] .country-uk-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px 22px 22px;
}
body[data-page="destinations"][data-country] .country-uk-card-copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}
body[data-page="destinations"][data-country] .country-uk-card-copy > p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.6;
}
body[data-page="destinations"][data-country] .country-uk-course-university b {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}
body[data-page="destinations"][data-country] .country-uk-course-offerings,
body[data-page="destinations"][data-country] .country-uk-course-more ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
body[data-page="destinations"][data-country] .country-uk-course-offerings > li,
body[data-page="destinations"][data-country] .country-uk-course-more li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-course-offerings li > div,
body[data-page="destinations"][data-country] .country-uk-course-more li > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}
body[data-page="destinations"][data-country] .country-uk-course-offerings b,
body[data-page="destinations"][data-country] .country-uk-course-more b {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
}
body[data-page="destinations"][data-country] .country-uk-course-offerings span,
body[data-page="destinations"][data-country] .country-uk-course-more span,
body[data-page="destinations"][data-country] .country-uk-course-offerings small,
body[data-page="destinations"][data-country] .country-uk-course-more small {
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.45;
}
body[data-page="destinations"][data-country] .country-uk-course-offerings a,
body[data-page="destinations"][data-country] .country-uk-course-more a {
  color: var(--burgundy);
  font-size: .61rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
  text-decoration: none;
}
body[data-page="destinations"][data-country] .country-uk-course-more {
  border-top: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-course-more summary {
  padding: 13px 0;
  color: var(--burgundy);
  font-size: .68rem;
  font-weight: 600;
  cursor: pointer;
}
body[data-page="destinations"][data-country] .country-uk-card-copy dl {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-card-copy dl > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
}
body[data-page="destinations"][data-country] .country-uk-card-copy dt {
  color: var(--burgundy);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body[data-page="destinations"][data-country] .country-uk-card-copy dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.45;
}
body[data-page="destinations"][data-country] .country-uk-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
body[data-page="destinations"][data-country] .country-uk-card-actions a {
  min-width: 0;
  padding: 12px 8px 0 0;
  overflow-wrap: anywhere;
  color: var(--burgundy);
  font-size: .66rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}
body[data-page="destinations"][data-country] .country-uk-card-actions a + a { border-left: 0; }
body[data-page="destinations"][data-country] .country-uk-pagination {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
  padding: 18px 0 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
body[data-page="destinations"][data-country] .country-uk-pagination:empty { display: none; }
body[data-page="destinations"][data-country] .country-uk-pagination button {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--burgundy);
  font-size: .62rem;
  cursor: pointer;
}
body[data-page="destinations"][data-country] .country-uk-pagination button.is-active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--paper);
}
body[data-page="destinations"][data-country] .country-uk-pagination-ellipsis {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
}
body[data-page="destinations"][data-country] .country-uk-catalogue-tools :focus-visible,
body[data-page="destinations"][data-country] .country-uk-catalogue-card a:focus-visible,
body[data-page="destinations"][data-country] .country-uk-empty button:focus-visible,
body[data-page="destinations"][data-country] .country-uk-pagination button:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  body[data-page="destinations"][data-country] .country-uk-catalogue-tools { grid-template-columns: 1fr; }
  body[data-page="destinations"][data-country] .country-uk-search { border-right: 0; border-bottom: 1px solid var(--line); }
  body[data-page="destinations"][data-country] .country-uk-filter-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body[data-page="destinations"][data-country] .country-uk-filter-panel > button { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body[data-page="destinations"][data-country] .country-uk-catalogue-tools { margin-top: 24px; }
  body[data-page="destinations"][data-country] .country-uk-filter-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
  }
  body[data-page="destinations"][data-country] .country-uk-filter-panel { display: none; }
  body[data-page="destinations"][data-country] .country-uk-filter-panel.is-open {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }
  body[data-page="destinations"][data-country] .country-uk-results-head { padding-top: 14px; }
  body[data-page="destinations"][data-country] .country-uk-empty {
    min-height: 220px;
    padding: 36px 20px;
  }
  body[data-page="destinations"][data-country] .country-uk-course-list { grid-template-columns: 1fr; }
  body[data-page="destinations"][data-country] .country-uk-catalogue-tools,
  body[data-page="destinations"][data-country] .country-uk-course-list {
    box-shadow: 0 14px 34px rgba(73, 19, 28, .065);
  }
  body[data-page="destinations"][data-country] .country-uk-catalogue-card {
    grid-template-rows: 170px auto 1fr;
    min-height: 0;
    padding: 0;
  }
  body[data-page="destinations"][data-country] .country-uk-card-index { padding: 16px 18px 0; }
  body[data-page="destinations"][data-country] .country-uk-card-copy { padding: 18px; }
  body[data-page="destinations"][data-country] .country-uk-course-offerings > li,
  body[data-page="destinations"][data-country] .country-uk-course-more li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body[data-page="destinations"][data-country] .country-uk-course-offerings a,
  body[data-page="destinations"][data-country] .country-uk-course-more a { text-align: left; }
  body[data-page="destinations"][data-country] .country-uk-pagination {
    justify-content: center;
    overflow: visible;
  }
  body[data-page="destinations"][data-country] .country-uk-pagination button {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  body[data-page="destinations"][data-country] .country-uk-pagination-ellipsis { height: 34px; }
}

/* UK guide: one concise funding summary that leads into the full calculator. */
body[data-page="destinations"][data-country="uk"] .country-funding-source {
  display: block;
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(52px, 6vw, 86px);
  background: var(--cream);
  color: var(--ink);
}
body[data-page="destinations"][data-country="uk"] .country-funding-intro,
body[data-page="destinations"][data-country="uk"] .country-funding-summary {
  width: min(1180px, 100%);
  margin-inline: auto;
}
body[data-page="destinations"][data-country="uk"] .country-funding-intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  column-gap: clamp(42px, 7vw, 108px);
  align-items: end;
}
body[data-page="destinations"][data-country="uk"] .country-funding-intro .section-index {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  color: var(--burgundy);
}
body[data-page="destinations"][data-country="uk"] .country-funding-intro h2 {
  margin: 0;
  max-width: 650px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
}
body[data-page="destinations"][data-country="uk"] .country-funding-intro > p:last-child {
  max-width: 670px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: clamp(.86rem, 1.25vw, 1rem);
  line-height: 1.68;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(34px, 5vw, 76px);
  margin-top: clamp(30px, 4vw, 52px);
  padding: clamp(26px, 3.5vw, 48px);
  border: 1px solid rgba(238, 231, 215, .32);
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 18px 22px 0 rgba(68, 7, 9, .055);
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary h3 {
  max-width: 650px;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 400;
  line-height: 1.02;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(238, 231, 215, .76);
  font-size: .82rem;
  line-height: 1.65;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-details ul {
  margin: 0;
  border-top: 1px solid rgba(238, 231, 215, .28);
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-details li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(238, 231, 215, .28);
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-details li span {
  padding-top: 2px;
  color: var(--taupe);
  font-size: .58rem;
  letter-spacing: .09em;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary-details li b {
  color: var(--cream);
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.45;
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary .button {
  width: 100%;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--burgundy);
}
body[data-page="destinations"][data-country="uk"] .country-funding-summary .button:hover {
  background: white;
}

@media (max-width: 900px) {
  body[data-page="destinations"][data-country="uk"] .country-funding-intro,
  body[data-page="destinations"][data-country="uk"] .country-funding-summary {
    grid-template-columns: 1fr;
  }
  body[data-page="destinations"][data-country="uk"] .country-funding-intro { gap: 20px; }
  body[data-page="destinations"][data-country="uk"] .country-funding-intro > p:last-child { margin: 0; }
}

@media (max-width: 560px) {
  body[data-page="destinations"][data-country="uk"] .country-funding-source {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  body[data-page="destinations"][data-country="uk"] .country-funding-intro .section-index { margin-bottom: 12px; }
  body[data-page="destinations"][data-country="uk"] .country-funding-intro h2 {
    font-size: clamp(2.55rem, 12.2vw, 3.45rem);
  }
  body[data-page="destinations"][data-country="uk"] .country-funding-summary {
    gap: 26px;
    margin-top: 26px;
    padding: 23px 20px;
    box-shadow: 8px 10px 0 rgba(68, 7, 9, .055);
  }
  body[data-page="destinations"][data-country="uk"] .country-funding-summary h3 {
    font-size: clamp(2rem, 9.8vw, 2.65rem);
  }
  body[data-page="destinations"][data-country="uk"] .country-funding-summary-copy p { margin-top: 16px; }
  body[data-page="destinations"][data-country="uk"] .country-funding-summary-details { gap: 22px; }
}

/* About: a unique archival visual and light, human editorial sections. */
body[data-page="about"] .about-route-paper::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("assets/brand/education-history-clean.png") center / cover no-repeat;
  content: "";
  filter: grayscale(1) sepia(.12);
  opacity: .11;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(145deg, transparent 12%, #000 100%);
  mask-image: linear-gradient(145deg, transparent 12%, #000 100%);
}
body[data-page="about"] .about-route-paper::after { z-index: 2; }
body[data-page="about"] .about-route-paper > * { z-index: 1; }
body[data-page="about"] .about-founder,
body[data-page="about"] .about-audiences,
body[data-page="about"] .about-transparency,
body[data-page="about"] .about-final-cta { border-block: 1px solid var(--line); background: var(--cream); color: var(--ink); }
body[data-page="about"] .founder-route { border-color: var(--line); background: rgba(255, 255, 255, .32); }
body[data-page="about"] .founder-route .section-index,
body[data-page="about"] .founder-route li span,
body[data-page="about"] .founder-copy .section-index,
body[data-page="about"] .founder-copy h2 em,
body[data-page="about"] .founder-quote > .founder-motto,
body[data-page="about"] .founder-quote strong,
body[data-page="about"] .about-section-head-dark .section-index,
body[data-page="about"] .about-section-head-dark h2 em,
body[data-page="about"] .about-audience-grid article > span,
body[data-page="about"] .about-final-cta .section-index,
body[data-page="about"] .about-final-cta h2 em { color: var(--burgundy); }
body[data-page="about"] .founder-route li,
body[data-page="about"] .founder-quote { border-color: var(--line); }
body[data-page="about"] .founder-narrative,
body[data-page="about"] .founder-quote footer span,
body[data-page="about"] .about-audience-grid p,
body[data-page="about"] .about-final-cta > div:first-child > p:last-child { color: var(--muted); }
body[data-page="about"] .founder-quote > p { color: var(--ink); }
body[data-page="about"] .about-audience-grid { background: var(--line); }
body[data-page="about"] .about-audience-grid article { background: var(--paper); }
body[data-page="about"] .about-audience-grid h3 { color: var(--ink); }
body[data-page="about"] .transparency-panel { border-color: var(--line); background: var(--paper); }
body[data-page="about"] .about-final-actions .text-link { border-color: var(--burgundy); color: var(--burgundy); }
body[data-page="about"] .about-final-actions .button-light {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--cream);
}
body[data-page="about"] .purpose-mission,
body[data-page="about"] .ecosystem-education { background: var(--paper); color: var(--ink); }
body[data-page="about"] .purpose-mission > span,
body[data-page="about"] .purpose-mission h3,
body[data-page="about"] .ecosystem-education p,
body[data-page="about"] .ecosystem-education h3 { color: var(--burgundy); }
body[data-page="about"] .purpose-mission p,
body[data-page="about"] .ecosystem-education > span { color: var(--muted); }
body[data-page="about"] .ecosystem-education img { border-color: var(--line); }

/* Contact: a welcoming light first screen with a unique student-group photograph. */
body[data-page="contact"] .contact-page {
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
body[data-page="contact"] .contact-page::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -3vw;
  bottom: 0;
  width: min(52vw, 820px);
  background: url("assets/programmes/shadows/student-group.jpg") center / cover no-repeat;
  content: "";
  filter: grayscale(1) sepia(.18);
  opacity: .12;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%);
}
body[data-page="contact"] .contact-page .breadcrumb,
body[data-page="contact"] .contact-copy > p:not(.section-index),
body[data-page="contact"] .contact-card p,
body[data-page="contact"] .contact-card > small { color: var(--muted); }
body[data-page="contact"] .contact-page .breadcrumb b,
body[data-page="contact"] .contact-page .breadcrumb a:hover,
body[data-page="contact"] .contact-page .contact-copy h1 em,
body[data-page="contact"] .contact-page .section-index,
body[data-page="contact"] .contact-prepare b,
body[data-page="contact"] .status { color: var(--burgundy); }
body[data-page="contact"] .contact-prepare span,
body[data-page="contact"] .contact-card,
body[data-page="contact"] .socials,
body[data-page="contact"] .socials a { border-color: var(--line); }
body[data-page="contact"] .contact-card { background: rgba(247, 242, 233, .92); color: var(--ink); box-shadow: 18px 22px 0 rgba(68, 7, 9, .03); }
body[data-page="contact"] .contact-card .button-light {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--cream);
}
body[data-page="contact"] .socials a { color: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .logo { color: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .logo-crest { border-color: rgba(68, 7, 9, .22); box-shadow: 0 8px 22px rgba(68, 7, 9, .12); }
body[data-page="contact"] .site-header:not(.scrolled) .desktop-nav a { color: var(--muted); }
body[data-page="contact"] .site-header:not(.scrolled) .desktop-nav a::after { background: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .language-switch select { border-color: var(--line); background: rgba(247, 242, 233, .86); color: var(--ink); }
body[data-page="contact"] .site-header:not(.scrolled) .language-switch::after { color: var(--burgundy); }
body[data-page="contact"] .site-header:not(.scrolled) .header-actions .button { border-color: var(--burgundy); background: var(--burgundy); color: var(--cream); }
body[data-page="contact"] .site-header:not(.scrolled) .menu-toggle span { background: var(--burgundy); }

@media (max-width: 760px) {
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::before {
    top: auto;
    right: -18vw;
    bottom: 0;
    width: 88vw;
    height: 72%;
    opacity: .09;
  }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side {
    margin-top: 24px;
    padding: 20px;
    background: rgba(247, 242, 233, .94);
    box-shadow: 9px 11px 0 rgba(68, 7, 9, .025);
  }
  body[data-page="contact"] .contact-page::before {
    top: auto;
    right: -28vw;
    bottom: 0;
    width: 105vw;
    height: 68%;
    opacity: .075;
  }
  body[data-page="destinations"][data-country] .country-hero-visual { box-shadow: 10px 12px 0 rgba(68, 7, 9, .03); }
}

/* Activate v2 after all legacy page rules in the cascade. */
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero {
  max-width: var(--max);
  padding-top: 104px;
  padding-bottom: 68px;
  border-bottom: 0;
  background: radial-gradient(circle at 10% 90%, rgba(68,7,9,.045), transparent 24%), linear-gradient(118deg, var(--paper) 0 76%, var(--cream) 76%);
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::before { display: none; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero::after { right: auto; bottom: -17vw; left: -13vw; width: min(43vw,610px); opacity: .018; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero .breadcrumb { margin-bottom: 34px; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid { grid-template-columns: minmax(0,1.08fr) minmax(390px,.72fr); gap: clamp(48px,6.3vw,105px); align-items: stretch; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid > div:first-child { align-self: center; padding: 26px 0 34px; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero h1 { max-width: 850px; font-size: clamp(3.7rem,5.55vw,6.65rem); line-height: .89; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(240px,25vw,286px) clamp(24px,2.7vw,38px) 30px;
  border: 1px solid var(--line);
  background-image: linear-gradient(180deg,rgba(32,3,5,.02) 8%,rgba(39,4,6,.28) 48%,rgba(34,3,5,.94) 100%), var(--editorial-hero-photo);
  background-position: center, var(--editorial-hero-position,center);
  background-size: cover;
  color: var(--cream);
  box-shadow: none;
}
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side::before { position: absolute; z-index: -1; inset: 14px; border: 1px solid rgba(238,231,215,.42); content: ""; pointer-events: none; }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side p { max-width: 510px; margin: 0; color: rgba(255,250,240,.9); font-size: .8rem; text-shadow: 0 2px 22px rgba(0,0,0,.65); }
body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side .button { align-self: flex-start; margin-top: 22px; border-color: var(--cream); background: rgba(238,231,215,.94); color: var(--burgundy); backdrop-filter: blur(8px); }

body[data-page="destinations"][data-country] .country-page-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0,1.04fr) minmax(420px,.76fr);
  grid-template-areas: "crumb crumb" "title visual" "facts facts";
  gap: 0 clamp(52px,6.5vw,110px);
  margin: 0 auto;
  padding-top: 104px;
  padding-bottom: 70px;
  border-bottom: 0;
  background: radial-gradient(circle at 11% 88%,rgba(68,7,9,.045),transparent 22%), linear-gradient(118deg,var(--paper) 0 76%,var(--cream) 76%);
}
body[data-page="destinations"][data-country] .country-page-hero::after { right: auto; bottom: -15vw; left: -12vw; width: min(42vw,600px); opacity: .018; }
body[data-page="destinations"][data-country] .country-page-hero .breadcrumb { grid-area: crumb; margin-bottom: 34px; }
body[data-page="destinations"][data-country] .country-page-title { grid-area: title; display: flex; align-self: center; flex-direction: column; gap: 28px; padding: 18px 0 28px; }
body[data-page="destinations"][data-country] .country-page-title h1 { max-width: 840px; margin-top: 25px; font-size: clamp(3.75rem,5.45vw,6.55rem); line-height: .9; }
body[data-page="destinations"][data-country] .country-page-title > div:last-child { max-width: 650px; }
body[data-page="destinations"][data-country] .country-page-title > div:last-child > p { margin: 0; font-size: .82rem; }
body[data-page="destinations"][data-country] .country-hero-visual { grid-area: visual; align-self: stretch; min-height: 520px; aspect-ratio: auto; margin-top: 0; border: 1px solid var(--line); background: var(--cream); box-shadow: none; }
body[data-page="destinations"][data-country] .country-hero-visual > img { filter: saturate(.8) sepia(.08) contrast(1.02); object-position: center; }
body[data-page="destinations"][data-country] .country-fact-row { grid-area: facts; margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
body[data-page="destinations"][data-country] .country-fact-row article { min-height: 124px; border-right: 1px solid var(--line); background: rgba(247,242,233,.62); }
body[data-page="destinations"][data-country] .country-fact-row article:last-child { border-right: 0; }
body[data-page="destinations"][data-country] .country-switcher {
  position: relative;
  isolation: isolate;
  display: flex;
  max-width: var(--max);
  align-items: center;
  gap: clamp(28px,4vw,64px);
  overflow: hidden;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
body[data-page="destinations"][data-country] .country-switcher::before {
  position: absolute;
  z-index: -1;
  top: -95%;
  right: -1%;
  width: min(44vw,640px);
  height: 270%;
  background: linear-gradient(90deg,var(--paper) 0,rgba(247,242,233,.18) 42%,rgba(247,242,233,.62) 100%), url("assets/programmes/shadows/campus.jpg") center 44% / cover no-repeat;
  content: "";
  filter: grayscale(1) sepia(.28) contrast(.9);
  opacity: .13;
  pointer-events: none;
  transform: rotate(-2deg);
}
body[data-page="destinations"][data-country] .country-switcher-heading {
  flex: 0 0 clamp(195px,17vw,245px);
  position: relative;
  z-index: 1;
}
body[data-page="destinations"][data-country] .country-switcher-heading small {
  display: block;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body[data-page="destinations"][data-country] .country-switcher-heading p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.28rem,1.65vw,1.72rem);
  line-height: 1.02;
  letter-spacing: -.025em;
}
body[data-page="destinations"][data-country] .country-switcher-links {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: repeat(6,minmax(112px,1fr));
  border: 1px solid rgba(68,7,9,.18);
  background: rgba(247,242,233,.64);
  backdrop-filter: blur(7px);
}
body[data-page="destinations"][data-country] .country-switcher a {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-right: 1px solid rgba(68,7,9,.14);
  background: rgba(255,252,246,.7);
  color: var(--ink);
  font-size: .64rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
body[data-page="destinations"][data-country] .country-switcher a:last-child { border-right: 0; }
body[data-page="destinations"][data-country] .country-switcher a b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
body[data-page="destinations"][data-country] .country-switcher a i { margin-left: auto; color: var(--burgundy); font-size: .72rem; font-style: normal; opacity: .58; }
body[data-page="destinations"][data-country] .country-switcher a:hover { background: var(--cream); color: var(--burgundy); }
body[data-page="destinations"][data-country] .country-switcher a[aria-current="page"] { background: var(--burgundy); color: var(--cream); }
body[data-page="destinations"][data-country] .country-switcher a[aria-current="page"] i { color: var(--cream); opacity: .74; }
body[data-page="destinations"][data-country] .country-switcher a:focus-visible { outline: 3px solid rgba(117,75,27,.34); outline-offset: 3px; }

body[data-page="contact"] .contact-page { max-width: var(--max); margin: 0 auto; padding-top: 104px; padding-bottom: 72px; background: radial-gradient(circle at 8% 90%,rgba(68,7,9,.045),transparent 23%), linear-gradient(118deg,var(--paper) 0 76%,var(--cream) 76%); color: var(--ink); }
body[data-page="contact"] .contact-page::before { display: none; }
body[data-page="contact"] .contact-page::after { right: auto; bottom: -16vw; left: -13vw; opacity: .018; }
body[data-page="contact"] .contact-page .breadcrumb { margin-bottom: 34px; color: var(--muted); }
body[data-page="contact"] .contact-page .breadcrumb b,
body[data-page="contact"] .contact-page .breadcrumb a:hover,
body[data-page="contact"] .contact-page .section-index { color: var(--burgundy); }
body[data-page="contact"] .contact-page-grid { grid-template-columns: minmax(0,1.06fr) minmax(400px,.72fr); gap: clamp(48px,6.5vw,110px); align-items: stretch; }
body[data-page="contact"] .contact-page .contact-copy { align-self: center; padding: 20px 0 30px; }
body[data-page="contact"] .contact-page .contact-copy h1 { font-size: clamp(3.75rem,5.55vw,6.65rem); line-height: .89; }
body[data-page="contact"] .contact-page .contact-copy h1 em { color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-copy > p:not(.section-index) { color: var(--muted); }
body[data-page="contact"] .contact-page .contact-prepare b { color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-prepare span { border-color: var(--line); background: rgba(247,242,233,.66); color: var(--ink); }
body[data-page="contact"] .contact-page .contact-card { position: relative; isolation: isolate; display: flex; min-height: 510px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 34px; border: 1px solid var(--line); background: linear-gradient(180deg,rgba(28,3,5,.04) 7%,rgba(34,3,5,.36) 46%,rgba(31,3,5,.96) 100%), url("assets/programmes/shadows/team-study.jpg") center/cover no-repeat; color: var(--cream); }
/* Final search sizing sits after the shared component rules so the utility stays compact. */
.site-search-dialog { width: min(680px,calc(100vw - 36px)); height: auto; max-height: min(740px,calc(100dvh - 42px)); overflow: hidden; border: 1px solid rgba(238,231,215,.42); background: var(--paper); box-shadow: 0 28px 90px rgba(31,3,5,.3); }
.site-search-dialog::backdrop { background: rgba(31,3,5,.48); backdrop-filter: blur(4px); }
.site-search-shell { display: block; min-height: 0; }
.site-search-editorial { display: none; }
.site-search-workspace { max-height: min(740px,calc(100dvh - 42px)); overflow-y: auto; padding: 24px 30px 25px; }
.site-search-compact-head { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.site-search-compact-head > p { margin: 0; color: var(--burgundy); font-family: var(--serif); font-size: 1.4rem; line-height: 1; }
.site-search-close { position: static; flex: 0 0 auto; }
.site-search-result { min-height: 74px; padding-top: 10px; padding-bottom: 10px; }
.site-search-result-copy p { -webkit-line-clamp: 1; }
.site-search-help { margin-top: 16px; }

body[data-page="contact"] .contact-page .contact-card::before { position: absolute; z-index: -1; inset: 14px; border: 1px solid rgba(238,231,215,.42); content: ""; pointer-events: none; }
body[data-page="contact"] .contact-page .contact-card h3 { margin-top: 24px; }
body[data-page="contact"] .contact-page .contact-card p { color: rgba(255,250,240,.86); text-shadow: 0 2px 18px rgba(0,0,0,.64); }
body[data-page="contact"] .contact-page .contact-card .button-light { border-color: var(--cream); background: var(--cream); color: var(--burgundy); }
body[data-page="contact"] .contact-page .contact-card .status,
body[data-page="contact"] .contact-page .contact-card > small { color: var(--cream); }

@media (max-width: 1120px) {
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid { grid-template-columns: minmax(0,1fr) minmax(350px,.68fr); gap: 42px; }
  body[data-page="destinations"][data-country] .country-page-hero { grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); gap: 0 42px; }
  body[data-page="contact"] .contact-page-grid { grid-template-columns: minmax(0,1fr) minmax(360px,.7fr); gap: 42px; }
}

@media (min-width: 761px) and (max-width: 1023px) {
  body[data-page="destinations"][data-country] .country-switcher { display: block; padding-top: 29px; padding-bottom: 29px; }
  body[data-page="destinations"][data-country] .country-switcher::before { top: -48%; right: -12%; width: 72%; height: 190%; opacity: .1; }
  body[data-page="destinations"][data-country] .country-switcher-heading { margin-bottom: 18px; }
  body[data-page="destinations"][data-country] .country-switcher-heading p { max-width: 320px; }
  body[data-page="destinations"][data-country] .country-switcher-links { grid-template-columns: repeat(3,minmax(0,1fr)); }
  body[data-page="destinations"][data-country] .country-switcher a { min-height: 46px; border-bottom: 1px solid rgba(68,7,9,.14); }
  body[data-page="destinations"][data-country] .country-switcher a:nth-child(3n) { border-right: 0; }
  body[data-page="destinations"][data-country] .country-switcher a:nth-last-child(-n+3) { border-bottom: 0; }
}

@media (max-width: 760px) {
  .brand-story-uk .brand-story-media figure > img, .brand-story-europe .brand-story-media figure > img, .brand-story-usa .brand-story-media figure > img, .brand-story-canada .brand-story-media figure > img, .brand-story-uae .brand-story-media figure > img, .brand-story-morocco .brand-story-media figure > img { padding: 10px; }
  .site-search-dialog { width: calc(100vw - 20px); height: auto; max-height: calc(100dvh - 20px); border: 1px solid rgba(238,231,215,.42); }
  .site-search-shell { min-height: 0; grid-template-rows: none; }
  .site-search-workspace { max-height: calc(100dvh - 20px); padding: 20px 17px calc(20px + env(safe-area-inset-bottom)); }
  .site-search-compact-head { margin-bottom: 16px; }
  .site-search-form > div { grid-template-columns: 40px minmax(0,1fr) 52px; }
  .site-search-suggestions { margin-top: 12px; margin-bottom: 19px; }
  .site-search-result { min-height: 72px; }
  .site-search-result-copy p { -webkit-line-clamp: 1; }

  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero { padding-top: 84px; padding-bottom: 42px; background: var(--paper); }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero .breadcrumb { margin-bottom: 27px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-grid > div:first-child { padding: 8px 0 2px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero h1 { font-size: clamp(3.15rem,14vw,4.9rem); line-height: .91; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side { min-height: 390px; margin-top: 0; padding: 218px 22px 24px; background-image: linear-gradient(180deg,rgba(32,3,5,.02) 8%,rgba(39,4,6,.28) 48%,rgba(34,3,5,.94) 100%), var(--editorial-hero-photo); background-position: center,var(--editorial-hero-position,center); background-size: cover; color: var(--cream); box-shadow: none; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side::before { display: block; inset: 10px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side .button { width: 100%; }

  body[data-page="destinations"][data-country] .country-page-hero { display: grid; grid-template-columns: 1fr; grid-template-areas: "crumb" "title" "visual" "facts"; gap: 0; padding-top: 84px; padding-bottom: 44px; background: var(--paper); }
  body[data-page="destinations"][data-country] .country-page-hero .breadcrumb { margin-bottom: 27px; }
  body[data-page="destinations"][data-country] .country-page-title { gap: 19px; padding: 4px 0 28px; }
  body[data-page="destinations"][data-country] .country-page-title h1 { font-size: clamp(3.05rem,13.8vw,4.85rem); }
  body[data-page="destinations"][data-country] .country-page-title .button { width: 100%; }
  body[data-page="destinations"][data-country] .country-hero-visual { min-height: 390px; margin-top: 0; box-shadow: none; }
  body[data-page="destinations"][data-country] .country-hero-visual::after { inset: 10px; }
  body[data-page="destinations"][data-country] .country-visual-mark { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  body[data-page="destinations"][data-country] .country-fact-row { grid-template-columns: 1fr; margin-top: 22px; }
  body[data-page="destinations"][data-country] .country-fact-row article { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  body[data-page="destinations"][data-country] .country-fact-row article:last-child { border-bottom: 0; }
  body[data-page="destinations"][data-country] .country-switcher { display: block; padding-top: 27px; padding-bottom: 27px; }
  body[data-page="destinations"][data-country] .country-switcher::before { top: -30%; right: -32%; width: 105%; height: 150%; opacity: .09; }
  body[data-page="destinations"][data-country] .country-switcher-heading { margin-bottom: 17px; }
  body[data-page="destinations"][data-country] .country-switcher-heading p { max-width: 250px; font-size: 1.48rem; }
  body[data-page="destinations"][data-country] .country-switcher-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body[data-page="destinations"][data-country] .country-switcher a { min-height: 44px; border-right: 1px solid rgba(68,7,9,.14); border-bottom: 1px solid rgba(68,7,9,.14); }
  body[data-page="destinations"][data-country] .country-switcher a:nth-child(2n) { border-right: 0; }
  body[data-page="destinations"][data-country] .country-switcher a:nth-last-child(-n+2) { border-bottom: 0; }

  body[data-page="contact"] .contact-page { padding-top: 84px; padding-bottom: 44px; background: var(--paper); }
  body[data-page="contact"] .contact-page .breadcrumb { margin-bottom: 27px; }
  body[data-page="contact"] .contact-page-grid { grid-template-columns: 1fr; gap: 26px; }
  body[data-page="contact"] .contact-page .contact-copy { padding: 6px 0 0; }
  body[data-page="contact"] .contact-page .contact-copy h1 { font-size: clamp(3.1rem,14vw,4.9rem); }
  body[data-page="contact"] .contact-page .contact-card { min-height: 480px; padding: 26px 22px; }
  body[data-page="contact"] .contact-page .contact-card::before { inset: 10px; }
}

@media (max-width: 360px) {
  .site-search-workspace { padding-inline: 13px; }
  body:is([data-page="admissions"], [data-page="destinations"]:not([data-country]), [data-page="funding"], [data-page="resources"], [data-page="student-life"], [data-page="universities"]) .inner-hero-side,
  body[data-page="destinations"][data-country] .country-hero-visual { min-height: 350px; }
  body[data-page="contact"] .contact-page .contact-card { min-height: 450px; padding-inline: 18px; }
}

/* Ukrainian home: Cyrillic-first editorial type scale. */
html[lang="uk"] body[data-page="home"] { font-size: 1rem; }
html[lang="uk"] body[data-page="home"] .hero h1 {
  font-size: clamp(3.5rem, 5vw, 4.25rem);
  line-height: .94;
  letter-spacing: -.025em;
}
html[lang="uk"] body[data-page="home"] .hero h1 > span:nth-of-type(2),
html[lang="uk"] body[data-page="home"] .hero h1 > em {
  font-size: .36em;
  line-height: 1.12;
  letter-spacing: -.01em;
}
html[lang="uk"] body[data-page="home"] .hero h1 > span:nth-of-type(2) {
  display: inline-block;
  margin-top: .8rem;
}
html[lang="uk"] body[data-page="home"] .hero h1 > em { display: inline; }
html[lang="uk"] body[data-page="home"] .hero-lead {
  max-width: 62ch;
  font-size: clamp(1.125rem, 1.45vw, 1.3125rem);
  line-height: 1.55;
}
html[lang="uk"] body[data-page="home"] :is(.intro h2, .section-head h2, .services-title h2, .timeline-head h2, .funding-top h2, .faq-head h2, .standards-copy h2, .page-cta h2) {
  font-size: clamp(2.25rem, 3.2vw, 2.75rem);
  line-height: .98;
  letter-spacing: -.02em;
}
html[lang="uk"] body[data-page="home"] .section-head > p:last-child,
html[lang="uk"] body[data-page="home"] .standards-copy > p:not(.section-index),
html[lang="uk"] body[data-page="home"] .page-cta > div > p:last-child {
  max-width: 64ch;
  font-size: 1.0625rem;
  line-height: 1.62;
}
html[lang="uk"] body[data-page="home"] .directory-card p,
html[lang="uk"] body[data-page="home"] .journey-preview p,
html[lang="uk"] body[data-page="home"] .control-grid p {
  font-size: .9375rem;
  line-height: 1.55;
}
html[lang="uk"] body[data-page="home"] .home-country-grid h3 { line-height: 1.08; }

@media (max-width: 760px) {
  html[lang="uk"] body[data-page="home"] .hero h1 {
    font-size: clamp(2.375rem, 10.5vw, 2.75rem);
    line-height: .98;
    letter-spacing: -.02em;
  }
  html[lang="uk"] body[data-page="home"] .hero h1 > span:nth-of-type(2),
  html[lang="uk"] body[data-page="home"] .hero h1 > em {
    font-size: .5em;
    line-height: 1.16;
  }
  html[lang="uk"] body[data-page="home"] .hero-lead {
    font-size: clamp(1.0625rem, 4.5vw, 1.125rem);
    line-height: 1.58;
  }
  html[lang="uk"] body[data-page="home"] :is(.intro h2, .section-head h2, .services-title h2, .timeline-head h2, .funding-top h2, .faq-head h2, .standards-copy h2, .page-cta h2) {
    font-size: clamp(1.75rem, 8vw, 2.125rem);
    line-height: 1.04;
    letter-spacing: -.015em;
  }
  html[lang="uk"] body[data-page="home"] :is(p, h1, h2, h3, h4, li, a, b, small) {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* Keep the expanded eight-item navigation on one line in every locale. */
@media (min-width: 1280px) {
  .site-header {
    grid-template-columns: 145px minmax(0, 1fr) auto;
    column-gap: 14px;
    padding-inline: 24px;
  }

  .desktop-nav {
    min-width: 0;
    align-items: center;
    gap: 11px;
  }

  .desktop-nav a {
    flex: 0 0 auto;
    font-size: .7rem;
    white-space: nowrap;
  }

  .header-actions { gap: 10px; }
  .careers-header-button { gap: 8px; padding-inline: 10px; }
  .language-switch select { width: 108px; }
  .header-actions .button-small { gap: 10px; padding-left: 13px; }
}

/* Keep the navigation in its original top-row position whenever the available
   laptop/landscape-tablet width can hold all three header groups. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .site-header {
    grid-template-columns: 128px minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    min-height: 84px;
    column-gap: 8px;
    padding-inline: 16px;
  }
  .site-header.scrolled { min-height: 68px; }
  .logo { grid-column: 1; grid-row: 1; }
  .desktop-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, .65vw, 8px);
  }
  .desktop-nav a {
    flex: 0 0 auto;
    font-size: clamp(.55rem, .62vw, .62rem);
    white-space: nowrap;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 6px;
  }
  .careers-header-button,
  .menu-toggle,
  .mobile-menu { display: none; }
  .site-search-trigger { width: 38px; height: 38px; flex-basis: 38px; }
  .language-switch select { width: 100px; padding-inline: 8px 26px; }
  .header-actions .button-small {
    gap: 7px;
    padding-left: 10px;
    font-size: .66rem;
  }
  .header-actions .button-small i { width: 24px; height: 24px; }
}

/* Tablets keep the complete navigation in the original top header row too.
   Secondary actions become compact before the navigation is allowed to move. */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header {
    grid-template-columns: 108px minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    min-height: 84px;
    column-gap: 6px;
    padding-inline: 8px;
  }
  .site-header.scrolled { min-height: 68px; }
  .logo { grid-column: 1; grid-row: 1; }
  .desktop-nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(2px, .55vw, 6px);
  }
  .desktop-nav a {
    flex: 0 0 auto;
    font-size: clamp(.47rem, .67vw, .55rem);
    white-space: nowrap;
  }
  .header-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 4px;
  }
  .careers-header-button,
  .menu-toggle,
  .mobile-menu { display: none; }
  .site-search-trigger { width: 34px; height: 38px; flex-basis: 34px; }
  .language-switch select { width: 90px; padding-inline: 7px 23px; }
  .header-actions .button-small {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }
  .header-actions .button-small span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .header-actions .button-small i { width: 25px; height: 25px; }
}

@media (min-width: 840px) and (max-width: 1023px) {
  .header-actions .button-small {
    width: auto;
    min-width: 0;
    gap: 5px;
    padding: 0 6px 0 9px;
    font-size: .55rem;
  }
  .header-actions .button-small span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .desktop-nav,
  .careers-header-button { display: none; }

  .site-header { grid-template-columns: 1fr auto; }
  .site-search-trigger,
  .header-actions .button { display: none; }
  .mobile-menu { display: block; }
  .menu-toggle {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(68, 7, 9, .32);
    background: rgba(247, 242, 233, .94);
    color: var(--burgundy);
  }
  .menu-toggle span {
    width: 23px;
    height: 2px;
    margin: 0;
    background: currentColor;
  }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .careers-header-button { display: none; }
}
