:root {
  --blue: #1782ff;
  --cyan: #00a5f7;
  --deep: #092b4b;
  --ink: #0c1c2b;
  --muted: #5f7183;
  --mist: #edf7ff;
  --paper: #f8fbff;
  --white: #ffffff;
  --line: rgba(11, 52, 87, .15);
  --soft-line: rgba(23, 130, 255, .15);
  --display: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 56px));
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

#ambientCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(248,251,255,.91), rgba(248,251,255,.91)),
    radial-gradient(circle at 12% 18%, rgba(23,130,255,.09), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(0,165,247,.08), transparent 30%);
}

.shell { width: var(--shell); margin-inline: auto; }
.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.kicker.light { color: #8ed3ff; }

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 100;
  background: transparent;
}
.page-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: min(1268px, calc(100vw - 28px));
  min-height: 64px;
  padding: 9px 12px 9px 16px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(23,130,255,.12);
  border-radius: 20px;
  background: rgba(248,251,255,.78);
  box-shadow: 0 18px 50px rgba(9,43,75,.08);
  backdrop-filter: blur(20px) saturate(140%);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(248,251,255,.93);
  box-shadow: 0 18px 54px rgba(9,43,75,.12);
}
.brand { width: 178px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-self: center; gap: 26px; }
.desktop-nav a,
.header-contact {
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--blue); }
.header-contact {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
}
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 164px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}
.hero::before {
  content: "";
  position: absolute;
  left: -9vw;
  top: 18%;
  width: 44vw;
  height: 44vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(23,130,255,.07);
  box-shadow: 0 0 0 70px rgba(23,130,255,.025), 0 0 0 140px rgba(23,130,255,.018);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 710px; }
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(48px, 6.1vw, 82px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-deck {
  max-width: 650px;
  margin: 30px 0 0;
  color: #334c63;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.52;
}
.hero-note { margin: 34px 0 12px; color: var(--muted); font-size: 13px; }
.branch-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.branch-signature a {
  padding: 10px 14px;
  border: 1px solid rgba(23,130,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: #21435f;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.branch-signature a:hover { color: white; background: var(--blue); transform: translateY(-2px); }

.hero-mark {
  position: relative;
  justify-self: end;
  width: min(430px, 36vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 28px 55px rgba(0,117,223,.12));
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.hero-mark img { width: 54%; opacity: .98; }
.orbit,
.axis { position: absolute; pointer-events: none; }
.orbit { inset: 7%; border: 1px solid rgba(23,130,255,.22); border-radius: 50%; }
.orbit-b { inset: 21%; border-style: dashed; animation: rotate 28s linear infinite reverse; }
.orbit-a { animation: rotate 34s linear infinite; }
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(23,130,255,.08);
}
.orbit-a::before { top: 8%; left: 28%; }
.orbit-a::after { right: 7%; bottom: 25%; background: var(--cyan); }
.orbit-b::before { left: -4px; top: 48%; }
.orbit-b::after { right: 22%; top: -4px; }
.axis { background: linear-gradient(90deg, transparent, rgba(23,130,255,.15), transparent); }
.axis-a { width: 112%; height: 1px; transform: rotate(22deg); }
.axis-b { width: 112%; height: 1px; transform: rotate(-37deg); }
.hero-coordinate {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  gap: 16px;
  color: #7890a6;
  font-size: 10px;
  letter-spacing: .14em;
}
.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7890a6;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-cue i { width: 44px; height: 1px; background: var(--blue); transform-origin: left; animation: breathe 2s ease-in-out infinite; }

.philosophy {
  min-height: 74vh;
  padding: 120px 0;
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.philosophy-index { align-self: start; padding-top: 8px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.philosophy-copy { max-width: 850px; }
.philosophy-copy .statement {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.philosophy-copy > p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.philosophy-copy a { color: var(--blue); font-weight: 700; border-bottom: 1px solid rgba(23,130,255,.35); }

.branches {
  position: relative;
  color: white;
  background: var(--deep);
  overflow: clip;
}
.branches::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(0,165,247,.15), transparent 28%),
    linear-gradient(110deg, transparent 0 64%, rgba(255,255,255,.025) 64% 65%, transparent 65%);
}
.branches-shell { position: relative; display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.branches-intro {
  position: sticky;
  top: 120px;
  align-self: start;
  min-height: 520px;
  padding: 118px 0 80px;
}
.branches-intro h2 {
  max-width: 420px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.branch-meter { width: 1px; height: 180px; margin: 54px 0 0 4px; background: rgba(255,255,255,.15); }
.branch-meter span { display: block; width: 100%; height: 0; background: var(--cyan); box-shadow: 0 0 18px rgba(0,165,247,.7); }
.branch-stories { border-left: 1px solid rgba(255,255,255,.14); }
.branch-story {
  position: relative;
  min-height: 78vh;
  padding: 110px 0 110px 70px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}
.branch-story:last-child { border-bottom: 0; }
.branch-number { align-self: start; color: #7ccaff; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.branch-text { position: relative; z-index: 2; max-width: 580px; }
.branch-label { margin: 0 0 17px; color: #8bd0ff; font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.branch-text h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.branch-text p:not(.branch-label) { max-width: 560px; margin: 26px 0 0; color: #c7d5e1; font-size: 17px; line-height: 1.65; }
.branch-text a { display: inline-block; margin-top: 28px; color: #93d6ff; font-size: 13px; font-weight: 700; }
.branch-art { position: absolute; right: -8%; top: 50%; width: 430px; height: 430px; transform: translateY(-50%) translate3d(0, var(--parallax-y, 0px), 0); opacity: .7; }
.ring { position: absolute; border: 1px solid rgba(111,205,255,.23); border-radius: 50%; }
.r1 { inset: 4%; }
.r2 { inset: 22%; }
.r3 { inset: 38%; background: rgba(0,165,247,.05); }
.trace { position: absolute; height: 1px; width: 80%; left: 10%; top: 50%; background: linear-gradient(90deg, transparent, #53c1ff, transparent); transform-origin: center; }
.t1 { transform: rotate(18deg); }
.t2 { transform: rotate(68deg); }
.t3 { transform: rotate(132deg); }
.plane { position: absolute; width: 58%; height: 58%; border: 1px solid rgba(111,205,255,.26); background: rgba(0,165,247,.025); transform: rotate(45deg); }
.p1 { left: 5%; top: 22%; }
.p2 { left: 24%; top: 12%; }
.p3 { left: 37%; top: 28%; }
.node { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: #71cbff; box-shadow: 0 0 0 9px rgba(113,203,255,.08); }
.n1 { left: 20%; top: 30%; }.n2 { right: 23%; top: 42%; }.n3 { left: 40%; bottom: 15%; }
.arc { position: absolute; border: 1px solid rgba(111,205,255,.24); border-radius: 50%; }
.a1 { inset: 4%; clip-path: inset(0 48% 0 0); }
.a2 { inset: 24%; clip-path: inset(0 0 0 48%); }
.signal { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, #68c8ff, transparent); }
.s1 { width: 90%; left: 5%; top: 30%; transform: rotate(-14deg); }
.s2 { width: 80%; left: 10%; top: 52%; transform: rotate(8deg); }
.s3 { width: 70%; left: 15%; top: 69%; transform: rotate(-29deg); }

.work { padding: 130px 0 144px; }
.section-heading { max-width: 760px; margin-bottom: 66px; }
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.section-heading > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.section-heading.light { color: white; }
.section-heading.light > p:last-child { color: #c7d8e6; }
.publication-list { border-top: 1px solid var(--line); }
.publication {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0,1fr) 70px 28px;
  gap: 24px;
  align-items: center;
  min-height: 126px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.publication::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,130,255,.08), rgba(0,165,247,.02));
  transform: translateX(-102%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.publication:hover::before { transform: translateX(0); }
.publication > span { position: relative; z-index: 1; }
.publication-type { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.publication-title { font-family: var(--display); font-size: clamp(22px, 2.3vw, 32px); line-height: 1.18; }
.publication-year { color: var(--muted); font-size: 12px; }
.publication-arrow { color: var(--blue); font-size: 18px; transition: transform .25s ease; }
.publication:hover .publication-arrow { transform: translate(4px,-4px); }
.inline-link { display: inline-block; margin-top: 32px; color: var(--blue); font-size: 13px; font-weight: 700; }

.programmes {
  position: relative;
  padding: 132px 0 148px;
  color: white;
  background: linear-gradient(135deg, #0a3155, #061f36 74%);
  overflow: hidden;
}
.programme-backdrop {
  position: absolute;
  left: -2vw;
  bottom: -10vw;
  color: rgba(255,255,255,.025);
  font-family: var(--sans);
  font-size: 29vw;
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.08em;
  user-select: none;
}
.programmes-shell { position: relative; z-index: 1; }
.programme-flow { display: grid; grid-template-columns: 1fr 120px 1fr; align-items: stretch; }
.programme-piece {
  min-height: 450px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}
.programme-piece.current { transform: translateY(22px); }
.programme-piece.next { transform: translateY(-18px); }
.programme-state { color: #85d2ff; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.programme-name { margin: 98px 0 14px; color: #cceaff; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.programme-piece h3 { max-width: 470px; margin: 0; font-family: var(--display); font-size: clamp(30px, 3.3vw, 44px); font-weight: 500; line-height: 1.12; letter-spacing: -.03em; }
.programme-piece > p:last-of-type { max-width: 490px; margin: 25px 0 0; color: #c3d3e0; font-size: 16px; line-height: 1.65; }
.programme-piece a { display: inline-block; margin-top: 28px; color: #8ed3ff; font-size: 13px; font-weight: 700; }
.programme-bridge { display: grid; place-items: center; }
.programme-bridge span { position: relative; width: 100%; height: 1px; background: rgba(142,211,255,.4); }
.programme-bridge span::before,
.programme-bridge span::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: #8ed3ff; transform: translateY(-50%); box-shadow: 0 0 0 8px rgba(142,211,255,.08); }
.programme-bridge span::before { left: -4px; }
.programme-bridge span::after { right: -4px; }

.diplomacy {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  color: white;
  background: #071d31;
}
.diplomacy-visual {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(23,130,255,.19), transparent 31%),
    radial-gradient(circle at 82% 82%, rgba(0,165,247,.12), transparent 34%),
    linear-gradient(145deg, #0a2740, #061a2c 76%);
}
.diplomacy-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom right, black, transparent 82%);
}
.diplomacy-collage {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  height: 690px;
}
.collage-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: #0a2238;
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  transform: translate3d(0, var(--collage-y, 0px), 0) rotate(var(--tilt, 0deg));
  transition: border-color .3s ease, box-shadow .3s ease;
}
.collage-shot:hover {
  border-color: rgba(145,215,255,.66);
  box-shadow: 0 30px 78px rgba(0,0,0,.34);
}
.collage-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.025);
}
.shot-roundtable { left: 1%; top: 7%; width: 58%; height: 32%; --tilt: -1.4deg; z-index: 3; }
.shot-moderator { right: 1%; top: 2%; width: 34%; height: 43%; --tilt: 1.8deg; z-index: 4; }
.shot-group { left: 13%; bottom: 4%; width: 51%; height: 29%; --tilt: .9deg; z-index: 4; }
.shot-stage { left: 3%; top: 45%; width: 29%; height: 21%; --tilt: -2deg; z-index: 5; }
.shot-discussion { right: 3%; bottom: 20%; width: 40%; height: 25%; --tilt: -1deg; z-index: 3; }
.shot-panel { right: 7%; bottom: 1%; width: 29%; height: 16%; --tilt: 2.2deg; z-index: 5; }
.collage-caption {
  position: absolute;
  left: 2%;
  bottom: 1.5%;
  z-index: 7;
  display: grid;
  gap: 5px;
  color: #a6daf9;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}
.diplomacy-content { padding: 102px clamp(38px, 6vw, 90px); }
.diplomacy-content h2 { max-width: 560px; margin: 0; font-family: var(--display); font-size: clamp(40px, 4.7vw, 62px); font-weight: 500; line-height: 1.05; letter-spacing: -.035em; }
.diplomacy-content > p:not(.kicker) { max-width: 540px; margin: 24px 0 0; color: #c9d8e4; font-size: 17px; line-height: 1.62; }
.event-line { max-width: 620px; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.event-line > span { color: #85d2ff; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.event-line h3 { margin: 12px 0 0; font-family: var(--display); font-size: 27px; font-weight: 500; line-height: 1.2; }
.event-line p { margin: 14px 0 0; color: #b9cbd9; font-size: 15px; line-height: 1.62; }
.event-line a { display: inline-block; margin-top: 15px; color: #8ed3ff; font-size: 12px; font-weight: 700; }

.closing {
  position: relative;
  min-height: 76vh;
  padding: 130px 0 86px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}
.closing-copy { max-width: 710px; }
.closing h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.3vw, 68px); font-weight: 500; line-height: 1.04; letter-spacing: -.04em; }
.closing-copy > p:not(.kicker) { margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.email-link { display: inline-block; margin-top: 30px; color: var(--blue); font-family: var(--display); font-size: clamp(25px, 3vw, 38px); border-bottom: 1px solid rgba(23,130,255,.35); }
.closing-symbol { justify-self: end; width: min(380px, 34vw); opacity: .16; transform: translate3d(0, var(--parallax-y, 0px), 0); }
.social-row { grid-column: 1 / -1; display: flex; gap: 28px; padding-top: 34px; border-top: 1px solid var(--line); }
.social-row a { color: #31536e; font-size: 13px; font-weight: 700; }
.social-row a:hover { color: var(--blue); }

.site-footer { padding: 34px 0 46px; border-top: 1px solid var(--line); }
.site-footer > img { width: 170px; }
.site-footer > p { margin: 22px 0 36px; color: var(--muted); font-size: 13px; }
.site-footer > div { display: flex; justify-content: space-between; color: #7890a6; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes breathe { 0%,100% { transform: scaleX(.45); opacity: .45; } 50% { transform: scaleX(1); opacity: 1; } }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 38px, 900px); }
  .desktop-nav, .header-contact { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; justify-self: end; padding: 10px 14px; border: 1px solid var(--soft-line); border-radius: 11px; color: var(--ink); background: rgba(255,255,255,.6); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: grid;
    place-items: center;
    background: rgba(248,251,255,.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: grid; gap: 18px; text-align: center; }
  .mobile-menu a { font-family: var(--display); font-size: 35px; }
  .hero { grid-template-columns: 1fr .7fr; gap: 26px; }
  .hero-mark { width: min(320px, 34vw); }
  .branches-shell { grid-template-columns: 1fr; gap: 0; }
  .branches-intro { position: relative; top: auto; min-height: 0; padding: 96px 0 56px; }
  .branch-meter { display: none; }
  .branch-stories { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .branch-story { min-height: 620px; padding-left: 0; }
  .branch-art { right: -18%; }
  .programme-flow { grid-template-columns: 1fr; gap: 20px; }
  .programme-piece.current, .programme-piece.next { transform: none; }
  .programme-bridge { height: 60px; }
  .programme-bridge span { width: 1px; height: 100%; }
  .programme-bridge span::before, .programme-bridge span::after { left: 50%; transform: translate(-50%,-50%); }
  .programme-bridge span::before { top: 0; }.programme-bridge span::after { top: 100%; }
  .diplomacy { grid-template-columns: 1fr; }
  .diplomacy-visual { min-height: 610px; padding: 34px; }
  .diplomacy-collage { height: 520px; }
  .closing { grid-template-columns: 1fr .55fr; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 28px); --header-h: 70px; }
  body { font-size: 15px; }
  .site-header { top: 8px; width: calc(100vw - 16px); min-height: 58px; padding: 7px 8px 7px 12px; border-radius: 15px; }
  .brand { width: 140px; }
  .menu-button { padding: 8px 11px; font-size: 12px; }
  .hero { min-height: 100svh; padding: 122px 0 68px; grid-template-columns: 1fr; align-content: center; gap: 40px; }
  .hero::before { min-width: 360px; min-height: 360px; width: 96vw; height: 96vw; left: -38vw; top: 25%; }
  .hero h1 { max-width: 96%; font-size: clamp(44px, 13vw, 64px); line-height: 1; }
  .hero-deck { font-size: 17px; }
  .hero-note { margin-top: 26px; }
  .branch-signature { gap: 7px; }
  .branch-signature a { padding: 8px 10px; font-size: 10px; }
  .hero-mark { position: absolute; right: -42px; bottom: 60px; width: 225px; opacity: .27; }
  .hero-coordinate { display: none; }
  .scroll-cue { bottom: 20px; }
  .philosophy { min-height: auto; padding: 94px 0; grid-template-columns: 1fr; gap: 34px; }
  .philosophy-copy .statement {
  font-size: 29px;
  line-height: 1.2;
}
  .philosophy-copy > p:last-child { font-size: 16px; }
  .branches-intro { padding: 86px 0 44px; }
  .branches-intro h2 { font-size: 39px; }
  .branch-story { min-height: 620px; padding: 76px 0; grid-template-columns: 42px 1fr; }
  .branch-text h3 { font-size: 37px; }
  .branch-text p:not(.branch-label) { font-size: 15px; }
  .branch-art { width: 330px; height: 330px; right: -54%; opacity: .4; }
  .work { padding: 96px 0 104px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 42px; }
  .section-heading > p:last-child { font-size: 16px; }
  .publication { grid-template-columns: 1fr 42px; gap: 8px 16px; min-height: 132px; padding: 22px 0; }
  .publication-type { grid-column: 1; }
  .publication-title { grid-column: 1; font-size: 23px; }
  .publication-year { grid-column: 2; grid-row: 1; text-align: right; }
  .publication-arrow { grid-column: 2; grid-row: 2; text-align: right; align-self: end; }
  .programmes { padding: 98px 0 112px; }
  .programme-piece { min-height: auto; padding: 28px 22px; border-radius: 22px; }
  .programme-name { margin-top: 70px; }
  .programme-piece h3 { font-size: 34px; }
  .diplomacy-visual { min-height: 470px; padding: 18px 12px; }
  .diplomacy-collage { height: 415px; }
  .collage-shot { border-radius: 12px; }
  .shot-roundtable { left: 0; top: 7%; width: 61%; height: 31%; }
  .shot-moderator { right: 0; top: 1%; width: 35%; height: 42%; }
  .shot-group { left: 8%; bottom: 3%; width: 55%; height: 29%; }
  .shot-stage { left: 1%; top: 44%; width: 31%; height: 20%; }
  .shot-discussion { right: 0; bottom: 20%; width: 43%; height: 24%; }
  .shot-panel { right: 4%; bottom: 1%; width: 31%; height: 15%; }
  .collage-caption { left: 1%; bottom: 1%; font-size: 8px; }
  .diplomacy-content { padding: 74px 20px 86px; }
  .diplomacy-content h2 { font-size: 43px; }
  .event-line { margin-top: 42px; }
  .closing { min-height: auto; padding: 102px 0 76px; grid-template-columns: 1fr; gap: 40px; }
  .closing h2 { font-size: 46px; }
  .closing-symbol { position: absolute; right: -90px; top: 90px; width: 260px; opacity: .08; }
  .social-row { flex-wrap: wrap; gap: 18px 26px; }
  .site-footer > div { gap: 20px; }
}

@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; }
}
