:root {
  --paper: #f7f5ef;
  --paper-2: #eeeee9;
  --ink: #0b2139;
  --muted: #5d6a76;
  --blue: #4da2ea;
  --blue-soft: #cfe8f7;
  --line: rgba(11, 33, 57, .17);
  --white: #fff;
  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(6rem, 11vw, 10rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; pointer-events: none; }
button, a, summary {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button > span, button > strong, button > i,
a > span, a > strong, a > i { pointer-events: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
  pointer-events: none;
}
.site-header.scrolled {
  background: rgba(247, 245, 239, .92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(100%, calc(var(--max) + (2 * var(--pad))));
  height: 5.5rem;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  align-items: center;
  gap: 2rem;
  pointer-events: auto;
}
.brand { width: 6.4rem; display: block; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(1rem, 2.3vw, 2.25rem); }
.desktop-nav a, .student-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.45rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  pointer-events: none;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.student-link { color: var(--ink); border-bottom: 1px solid currentColor; padding-bottom: .18rem; white-space: nowrap; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: 100vh;
  padding: clamp(8.5rem, 14vw, 11rem) var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: clamp(25rem, 50vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(77, 162, 234, .24);
  border-radius: 50%;
  top: -20%;
  right: -12%;
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  min-height: 34rem;
  position: relative;
  z-index: 1;
}
.eyebrow, .section-number {
  margin: 0 0 2rem;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { color: #346b98; }
.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.35rem, 7.4vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 760;
}
.hero h1 span { color: var(--blue); }
.hero-intro { margin: 2rem 0 .3rem; font-size: clamp(1.1rem, 1.7vw, 1.35rem); font-weight: 650; }
.hero-note { max-width: 38rem; margin: 0; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }
.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: .9rem 1.15rem;
  border: 1px solid var(--ink);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { min-width: 11rem; background: var(--ink); color: var(--white); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue); border-color: var(--blue); color: var(--ink); }
.button-secondary { border-color: var(--line); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--ink); }
.hero-student-link { display: none; }
.hero-mark { position: relative; display: grid; place-items: center; min-height: 25rem; }
.hero-mark img { width: min(24vw, 19rem); position: relative; }
.hero-mark-label {
  position: absolute;
  top: 9%;
  right: 0;
  writing-mode: vertical-rl;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.hero-route {
  position: absolute;
  inset: auto 0 4%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.hero-route i { height: 1px; background: var(--ink); position: relative; }
.hero-route i, .hero-route i::after { pointer-events: none; }
.hero-route i::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); position: absolute; top: -3px; left: 48%; }
.proof-row {
  max-width: var(--max);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.proof { min-height: 9.25rem; padding: 1.6rem 1.25rem 1.2rem 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.proof:not(:first-child) { padding-left: 1.25rem; }
.proof:last-child { border-right: 0; padding-right: 0; }
.proof strong { font-size: clamp(1.45rem, 2.4vw, 2.15rem); letter-spacing: -.045em; text-transform: uppercase; }
.proof span { color: var(--muted); font-size: .86rem; line-height: 1.3; max-width: 14rem; }
.proof-ieum strong { color: var(--blue); }

.section { max-width: var(--max); margin: 0 auto; padding: var(--section-space) var(--pad); }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; margin-bottom: clamp(3.5rem, 7vw, 7rem); }
.section-number { color: #4f6c83; }
.section-number.light { color: #a8c8de; }
.section h2, .network-section h2, .partner-section h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.story-layout {
  display: grid;
  grid-template-columns: .85fr 1fr .7fr;
  gap: clamp(1.25rem, 3.5vw, 3.5rem);
  align-items: start;
}
.story-copy { padding-top: 2rem; }
.story-copy p { color: var(--muted); max-width: 30rem; }
.story-copy .lead { color: var(--ink); font-size: clamp(1.6rem, 2.7vw, 2.5rem); line-height: 1.16; letter-spacing: -.035em; margin-top: 0; }
.story-copy .lead em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.founder-note { margin: 3rem 0 0; border-top: 1px solid var(--line); }
.founder-note div { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.founder-note dt { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.founder-note dd { margin: .25rem 0 0; font-weight: 650; }
figure { margin: 0; }
.story-main-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.88) contrast(.98); }
figcaption { margin-top: .65rem; font-size: .76rem; line-height: 1.4; color: var(--muted); }
.story-small-photo { margin-top: 14rem; }
.story-small-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.8); }
.timeline { list-style: none; padding: 0; margin: clamp(5rem, 9vw, 8.5rem) 0 0; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink); }
.timeline li { padding: 1.1rem 1rem 0 0; border-right: 1px solid var(--line); }
.timeline li:not(:first-child) { padding-left: 1rem; }
.timeline li:last-child { border-right: 0; }
.timeline span { color: var(--blue); font-size: 1.05rem; font-weight: 750; }
.timeline p { margin: 2rem 0 0; max-width: 12.5rem; font-size: .88rem; line-height: 1.4; }

.network-section { background: var(--ink); color: var(--white); padding: var(--section-space) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))); overflow: hidden; }
.network-intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; }
.ieum-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid rgba(255,255,255,.27); }
.ieum-item { padding: 2rem 1.5rem 3rem 0; border-right: 1px solid rgba(255,255,255,.2); }
.ieum-item:not(:first-child) { padding-left: 1.5rem; }
.ieum-item:last-child { border-right: 0; }
.ieum-item > span { display: block; color: var(--blue); font-size: clamp(4rem, 8vw, 7rem); line-height: 1; font-weight: 770; letter-spacing: -.08em; }
.ieum-item h3 { margin: 1rem 0 .45rem; font-size: 1.25rem; }
.ieum-item p { margin: 0; color: #afbbc6; font-size: .93rem; max-width: 15rem; }
.network-statement { max-width: 54rem; margin: clamp(3rem, 6vw, 5.5rem) 0; font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.4; color: #dce4e9; letter-spacing: -.02em; }
.visit-strip { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 1rem; align-items: end; }
.visit-strip figure { overflow: hidden; }
.visit-strip img { width: 100%; height: clamp(15rem, 28vw, 24rem); object-fit: cover; filter: saturate(.7); transition: filter .25s ease, transform .4s ease; }
.visit-strip figure:hover img { filter: saturate(1); transform: scale(1.015); }
.visit-strip figure:nth-child(1) img, .visit-strip figure:nth-child(2) img { object-position: center 42%; }
.visit-strip figcaption { color: #a8b8c5; }

.support-heading { display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; margin-bottom: clamp(4rem, 8vw, 7rem); }
.support-heading h2 span { color: var(--blue); }
.support-index { border-top: 1px solid var(--ink); }
.support-index details { border-bottom: 1px solid var(--line); }
.support-index summary {
  min-height: 7.6rem;
  display: grid;
  grid-template-columns: 5rem 1fr 2rem;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.support-index summary::-webkit-details-marker { display: none; }
.support-no { color: var(--blue); font-size: .83rem; font-weight: 750; letter-spacing: .12em; }
.support-index summary strong { display: block; font-size: clamp(1.35rem, 2.6vw, 2.1rem); letter-spacing: -.035em; }
.support-index summary small { display: block; margin-top: .2rem; color: var(--muted); font-size: .84rem; }
.support-index summary b { width: 1.25rem; height: 1.25rem; position: relative; }
.support-index summary b::before, .support-index summary b::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--ink); transition: transform .25s ease; }
.support-index summary b, .support-index summary b::before, .support-index summary b::after { pointer-events: none; }
.support-index summary b::after { transform: rotate(90deg); }
.support-index details[open] summary b::after { transform: rotate(0); }
.support-content { padding: 0 3rem 2.5rem 6rem; }
.support-content ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 1.4rem; }
.support-content li { position: relative; padding-left: 1rem; color: #324559; }
.support-content li::before { content: ""; position: absolute; left: 0; top: .7em; width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
.support-content li::before { pointer-events: none; }
.malta-gallery { margin-top: clamp(5rem, 9vw, 9rem); }
.malta-gallery img { width: 100%; object-fit: cover; filter: saturate(.9); }
.malta-main img { aspect-ratio: 16 / 9; object-position: center; }
.malta-main figcaption { margin-top: .8rem; font-size: .82rem; font-weight: 650; letter-spacing: .02em; }
.support-note { max-width: 48rem; margin: 2.25rem 0 0 auto; color: var(--muted); font-size: .88rem; border-left: 2px solid var(--blue); padding-left: 1rem; }

.partner-section { background: #102b49; color: var(--white); }
.partner-inner { max-width: var(--max); margin: 0 auto; padding: var(--section-space) var(--pad); }
.partner-heading { display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; }
.partner-heading h2 span { color: var(--blue); }
.partner-copy { width: min(48rem, 66%); margin: clamp(4rem, 8vw, 7rem) 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; color: #c5d0d9; }
.partner-copy p { margin: 0; }
.partner-quote { margin: clamp(5rem, 10vw, 9rem) 0; padding: clamp(2rem, 5vw, 4rem) 0; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3.8vw, 3.7rem); line-height: 1.25; font-weight: 400; }
.partner-quote strong { color: var(--blue); font-weight: 400; }
.partner-offer { display: grid; grid-template-columns: .5fr 1.5fr; gap: 2rem; }
.offer-label { margin: 0; color: #a8c8de; font-size: .76rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.partner-offer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .65rem; }
.partner-offer li { border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: .55rem .85rem; color: #dce4e9; font-size: .84rem; }
.partner-close { margin-top: clamp(5rem, 10vw, 9rem); display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.partner-close p { margin: 0; font-size: clamp(1.4rem, 2.8vw, 2.35rem); line-height: 1.25; letter-spacing: -.035em; }
.partner-close strong { color: var(--blue); }
.button-light { color: var(--white); border-color: rgba(255,255,255,.7); min-width: 13rem; }
.button-light:hover, .button-light:focus-visible { background: var(--white); color: var(--ink); }

.contact-section { padding-bottom: clamp(5rem, 8vw, 7rem); }
.contact-heading { display: grid; grid-template-columns: .45fr 1fr .75fr; gap: 2rem; align-items: end; }
.contact-heading > p:last-child { margin: 0; color: var(--muted); max-width: 25rem; }
.contact-grid { margin-top: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 6vw, 6rem); border-top: 1px solid var(--ink); padding-top: 2rem; }
.contact-person p { margin: .2rem 0; color: var(--muted); }
.contact-person .contact-name { color: var(--ink); font-size: 1.35rem; font-weight: 720; margin-bottom: .5rem; }
.contact-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-links a, .contact-links button { min-height: 7.5rem; padding: 1.15rem; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; text-decoration: none; display: grid; grid-template-columns: 1fr auto; align-content: space-between; cursor: pointer; transition: background .2s ease; }
.contact-links a:hover, .contact-links a:focus-visible, .contact-links button:hover, .contact-links button:focus-visible { background: var(--blue-soft); outline: 0; }
.contact-links span { grid-column: 1 / -1; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { align-self: end; font-size: clamp(.88rem, 1.4vw, 1.05rem); overflow-wrap: anywhere; }
.contact-links i { align-self: end; font-size: .75rem; font-style: normal; color: var(--muted); }
.social-row { margin-top: 4rem; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: flex-end; }
.social-row a { font-size: .88rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .25rem; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 2rem var(--pad); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.site-footer img { width: 5rem; height: auto; margin-bottom: 1rem; }
.site-footer p, .site-footer button { margin: 0; color: var(--muted); font-size: .72rem; }
.site-footer p span { margin: 0 .35rem; }
.footer-right { text-align: right; }
.footer-right button { border: 0; background: transparent; text-decoration: underline; text-underline-offset: .2rem; cursor: pointer; margin-bottom: .55rem; }
.privacy-dialog { width: min(42rem, calc(100% - 2rem)); border: 0; padding: clamp(1.5rem, 5vw, 3.5rem); background: var(--paper); color: var(--ink); box-shadow: 0 2rem 5rem rgba(11,33,57,.3); }
.privacy-dialog::backdrop { background: rgba(11,33,57,.64); backdrop-filter: blur(5px); }
.privacy-dialog h2 { margin: 0 0 2rem; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.05em; }
.privacy-dialog p { color: var(--muted); }
.privacy-dialog a { color: var(--ink); }
.dialog-close { position: absolute; top: 1rem; right: 1.2rem; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; padding: 0; border: 0; background: transparent; color: var(--ink); font-size: 2rem; cursor: pointer; }
.privacy-dialog.fallback-open { display: block; position: fixed; inset: 50% auto auto 50%; z-index: 300; max-height: calc(100vh - 2rem); overflow: auto; transform: translate(-50%, -50%); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; height: 4.8rem; }
  .desktop-nav, .desktop-student { display: none; }
  .brand { width: 5.5rem; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 2.75rem; height: 2.75rem; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 1.25rem; height: 1px; background: var(--ink); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 4.8rem 0 0; z-index: 101; background: var(--paper); padding: 2rem var(--pad) 4rem; flex-direction: column; gap: 0; overflow: auto; pointer-events: auto; }
  .mobile-nav[hidden] { display: none !important; pointer-events: none; }
  .mobile-nav:not([hidden]) { display: flex; }
  .mobile-nav a { min-height: 3.25rem; padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; font-size: clamp(1.35rem, 5vw, 2rem); font-weight: 680; text-decoration: none; letter-spacing: -.03em; }
  .mobile-nav .student-link { margin-top: 1.5rem; align-self: flex-start; font-size: .85rem; border-bottom-color: var(--ink); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 48rem; }
  .hero-mark { display: none; }
  .hero-student-link { min-height: 2.75rem; display: inline-flex; align-items: center; margin-top: 1.35rem; font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; text-underline-offset: .25rem; }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof { border-bottom: 1px solid var(--line); }
  .proof:nth-child(2) { border-right: 0; }
  .proof:nth-child(3), .proof:nth-child(4) { border-bottom: 0; }
  .proof:nth-child(3) { padding-left: 0; }
  .section-heading, .network-intro, .support-heading, .partner-heading, .partner-offer { grid-template-columns: 1fr; }
  .section-heading, .support-heading { gap: .5rem; }
  .story-layout { grid-template-columns: .8fr 1.2fr; }
  .story-copy { grid-row: span 2; }
  .story-small-photo { margin-top: 0; }
  .timeline { grid-template-columns: repeat(5, minmax(9rem, 1fr)); overflow-x: auto; padding-bottom: 1rem; }
  .ieum-grid { grid-template-columns: 1fr 1fr; }
  .ieum-item:nth-child(2) { border-right: 0; }
  .ieum-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .ieum-item:nth-child(3) { padding-left: 0; }
  .support-content ul { grid-template-columns: 1fr 1fr; }
  .partner-copy { width: 100%; }
  .contact-heading { grid-template-columns: 1fr 1fr; }
  .contact-heading .section-number { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --pad: 1.2rem; --section-space: 5.5rem; }
  html { scroll-padding-top: 5rem; }
  .hero { padding-top: 7.5rem; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.75rem); }
  .hero-intro { margin-top: 1.6rem; }
  .hero-note span { display: none; }
  .hero-note { max-width: 20rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-width: 0; gap: .5rem; padding: .8rem; }
  .proof { min-height: 8rem; padding-top: 1.25rem; }
  .proof:not(:first-child) { padding-left: 1rem; }
  .proof:nth-child(3) { padding-left: 0; }
  .proof strong { font-size: 1.25rem; }
  .proof span { font-size: .76rem; }
  .section-heading { margin-bottom: 3.5rem; }
  .story-layout { grid-template-columns: 1fr; }
  .story-copy { grid-row: auto; padding-top: 0; }
  .story-main-photo { margin-top: 1rem; }
  .story-small-photo { width: 100%; margin: 2rem 0 0; position: relative; border: 0; }
  .story-small-photo figcaption { margin-top: .65rem; padding-top: 0; }
  .story-main-photo img,
  .story-small-photo img,
  .visit-strip img,
  .visit-strip figure:nth-child(3) img,
  .malta-main img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
  .timeline { margin-top: 4.5rem; }
  .network-section { padding-left: var(--pad); padding-right: var(--pad); }
  .ieum-grid { grid-template-columns: 1fr; }
  .ieum-item, .ieum-item:not(:first-child) { padding: 1.5rem 0 2rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: 4rem 1fr; column-gap: 1rem; }
  .ieum-item:last-child { border-bottom: 0; }
  .ieum-item > span { grid-row: span 2; font-size: 4rem; }
  .ieum-item h3 { margin: .35rem 0 0; }
  .ieum-item p { max-width: 19rem; }
  .visit-strip { grid-template-columns: 1fr 1fr; }
  .visit-strip figure:nth-child(3) { grid-column: 1 / -1; }
  .visit-strip figure:hover img { transform: none; }
  .support-index summary { min-height: 6.5rem; grid-template-columns: 2.25rem 1fr 1.25rem; }
  .support-index summary strong { font-size: 1.35rem; }
  .support-index summary small { font-size: .78rem; }
  .support-content { padding: 0 0 2rem 3.25rem; }
  .support-content ul { grid-template-columns: 1fr; gap: .65rem; }
  .malta-main figcaption { margin-top: .65rem; }
  .partner-copy { grid-template-columns: 1fr; gap: 1rem; }
  .partner-quote { padding: 2.5rem 0; }
  .partner-close { align-items: stretch; flex-direction: column; }
  .partner-close .button { align-self: flex-start; }
  .contact-heading { grid-template-columns: 1fr; }
  .contact-heading .section-number { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-links { grid-template-columns: 1fr; }
  .contact-links a, .contact-links button { min-height: 6.5rem; }
  .social-row { justify-content: flex-start; gap: .25rem 2rem; }
  .social-row a { min-height: 2.75rem; display: inline-flex; align-items: center; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-right { text-align: left; }
  .footer-right button { min-height: 2.75rem; padding: .65rem 0; }
}

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