/* ==========================================================================
   Gaffiero Signature Editable — Research V82
   Premium Research page and research-record presentation.

   This file is intentionally isolated from the legacy Research cascade.
   Content remains readable before enhancement; JavaScript only adds state,
   filtering, disclosure and restrained explanatory motion.
   ========================================================================== */

:root {
  /* Compatibility aliases for the earlier portfolio component. */
  --gfr-font-serif: var(--gfr-serif);
  --gfr-font-sans: var(--gfr-sans);

  /* V82 uses the established site palette and motion grammar only. */
  --gfr-v82-ink: var(--gfr-ink, #071913);
  --gfr-v82-green: var(--gfr-green, #0b241c);
  --gfr-v82-green-2: var(--gfr-green-2, #12352b);
  --gfr-v82-green-3: var(--gfr-green-3, #1d4d40);
  --gfr-v82-gold: var(--gfr-gold, #d7ad38);
  --gfr-v82-gold-soft: var(--gfr-gold-soft, #e8cc78);
  --gfr-v82-cream: var(--gfr-cream, #f6f1e9);
  --gfr-v82-cream-2: var(--gfr-cream-2, #fbf8f3);
  --gfr-v82-paper: var(--gfr-paper, #fffdf9);
  --gfr-v82-text: var(--gfr-text, #14241e);
  --gfr-v82-muted: var(--gfr-muted, #66736d);
  --gfr-v82-line: var(--gfr-line, rgba(157, 122, 30, .25));
  --gfr-v82-serif: var(--gfr-serif, "Iowan Old Style", Georgia, serif);
  --gfr-v82-sans: var(--gfr-sans, Inter, ui-sans-serif, sans-serif);
  --gfr-v82-ease: cubic-bezier(.22, .61, .36, 1);
  --gfr-v82-ease-emphasis: cubic-bezier(.2, .72, .18, 1);
  --gfr-v82-shadow: 0 24px 70px rgba(2, 18, 13, .13);
  --gfr-v82-shadow-dark: 0 30px 80px rgba(0, 0, 0, .24);
}

body.gfr-signature-theme.page-template-page-research-php,
body.gfr-signature-theme.page-template-page-research,
body.gfr-signature-theme.single-research {
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--gfr-v82-text);
  background: var(--gfr-v82-cream-2);
  transform: none !important;
  text-rendering: optimizeLegibility;
}

html.gfr-v82-sheet-open,
body.gfr-signature-theme.page-template-page-research-php.gfr-v82-sheet-open,
body.gfr-signature-theme.page-template-page-research.gfr-v82-sheet-open,
body.gfr-signature-theme.single-research.gfr-v82-sheet-open,
body.gfr-signature-theme.gfr-research-v82-sheet-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.gfr-research-v82-page,
.gfr-project-v82-page {
  overflow-x: hidden;
  overflow: clip;
}

.gfr-research-v82-page *,
.gfr-project-v82-page * {
  min-width: 0;
}

.gfr-research-v82-page [hidden],
.gfr-project-v82-page [hidden],
.gfr-research-v82-sheet[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Shared V82 section and heading grammar
   -------------------------------------------------------------------------- */

.gfr-research-v82-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(110px, 8vw, 140px);
  border-bottom: 1px solid rgba(151, 109, 17, .18);
}

.gfr-research-v82-section--cream {
  color: var(--gfr-v82-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(18, 73, 57, .045), transparent 28%),
    linear-gradient(145deg, var(--gfr-v82-paper) 0%, #f5eee3 100%);
}

.gfr-research-v82-section--green {
  color: #f7f2e7;
  border-bottom-color: rgba(215, 173, 56, .28);
  background:
    radial-gradient(circle at 92% 14%, rgba(53, 116, 91, .28), transparent 32%),
    linear-gradient(135deg, #061b14 0%, #0b3327 100%);
}

.gfr-research-v82-section--ink {
  color: #f7f2e7;
  border-bottom-color: rgba(215, 173, 56, .3);
  background:
    radial-gradient(circle at 8% 12%, rgba(42, 102, 78, .22), transparent 30%),
    radial-gradient(circle at 94% 82%, rgba(215, 173, 56, .075), transparent 28%),
    linear-gradient(145deg, #03130e 0%, #071f18 58%, #041711 100%);
}

/* Exact dynamic numeral treatment established by About V79. */
.gfr-numbered-section {
  position: relative;
  isolation: isolate;
}

.gfr-numbered-section::before {
  content: attr(data-gfr-section-number);
  position: absolute;
  z-index: 0;
  top: clamp(54px, 6vw, 92px);
  left: max(24px, calc((100% - 1260px) / 2));
  display: block;
  color: rgba(135, 94, 9, .09);
  font-family: var(--gfr-v82-serif);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: 0;
  pointer-events: none;
}

.gfr-numbered-section[data-number]::before {
  content: attr(data-number);
}

.gfr-numbered-section[data-gfr-section-number]::before {
  content: attr(data-gfr-section-number);
}

.gfr-numbered-section::after {
  content: none;
  display: none;
}

.gfr-numbered-section--right::before {
  right: max(24px, calc((100% - 1260px) / 2));
  left: auto;
}

.gfr-numbered-section--dark::before,
.gfr-research-v82-section--green.gfr-numbered-section::before,
.gfr-research-v82-section--ink.gfr-numbered-section::before {
  color: rgba(236, 196, 85, .12);
}

.gfr-numbered-section > .gfr-shell {
  position: relative;
  z-index: 1;
}

.gfr-editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(38px, 4.8vw, 58px);
}

.gfr-editorial-heading > div {
  max-width: 890px;
}

.gfr-editorial-heading .gfr-eyebrow {
  margin: 0 0 12px;
  color: #986b11;
  font-family: var(--gfr-v82-sans);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .115em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gfr-editorial-heading h2 {
  max-width: 890px;
  margin: 0;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .98;
  text-wrap: balance;
}

.gfr-editorial-heading > p {
  max-width: 560px;
  margin: 0;
  padding-left: 25px;
  color: #4e6259;
  border-left: 1px solid rgba(151, 109, 17, .34);
  font-family: var(--gfr-v82-serif);
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.gfr-editorial-heading--light .gfr-eyebrow,
.gfr-research-v82-section--green .gfr-editorial-heading .gfr-eyebrow,
.gfr-research-v82-section--ink .gfr-editorial-heading .gfr-eyebrow {
  color: #e4b845;
}

.gfr-editorial-heading--light h2,
.gfr-research-v82-section--green .gfr-editorial-heading h2,
.gfr-research-v82-section--ink .gfr-editorial-heading h2 {
  color: #fffdf7;
}

.gfr-editorial-heading--light > p,
.gfr-research-v82-section--green .gfr-editorial-heading > p,
.gfr-research-v82-section--ink .gfr-editorial-heading > p {
  color: rgba(242, 245, 239, .76);
  border-left-color: rgba(225, 184, 66, .58);
}

/* Reusable accessible control finish. */
.gfr-research-v82-page :where(
  a,
  button,
  input,
  select,
  summary
):focus-visible,
.gfr-project-v82-page :where(
  a,
  button,
  input,
  select,
  summary
):focus-visible,
.gfr-research-v82-sheet :where(a, button):focus-visible {
  outline: 2px solid #e9bc4b;
  outline-offset: 5px;
}

.gfr-research-v82-page button,
.gfr-research-v82-page select,
.gfr-research-v82-page input,
.gfr-project-v82-page button,
.gfr-project-v82-page select {
  min-height: 44px;
}

/* --------------------------------------------------------------------------
   Research hero and research-system formation
   -------------------------------------------------------------------------- */

.gfr-research-v82-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #f7f2e7;
  border-bottom: 1px solid rgba(227, 185, 75, .72);
  background:
    radial-gradient(circle at 78% 42%, rgba(31, 91, 69, .52), transparent 34%),
    radial-gradient(circle at 4% 20%, rgba(210, 169, 55, .08), transparent 28%),
    linear-gradient(118deg, #03150f 0%, #06261d 54%, #0a3729 100%);
}

.gfr-research-v82-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .16) .55px, transparent .55px);
  background-size: 5px 5px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.gfr-research-v82-hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(225, 178, 61, .18) 12%,
    #e2b64c 48%,
    #f0d486 50%,
    #e2b64c 52%,
    rgba(225, 178, 61, .18) 88%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(228, 184, 72, .18);
}

.gfr-research-v82-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: center;
  min-height: 660px;
  padding-block: 70px 76px;
}

.gfr-research-v82-hero__copy {
  max-width: 730px;
}

.gfr-research-v82-hero__copy .gfr-eyebrow {
  margin: 0 0 18px;
  color: var(--gfr-v82-gold);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .115em;
}

.gfr-research-v82-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(3.8rem, 6.1vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .9;
  text-wrap: balance;
}

.gfr-research-v82-hero__copy .gfr-lead,
.gfr-research-v82-hero__copy > p:not(.gfr-eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(247, 244, 238, .82);
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.gfr-research-v82-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.gfr-research-v82-system {
  position: relative;
  width: min(100%, 610px);
  min-height: 520px;
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(225, 184, 66, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(61, 132, 103, .2), transparent 27%),
    radial-gradient(circle, rgba(215, 173, 56, .055) 0 1px, transparent 1.5px) 0 0 / 22px 22px,
    rgba(2, 24, 18, .36);
  box-shadow:
    inset 0 0 0 38px rgba(215, 173, 56, .025),
    inset 0 0 0 98px rgba(215, 173, 56, .018),
    0 32px 90px rgba(0, 0, 0, .2);
}

.gfr-research-v82-system::before,
.gfr-research-v82-system::after {
  content: "";
  position: absolute;
  inset: 15%;
  z-index: -1;
  border: 1px solid rgba(225, 184, 66, .24);
  border-radius: 50%;
  pointer-events: none;
}

.gfr-research-v82-system::after {
  inset: 28%;
  border-style: dashed;
  opacity: .72;
}

.gfr-research-v82-system__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 29%;
  aspect-ratio: 1;
  color: #f4d474;
  border: 1px solid rgba(231, 190, 70, .72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 226, 128, .13), transparent 38%),
    rgba(3, 31, 23, .92);
  box-shadow:
    0 0 0 11px rgba(216, 178, 71, .055),
    0 24px 70px rgba(0, 0, 0, .28);
  transform: translate(-50%, -50%);
}

.gfr-research-v82-system__core span,
.gfr-research-v82-system__core strong {
  max-width: 80%;
  color: #f5eee1;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(.82rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.gfr-research-v82-system__process,
.gfr-research-v82-system__domain {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 10px 13px;
  color: #f7f2e7;
  border: 1px solid rgba(225, 184, 66, .42);
  border-radius: 999px;
  background: rgba(3, 31, 23, .92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  font-family: var(--gfr-v82-sans);
  font-size: clamp(.62rem, .8vw, .73rem);
  font-weight: 750;
  letter-spacing: .065em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition:
    color .22s ease,
    border-color .22s ease,
    background .22s ease,
    opacity .22s ease,
    transform .22s ease;
}

button.gfr-research-v82-system__process,
button.gfr-research-v82-system__domain {
  cursor: pointer;
}

.gfr-research-v82-system__process {
  color: #f5d77d;
  border-color: rgba(234, 195, 82, .62);
}

.gfr-research-v82-system__process[data-process="interpretation"] {
  --gfr-system-form-delay: 1.1s;
  top: 25%;
  left: 50%;
}

.gfr-research-v82-system__process[data-process="decision"] {
  --gfr-system-form-delay: 1.65s;
  top: 60%;
  left: 70%;
}

.gfr-research-v82-system__process[data-process="action"] {
  --gfr-system-form-delay: 2.2s;
  top: 60%;
  left: 30%;
}

.gfr-research-v82-system__domain[data-domain="pain"] {
  --gfr-system-form-delay: 5s;
  top: 11%;
  left: 25%;
}

.gfr-research-v82-system__domain[data-domain="vaccination"] {
  --gfr-system-form-delay: 5.5s;
  top: 12%;
  left: 76%;
}

.gfr-research-v82-system__domain[data-domain="breast-screening"] {
  --gfr-system-form-delay: 6s;
  top: 47%;
  left: 89%;
}

.gfr-research-v82-system__domain[data-domain="womens-health"] {
  --gfr-system-form-delay: 6.5s;
  top: 87%;
  left: 68%;
}

.gfr-research-v82-system__domain[data-domain="eating-disorders"] {
  --gfr-system-form-delay: 7s;
  top: 84%;
  left: 27%;
}

.gfr-research-v82-system__connection {
  --gfr-connection-angle: 0deg;
  --gfr-connection-length: 34%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: var(--gfr-connection-length);
  height: 1px;
  transform: rotate(var(--gfr-connection-angle));
  transform-origin: left center;
  pointer-events: none;
}

.gfr-research-v82-system__connection::before,
.gfr-research-v82-system__connection::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
}

.gfr-research-v82-system__connection::before {
  background: linear-gradient(90deg, rgba(225, 184, 66, .06), rgba(225, 184, 66, .58));
}

.gfr-research-v82-system__connection::after {
  width: 10px;
  height: 10px;
  top: -4px;
  left: 0;
  border-radius: 50%;
  background: #f1c95a;
  box-shadow: 0 0 18px rgba(241, 201, 90, .72);
  opacity: 0;
}

.gfr-research-v82-system__process:hover,
.gfr-research-v82-system__process:focus-visible,
.gfr-research-v82-system__domain:hover,
.gfr-research-v82-system__domain:focus-visible,
.gfr-research-v82-system__process.is-gfr-v82-active,
.gfr-research-v82-system__domain.is-gfr-v82-active,
.gfr-research-v82-system__process.is-selected,
.gfr-research-v82-system__domain.is-selected {
  color: var(--gfr-v82-ink);
  border-color: #f0cc6a;
  background: #e4b94c;
  transform: translate(-50%, -50%) scale(1.025);
}

.gfr-research-v82-system:has(:is(.is-selected, .is-gfr-v82-active))
  :is(.gfr-research-v82-system__process, .gfr-research-v82-system__domain):not(:is(.is-selected, .is-gfr-v82-active)) {
  opacity: .58;
}

.gfr-research-v82-system
  .gfr-research-v82-system__connection:is(.is-selected, .is-gfr-v82-active)::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(241, 201, 90, .32), #f1c95a);
  box-shadow: 0 0 12px rgba(241, 201, 90, .42);
}

.gfr-research-v82-hero.is-gfr-v82-active .gfr-research-v82-system,
.gfr-research-v82-system.is-gfr-v82-active,
.gfr-research-v82-system.is-ready {
  border-color: rgba(235, 197, 88, .56);
}

.gfr-research-v82-hero.is-gfr-v82-in-view .gfr-research-v82-system::before,
.gfr-research-v82-system.is-gfr-v82-in-view::before {
  opacity: 1;
}

.gfr-research-v82-hero.is-gfr-v82-settled
  .gfr-research-v82-system
  :is(.gfr-research-v82-system__core, .gfr-research-v82-system__process, .gfr-research-v82-system__domain),
.gfr-research-v82-system.is-gfr-v82-settled
  :is(.gfr-research-v82-system__core, .gfr-research-v82-system__process, .gfr-research-v82-system__domain),
.gfr-research-v82-system.is-settled
  :is(.gfr-research-v82-system__core, .gfr-research-v82-system__process, .gfr-research-v82-system__domain) {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   01 — Research agenda
   -------------------------------------------------------------------------- */

.gfr-research-v82-programmes {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
}

.gfr-research-v82-programme {
  position: relative;
  display: grid;
  grid-template-columns: minmax(105px, .22fr) minmax(0, 1.08fr) minmax(280px, .7fr);
  grid-template-areas: "number copy diagram";
  gap: clamp(28px, 4.5vw, 70px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(32px, 4.5vw, 58px);
  color: #f7f2e7;
  border: 1px solid rgba(177, 130, 27, .48);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 105, 83, .38), transparent 34%),
    linear-gradient(145deg, #0b3428, #061f18);
  box-shadow: var(--gfr-v82-shadow);
  transition:
    transform .26s var(--gfr-v82-ease),
    border-color .26s ease,
    box-shadow .26s ease;
}

.gfr-research-v82-programme:nth-child(even) {
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.08fr) minmax(105px, .22fr);
  grid-template-areas: "diagram copy number";
}

.gfr-research-v82-programme::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 190, 74, .55), transparent);
}

.gfr-research-v82-programme__number {
  grid-area: number;
  align-self: start;
  color: rgba(236, 196, 85, .56);
  font-family: var(--gfr-v82-serif);
  font-size: clamp(4.4rem, 7vw, 7.6rem);
  font-weight: 400;
  line-height: .8;
}

.gfr-research-v82-programme__copy {
  grid-area: copy;
  align-self: center;
}

.gfr-research-v82-programme h3 {
  max-width: 700px;
  margin: 0;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}

.gfr-research-v82-programme__question {
  max-width: 720px;
  margin: 24px 0 0;
  padding-left: 23px;
  color: #f0cc6a;
  border-left: 1px solid rgba(232, 190, 74, .58);
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  line-height: 1.58;
}

.gfr-research-v82-programme__copy > p:not(.gfr-research-v82-programme__question) {
  max-width: 730px;
  margin: 22px 0 0;
  color: rgba(246, 242, 231, .76);
  line-height: 1.72;
}

.gfr-research-v82-programme__copy > p.gfr-research-v82-programme__count {
  margin-top: 21px;
  color: #e4bd50;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.gfr-research-v82-programme__tags,
.gfr-research-v82-programme__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.gfr-research-v82-programme__tags span,
.gfr-research-v82-programme__areas span,
.gfr-research-v82-domain__programmes span {
  padding: 7px 10px;
  color: #f0cc6a;
  border: 1px solid rgba(220, 180, 67, .34);
  border-radius: 999px;
  background: rgba(4, 28, 21, .32);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gfr-research-v82-programme__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 26px;
  color: #f0cc6a;
  border-bottom: 1px solid rgba(240, 204, 106, .54);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-programme__action .gfr-icon {
  width: 18px;
  height: 18px;
  transition: transform .22s ease;
}

.gfr-research-v82-programme__diagram {
  grid-area: diagram;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(225, 184, 66, .28);
  border-radius: 9px;
  background:
    linear-gradient(rgba(222, 183, 73, .09) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(222, 183, 73, .09) 1px, transparent 1px) 0 0 / 34px 34px,
    rgba(1, 20, 15, .35);
}

.gfr-research-v82-programme__diagram::before,
.gfr-research-v82-programme__diagram::after {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 184, 66, .45);
  border-radius: 50%;
}

.gfr-research-v82-programme__diagram::after {
  width: 24%;
  background: radial-gradient(circle, rgba(240, 204, 106, .32), transparent 68%);
}

.gfr-research-v82-programme__diagram span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8c45d;
  box-shadow: 0 0 14px rgba(234, 194, 82, .58);
}

.gfr-research-v82-programme__diagram span:nth-child(1) { top: 24%; left: 29%; }
.gfr-research-v82-programme__diagram span:nth-child(2) { top: 35%; right: 24%; }
.gfr-research-v82-programme__diagram span:nth-child(3) { right: 35%; bottom: 23%; }
.gfr-research-v82-programme__diagram span:nth-child(4) { bottom: 31%; left: 22%; }

/* --------------------------------------------------------------------------
   02 — Research domains
   -------------------------------------------------------------------------- */

.gfr-research-v82-domains {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: clamp(18px, 2.2vw, 28px);
}

.gfr-research-v82-domain {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  color: #f7f2e7;
  border: 1px solid rgba(219, 179, 66, .38);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 10%, rgba(54, 124, 94, .32), transparent 38%),
    linear-gradient(180deg, rgba(13, 53, 41, .98), rgba(3, 30, 22, .98));
  box-shadow: 0 22px 56px rgba(0, 0, 0, .16);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.gfr-research-v82-domain:first-child,
.gfr-research-v82-domain--featured {
  grid-row: 1 / 3;
  min-height: 620px;
  justify-content: flex-end;
}

.gfr-research-v82-domain::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background:
    radial-gradient(circle at 68% 22%, rgba(232, 190, 74, .28), transparent 2%, transparent 3%),
    linear-gradient(132deg, transparent 55%, rgba(232, 190, 74, .11) 55.2%, transparent 55.5%);
}

.gfr-research-v82-domain > * {
  position: relative;
  z-index: 1;
}

.gfr-research-v82-domain__index {
  margin: 0 0 auto;
  color: #e4b845;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.gfr-research-v82-domain h3 {
  max-width: 620px;
  margin: 22px 0 15px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.gfr-research-v82-domain > p {
  max-width: 640px;
  margin: 0;
  color: rgba(246, 242, 231, .74);
  line-height: 1.66;
}

.gfr-research-v82-domain__programmes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.gfr-research-v82-domain__question {
  margin-top: 23px;
  padding-top: 18px;
  color: rgba(255, 250, 238, .88);
  border-top: 1px solid rgba(219, 179, 66, .25);
  font-family: var(--gfr-v82-serif);
  font-size: 1rem;
  line-height: 1.55;
}

.gfr-research-v82-domain__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
  color: #e4bd50;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.gfr-research-v82-domain__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: #f0cc6a;
  border-bottom: 1px solid rgba(240, 204, 106, .5);
}

/* --------------------------------------------------------------------------
   03 — Featured projects
   -------------------------------------------------------------------------- */

.gfr-research-v82-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .78fr);
  grid-template-rows: repeat(2, minmax(270px, auto));
  gap: clamp(22px, 2.6vw, 30px);
}

.gfr-research-v82-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  min-width: 0;
  overflow: hidden;
  color: #15382d;
  border: 1px solid rgba(215, 173, 56, .3);
  border-radius: 10px;
  background: var(--gfr-v82-paper);
  box-shadow: 0 22px 56px rgba(12, 45, 34, .1), inset 0 1px rgba(255, 255, 255, .78);
  isolation: isolate;
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.gfr-research-v82-featured::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 132, 25, .42), transparent);
}

.gfr-research-v82-featured--lead,
.gfr-research-v82-featured:first-child {
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
}

.gfr-research-v82-featured__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #143c30;
}

.gfr-research-v82-featured__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(3, 22, 16, .66));
}

.gfr-research-v82-featured__image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.gfr-research-v82-featured--lead .gfr-research-v82-featured__image img,
.gfr-research-v82-featured:first-child .gfr-research-v82-featured__image img {
  min-height: 360px;
}

.gfr-research-v82-featured__body {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 32px);
  background: linear-gradient(180deg, #fffdf8 0%, #f9f3e8 100%);
}

.gfr-research-v82-featured--lead .gfr-research-v82-featured__body,
.gfr-research-v82-featured:first-child .gfr-research-v82-featured__body {
  padding: clamp(34px, 3.8vw, 48px);
}

.gfr-research-v82-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0 0 clamp(15px, 1.4vw, 20px);
  color: #815d10;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gfr-research-v82-featured__meta span + span::before {
  content: "·";
  margin-right: 14px;
  color: #c3a465;
}

.gfr-research-v82-featured h3 {
  margin: 0 0 14px;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.45rem, 2.25vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.gfr-research-v82-featured__question {
  margin: 0;
  color: #3f594f;
  font-family: var(--gfr-v82-serif);
  font-size: 1rem;
  line-height: 1.58;
}

.gfr-research-v82-featured__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 23px 0 0;
  border-block: 1px solid rgba(151, 109, 17, .18);
}

.gfr-research-v82-featured__facts > div {
  padding: 13px 15px 13px 0;
}

.gfr-research-v82-featured__facts dt {
  color: #8d681b;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-featured__facts dd {
  margin: 4px 0 0;
  color: #40564d;
  font-family: var(--gfr-v82-serif);
  font-size: .88rem;
  line-height: 1.4;
}

.gfr-research-v82-featured__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 25px;
}

.gfr-research-v82-featured-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  color: #345147;
  border-block: 1px solid rgba(151, 109, 17, .28);
  background: linear-gradient(90deg, rgba(215, 173, 56, .045), transparent);
}

.gfr-research-v82-featured-empty p {
  max-width: 640px;
  margin: 0;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.gfr-research-v82-featured-empty .gfr-text-link {
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   04 — Portfolio Explorer
   -------------------------------------------------------------------------- */

.gfr-research-v82-explorer {
  color: #f7f2e7;
}

.gfr-research-v82-explorer__filters {
  margin-top: 34px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(205, 165, 64, .36);
  border-radius: 10px;
  background: rgba(0, 17, 14, .32);
  box-shadow: var(--gfr-v82-shadow-dark);
}

.gfr-research-v82-explorer__filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.gfr-research-v82-explorer__filter-grid label,
.gfr-research-v82-explorer .gfr-portfolio-filters label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.gfr-research-v82-explorer__filter-grid label > span,
.gfr-research-v82-explorer .gfr-portfolio-filters label > span {
  color: #d8b454;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gfr-research-v82-explorer :where(input, select) {
  width: 100%;
  min-height: 48px;
  padding: 10px 38px 10px 13px;
  color: #fff;
  border: 1px solid rgba(205, 165, 64, .38);
  border-radius: 5px;
  background: #052a23;
  box-shadow: none;
}

.gfr-research-v82-explorer input {
  padding-right: 13px;
}

.gfr-research-v82-explorer input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.gfr-research-v82-explorer__active,
.gfr-research-v82-explorer .gfr-portfolio-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(205, 165, 64, .22);
}

.gfr-research-v82-explorer__active > span,
.gfr-research-v82-explorer .gfr-portfolio-active-filters > span {
  color: rgba(247, 242, 231, .64);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-explorer__chips,
.gfr-research-v82-explorer .gfr-portfolio-active-filters > div {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px;
}

.gfr-research-v82-explorer__chips button,
.gfr-research-v82-explorer .gfr-portfolio-active-filters > div button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 11px;
  color: #f5d77d;
  border: 1px solid rgba(205, 165, 64, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  font-size: .72rem;
}

.gfr-research-v82-explorer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 2px 20px;
  color: rgba(247, 242, 231, .66);
  font-size: .82rem;
}

.gfr-research-v82-explorer__toolbar p {
  margin: 0;
}

.gfr-research-v82-explorer__toolbar strong {
  color: #f0cc6a;
  font-family: var(--gfr-v82-serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.gfr-research-v82-explorer__project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gfr-research-v82-explorer__project,
.gfr-research-v82-explorer .gfr-portfolio-result {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 245px;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 30px);
  color: #fff;
  border: 1px solid rgba(205, 165, 64, .26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 3%, rgba(52, 119, 91, .22), transparent 35%),
    rgba(0, 19, 15, .48);
  text-align: left;
  cursor: pointer;
  transition:
    opacity .28s ease,
    transform .28s var(--gfr-v82-ease),
    border-color .22s ease,
    background .22s ease;
}

.gfr-research-v82-explorer__project.is-filtering {
  opacity: .35;
  transform: translateY(5px);
}

.gfr-research-v82-explorer__project-list.is-gfr-v82-filtering
  .gfr-research-v82-explorer__project,
.gfr-research-v82-explorer__project-list.is-gfr-v82-filtering
  .gfr-portfolio-result {
  opacity: .28;
  transform: translateY(5px);
  pointer-events: none;
}

.gfr-research-v82-explorer__project-list.is-gfr-v82-filtering
  :is(.gfr-research-v82-explorer__project, .gfr-portfolio-result).is-gfr-v82-match {
  opacity: 1;
  transform: none;
}

.gfr-research-v82-explorer__project-list.is-gfr-v82-filtered
  :is(.gfr-research-v82-explorer__project, .gfr-portfolio-result).is-gfr-v82-match {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.gfr-research-v82-explorer__project-list.is-gfr-v82-filtered
  :is(.gfr-research-v82-explorer__project, .gfr-portfolio-result):not(.is-gfr-v82-match) {
  display: none;
}

.gfr-research-v82-explorer__project.is-selected,
.gfr-research-v82-explorer__project.is-gfr-v82-active,
.gfr-research-v82-explorer .gfr-portfolio-result.is-selected {
  border-color: #e5ba49;
  background:
    radial-gradient(circle at 94% 3%, rgba(67, 145, 111, .28), transparent 35%),
    rgba(14, 70, 55, .68);
  box-shadow: inset 3px 0 0 #e5ba49;
}

.gfr-research-v82-explorer__project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin-bottom: 16px;
  color: #e5ba49;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-explorer__project h3 {
  margin: 0 0 13px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.13;
}

.gfr-research-v82-explorer__project > p {
  margin: 0;
  color: rgba(247, 242, 231, .72);
  font-size: .91rem;
  line-height: 1.6;
}

.gfr-research-v82-explorer__project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: 22px 0 0;
}

.gfr-research-v82-explorer__project-facts > div {
  min-width: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(205, 165, 64, .18);
}

.gfr-research-v82-explorer__project-facts dt {
  color: rgba(240, 204, 106, .76);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.gfr-research-v82-explorer__project-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 247, .86);
  font-size: .79rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.gfr-research-v82-explorer__project-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  color: #f0cc6a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-explorer__empty {
  grid-column: 1 / -1;
  padding: clamp(38px, 5vw, 68px);
  border: 1px solid rgba(205, 165, 64, .3);
  border-radius: 8px;
  background: rgba(0, 19, 15, .4);
  text-align: center;
}

.gfr-research-v82-explorer__empty h3 {
  margin: 0 0 12px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
}

.gfr-research-v82-explorer__empty p {
  max-width: 580px;
  margin: 0 auto 24px;
  color: rgba(247, 242, 231, .72);
}

/* Premium project detail sheet. */
.gfr-research-v82-sheet {
  position: absolute;
  z-index: 10020;
  top: var(--gfr-v82-sheet-top, 0px);
  right: 0;
  bottom: auto;
  left: 0;
  display: grid;
  width: 100%;
  height: 100dvh;
  justify-items: end;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .32s linear, opacity .32s ease;
}

.gfr-research-v82-sheet.is-gfr-v82-open,
.gfr-research-v82-sheet.is-open,
.gfr-research-v82-sheet[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.gfr-research-v82-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 14, 10, .76);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.gfr-research-v82-sheet__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 72px));
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: #f7f2e7;
  border-left: 1px solid rgba(229, 186, 73, .52);
  background:
    radial-gradient(circle at 96% 0%, rgba(52, 119, 91, .32), transparent 33%),
    linear-gradient(145deg, #08291f 0%, #031711 100%);
  box-shadow: -28px 0 90px rgba(0, 0, 0, .34);
  transform: translateX(100%);
  transition: transform .36s var(--gfr-v82-ease);
}

.gfr-research-v82-sheet.is-gfr-v82-open .gfr-research-v82-sheet__dialog,
.gfr-research-v82-sheet.is-open .gfr-research-v82-sheet__dialog,
.gfr-research-v82-sheet[aria-hidden="false"] .gfr-research-v82-sheet__dialog {
  transform: translateX(0);
}

.gfr-research-v82-sheet__header {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 76px;
  padding: 15px clamp(24px, 4vw, 48px);
  border-bottom: 1px solid rgba(229, 186, 73, .25);
  background: rgba(4, 27, 20, .96);
}

.gfr-research-v82-sheet__header > span {
  color: #e5ba49;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gfr-research-v82-sheet__close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  color: #f4d474;
  border: 1px solid rgba(229, 186, 73, .52);
  border-radius: 50%;
  background: transparent;
}

.gfr-research-v82-sheet__close svg {
  width: 20px;
  height: 20px;
}

.gfr-research-v82-sheet__content {
  padding: clamp(34px, 5vw, 68px);
}

.gfr-research-v82-sheet__loading {
  display: grid;
  place-items: center;
  min-height: 360px;
  color: rgba(247, 242, 231, .7);
}

.gfr-research-v82-sheet__loading::before {
  content: "";
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid rgba(229, 186, 73, .32);
  border-top-color: #e5ba49;
  border-radius: 50%;
}

.gfr-research-v82-sheet .gfr-portfolio-detail-section,
.gfr-research-v82-sheet__detail-section {
  padding-block: 28px;
  border-bottom: 1px solid rgba(229, 186, 73, .18);
}

.gfr-research-v82-sheet :where(.gfr-portfolio-detail-section, .gfr-research-v82-sheet__detail-section) h3,
.gfr-research-v82-sheet :where(.gfr-portfolio-detail-section, .gfr-research-v82-sheet__detail-section) h4 {
  margin: 0 0 12px;
  color: #f6df9b;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
}

.gfr-research-v82-sheet :where(p, li, dd) {
  color: rgba(247, 242, 231, .76);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   05 — Inside the Method demonstration
   -------------------------------------------------------------------------- */

.gfr-research-v82-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.gfr-research-v82-demo__scenario,
.gfr-research-v82-demo__explanation {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 109, 17, .3);
  border-radius: 12px;
  background: var(--gfr-v82-paper);
  box-shadow: var(--gfr-v82-shadow);
}

.gfr-research-v82-demo__scenario {
  padding: clamp(28px, 4vw, 52px);
}

.gfr-research-v82-demo__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 28px;
  color: #986b11;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.gfr-research-v82-demo__labels span + span::before {
  content: "·";
  margin-right: 16px;
  color: rgba(151, 109, 17, .5);
}

.gfr-research-v82-demo__scenario h3 {
  margin: 0;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.gfr-research-v82-demo__scenario > p {
  margin: 22px 0 0;
  color: #4e6259;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.68;
}

.gfr-research-v82-demo__options {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.gfr-research-v82-demo__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 58px;
  padding: 14px 17px;
  color: #173d31;
  border: 1px solid rgba(151, 109, 17, .26);
  border-radius: 7px;
  background: #fffdf8;
  text-align: left;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.gfr-research-v82-demo__option::after {
  content: "";
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border: 1px solid #b78317;
  border-radius: 50%;
}

.gfr-research-v82-demo__option:hover,
.gfr-research-v82-demo__option.is-gfr-v82-active,
.gfr-research-v82-demo__option.is-selected,
.gfr-research-v82-demo__option[aria-pressed="true"] {
  color: #fff;
  border-color: #174136;
  background: #174136;
}

.gfr-research-v82-demo__option.is-gfr-v82-active::after,
.gfr-research-v82-demo__option.is-selected::after,
.gfr-research-v82-demo__option[aria-pressed="true"]::after {
  border-color: #f0cc6a;
  background: #f0cc6a;
  box-shadow: 0 0 0 4px rgba(240, 204, 106, .14);
}

.gfr-research-v82-demo__trace {
  position: relative;
  height: 96px;
  margin-top: 30px;
  overflow: hidden;
  border-bottom: 1px solid rgba(151, 109, 17, .3);
  background:
    linear-gradient(rgba(151, 109, 17, .08) 1px, transparent 1px) 0 0 / 100% 24px,
    linear-gradient(90deg, rgba(151, 109, 17, .08) 1px, transparent 1px) 0 0 / 12.5% 100%;
}

.gfr-research-v82-demo__trace::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #bd8618 18%, #e4b94c 54%, #8bb49f 78%, transparent);
  transform: scaleX(.2);
  transform-origin: left center;
  transition: transform .4s var(--gfr-v82-ease);
}

.gfr-research-v82-demo.is-gfr-v82-demo-complete .gfr-research-v82-demo__trace::after,
.gfr-research-v82-demo.is-measured .gfr-research-v82-demo__trace::after {
  transform: scaleX(1);
}

.gfr-research-v82-demo__distribution {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 116px;
  padding: 18px 14px 0;
  border-bottom: 1px solid rgba(151, 109, 17, .24);
}

.gfr-research-v82-demo__distribution i {
  z-index: var(--gfr-v82-encoding-index, 0);
  flex: 1 1 0;
  height: var(--gfr-distribution-height, 45%);
  max-height: 100%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #d7ad38, rgba(29, 77, 64, .44));
  transform-origin: bottom center;
  transition: transform .32s var(--gfr-v82-ease), opacity .32s ease;
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-demo:not(.is-gfr-v82-demo-complete)
  .gfr-research-v82-demo__distribution i {
  opacity: .42;
  transform: scaleY(.26);
}

.gfr-research-v82-demo.is-gfr-v82-demo-complete
  .gfr-research-v82-demo__distribution i {
  opacity: 1;
  transform: scaleY(1);
}

.gfr-research-v82-demo__distribution i:nth-child(2) { transition-delay: 45ms; }
.gfr-research-v82-demo__distribution i:nth-child(3) { transition-delay: 90ms; }
.gfr-research-v82-demo__distribution i:nth-child(4) { transition-delay: 135ms; }
.gfr-research-v82-demo__distribution i:nth-child(5) { transition-delay: 180ms; }
.gfr-research-v82-demo__distribution i:nth-child(6) { transition-delay: 225ms; }
.gfr-research-v82-demo__distribution i:nth-child(7) { transition-delay: 270ms; }
.gfr-research-v82-demo__distribution i:nth-child(8) { transition-delay: 315ms; }

.gfr-research-v82-demo__explanation {
  padding: clamp(28px, 3.6vw, 44px);
  color: #f7f2e7;
  border-color: rgba(225, 184, 66, .42);
  background:
    radial-gradient(circle at 90% 0%, rgba(45, 105, 83, .34), transparent 36%),
    linear-gradient(145deg, #0b3428, #061f18);
}

.gfr-research-v82-demo__explanation h3 {
  margin: 0 0 16px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.gfr-research-v82-demo__explanation p {
  color: rgba(246, 242, 231, .76);
  line-height: 1.68;
}

.gfr-research-v82-demo__disclaimer {
  margin-top: 24px;
  padding: 18px 19px;
  color: #53645f;
  border-left: 2px solid #bd8618;
  background: rgba(215, 173, 56, .075);
  font-size: .86rem;
  line-height: 1.62;
}

.gfr-research-v82-demo__support-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  border-top: 1px solid rgba(151, 109, 17, .24);
}

.gfr-research-v82-demo__support-grid article {
  padding: 30px clamp(20px, 3vw, 38px) 10px 0;
}

.gfr-research-v82-demo__support-grid article + article {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(151, 109, 17, .2);
}

.gfr-research-v82-demo__support-grid h3 {
  margin: 0 0 10px;
  color: #93660b;
  font-family: var(--gfr-v82-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.gfr-research-v82-demo__support-grid p {
  margin: 0;
  color: #53645f;
  font-size: .91rem;
  line-height: 1.62;
}

/* --------------------------------------------------------------------------
   06 — Current research questions
   -------------------------------------------------------------------------- */

.gfr-research-v82-questions {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.gfr-research-v82-questions__index {
  display: grid;
  border-top: 1px solid rgba(225, 184, 66, .3);
}

.gfr-research-v82-questions__button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  width: 100%;
  min-height: 76px;
  padding: 20px 0;
  color: rgba(247, 242, 231, .72);
  border: 0;
  border-bottom: 1px solid rgba(225, 184, 66, .22);
  background: transparent;
  text-align: left;
  transition: color .22s ease, padding-left .22s ease;
}

.gfr-research-v82-questions__button > span:first-child {
  color: #e4b845;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.gfr-research-v82-questions__button > span:last-child {
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.4;
}

.gfr-research-v82-questions__button:hover,
.gfr-research-v82-questions__button.is-gfr-v82-active,
.gfr-research-v82-questions__button.is-active,
.gfr-research-v82-questions__button[aria-selected="true"],
.gfr-research-v82-questions__button[aria-expanded="true"] {
  padding-left: 10px;
  color: #fffdf7;
}

.gfr-research-v82-questions__panels {
  position: sticky;
  top: 106px;
}

.gfr-research-v82-questions__panel {
  min-height: 520px;
  padding: clamp(34px, 5vw, 64px);
  color: #17372d;
  border: 1px solid rgba(225, 184, 66, .44);
  border-radius: 12px;
  background:
    radial-gradient(circle at 93% 5%, rgba(44, 106, 80, .14), transparent 33%),
    linear-gradient(145deg, #fffdf9, #f3eee3);
  box-shadow: var(--gfr-v82-shadow-dark);
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-questions__panel:not(.is-gfr-v82-active) {
  display: none;
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-questions__panel.is-gfr-v82-active {
  display: block;
}

.gfr-research-v82-questions__panel > span {
  color: #986b11;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gfr-research-v82-questions__panel h3 {
  margin: 20px 0 24px;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.gfr-research-v82-questions__panel > p {
  color: #4e6259;
  line-height: 1.72;
}

.gfr-research-v82-questions__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  border-block: 1px solid rgba(151, 109, 17, .2);
}

.gfr-research-v82-questions__meta > div {
  padding: 16px 18px 16px 0;
}

.gfr-research-v82-questions__meta dt {
  color: #8d681b;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-research-v82-questions__meta dd {
  margin: 5px 0 0;
  color: #40564d;
  font-family: var(--gfr-v82-serif);
}

/* --------------------------------------------------------------------------
   07 — Methods in practice
   -------------------------------------------------------------------------- */

.gfr-research-v82-methods {
  display: grid;
  grid-template-columns: minmax(270px, .35fr) minmax(0, .65fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.gfr-research-v82-methods__tabs {
  display: grid;
  border-top: 1px solid rgba(151, 109, 17, .24);
}

.gfr-research-v82-methods__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  padding: 15px 0;
  color: #4e6259;
  border: 0;
  border-bottom: 1px solid rgba(151, 109, 17, .2);
  background: transparent;
  text-align: left;
  transition: color .2s ease, padding-left .2s ease;
}

.gfr-research-v82-methods__tab::after {
  content: "→";
  color: #a87509;
  transition: transform .2s ease;
}

.gfr-research-v82-methods__tab:hover,
.gfr-research-v82-methods__tab.is-gfr-v82-active,
.gfr-research-v82-methods__tab.is-active,
.gfr-research-v82-methods__tab[aria-selected="true"] {
  padding-left: 9px;
  color: #0a3025;
}

.gfr-research-v82-methods__tab:hover::after,
.gfr-research-v82-methods__tab.is-gfr-v82-active::after,
.gfr-research-v82-methods__tab.is-active::after,
.gfr-research-v82-methods__tab[aria-selected="true"]::after {
  transform: translateX(4px);
}

.gfr-research-v82-methods__panels {
  min-height: 600px;
}

.gfr-research-v82-methods__panel {
  min-height: 600px;
  padding: clamp(34px, 5vw, 62px);
  color: #f7f2e7;
  border: 1px solid rgba(177, 130, 27, .48);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 105, 83, .38), transparent 34%),
    linear-gradient(145deg, #0b3428, #061f18);
  box-shadow: var(--gfr-v82-shadow);
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-methods__panel:not(.is-gfr-v82-active) {
  display: none;
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-methods__panel.is-gfr-v82-active {
  display: block;
}

.gfr-research-v82-methods__panel h3 {
  margin: 0 0 18px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.gfr-research-v82-methods__panel > p {
  max-width: 730px;
  color: rgba(246, 242, 231, .76);
  line-height: 1.72;
}

.gfr-research-v82-methods__projects,
.gfr-research-v82-methods__researchers,
.gfr-research-v82-methods__outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.gfr-research-v82-methods__project,
.gfr-research-v82-methods__researcher,
.gfr-research-v82-methods__output {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: #f4d474;
  border: 1px solid rgba(205, 165, 64, .38);
  border-radius: 5px;
  background: rgba(255, 255, 255, .025);
  font-size: .8rem;
  line-height: 1.35;
}

a.gfr-research-v82-methods__project:hover,
a.gfr-research-v82-methods__researcher:hover,
a.gfr-research-v82-methods__output:hover {
  color: var(--gfr-v82-ink);
  border-color: #e4b94c;
  background: #e4b94c;
}

/* --------------------------------------------------------------------------
   08 — Evidence pathway
   -------------------------------------------------------------------------- */

.gfr-research-v82-evidence {
  position: relative;
  --gfr-v82-evidence-progress: 0%;
  --gfr-v82-evidence-stage: 0;
  --gfr-evidence-progress: 0%;
}

.gfr-research-v82-evidence__context {
  width: fit-content;
  max-width: 760px;
  margin: -14px 0 clamp(36px, 5vw, 64px);
  padding: 11px 0 11px 18px;
  color: rgba(247, 242, 231, .68);
  border-left: 1px solid rgba(232, 190, 74, .58);
  font-size: .76rem;
  letter-spacing: .035em;
  line-height: 1.55;
}

.gfr-research-v82-evidence__context a {
  color: #f0cc6a;
  border-bottom: 1px solid rgba(240, 204, 106, .46);
}

.gfr-research-v82-evidence__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(225, 184, 66, .2);
  transform: translateX(-50%);
}

.gfr-research-v82-evidence__rail::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: var(--gfr-v82-evidence-progress, var(--gfr-evidence-progress, 0%));
  max-height: 100%;
  background: linear-gradient(180deg, #f0cc6a, #b78317);
  box-shadow: 0 0 16px rgba(240, 204, 106, .38);
  transition: height .45s var(--gfr-v82-ease);
}

.gfr-research-v82-evidence__list {
  display: grid;
  gap: clamp(46px, 6vw, 84px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.gfr-research-v82-evidence__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  min-height: 220px;
  opacity: 1;
  transform: none;
  transition: opacity .45s ease, transform .45s var(--gfr-v82-ease);
}

.gfr-research-v82-evidence__stage::before {
  content: attr(data-gfr-stage-number);
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  justify-self: center;
  color: #f0cc6a;
  border: 1px solid rgba(225, 184, 66, .72);
  border-radius: 50%;
  background: #06271e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 0 0 8px rgba(225, 184, 66, .055);
}

.gfr-research-v82-evidence__stage > article {
  grid-column: 1;
  padding: clamp(26px, 3vw, 42px);
  color: #17372d;
  border: 1px solid rgba(151, 109, 17, .3);
  border-radius: 9px;
  background: linear-gradient(145deg, #fffdf9, #f3eee3);
  box-shadow: var(--gfr-v82-shadow-dark);
}

.gfr-research-v82-evidence__stage:nth-child(even) > article {
  grid-column: 3;
}

.gfr-research-v82-evidence__stage h3 {
  margin: 0 0 12px;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.gfr-research-v82-evidence__stage p {
  margin: 0;
  color: #4e6259;
  line-height: 1.67;
}

.gfr-research-v82-evidence__stage small {
  display: block;
  margin-bottom: 10px;
  color: #8d681b;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-evidence
  .gfr-research-v82-evidence__stage,
.gfr-research-v82-evidence.is-gfr-v82-enhanced .gfr-research-v82-evidence__stage,
.gfr-research-v82-evidence.is-enhanced .gfr-research-v82-evidence__stage {
  opacity: .5;
  transform: translateY(14px);
}

.gfr-research-v82-page.is-gfr-v82-enhanced
  .gfr-research-v82-evidence
  .gfr-research-v82-evidence__stage.is-gfr-v82-active,
.gfr-research-v82-evidence.is-gfr-v82-enhanced
  .gfr-research-v82-evidence__stage.is-gfr-v82-active,
.gfr-research-v82-evidence.is-enhanced
  .gfr-research-v82-evidence__stage.is-gfr-v82-active,
.gfr-research-v82-evidence__stage.is-gfr-v82-active,
.gfr-research-v82-evidence.is-enhanced .gfr-research-v82-evidence__stage.is-active,
.gfr-research-v82-evidence.is-enhanced .gfr-research-v82-evidence__stage.is-complete {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   09 — Research standards
   -------------------------------------------------------------------------- */

.gfr-research-v82-standards {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(460px, 1.24fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px);
  color: #f7f2e7;
  border: 1px solid rgba(177, 130, 27, .48);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(232, 190, 74, .1), transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 82% 8%, rgba(60, 126, 97, .3), transparent 38%),
    linear-gradient(145deg, #061a14 0%, #092d23 58%, #041711 100%);
  box-shadow: 0 34px 92px rgba(5, 29, 22, .23), inset 0 1px rgba(255, 255, 255, .035);
}

.gfr-research-v82-standards__copy h3 {
  margin: 0 0 18px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.gfr-research-v82-standards__copy p {
  color: rgba(246, 242, 231, .76);
  line-height: 1.72;
}

.gfr-research-v82-standards__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gfr-research-v82-standards__indicators {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(232, 190, 74, .27);
  border-left: 1px solid rgba(232, 190, 74, .27);
}

.gfr-research-v82-standards__indicator {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 98px;
  padding: 18px;
  border-right: 1px solid rgba(232, 190, 74, .27);
  border-bottom: 1px solid rgba(232, 190, 74, .27);
}

.gfr-research-v82-standards__indicator > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #f0cc6a;
  border: 1px solid rgba(232, 190, 74, .58);
  border-radius: 50%;
}

.gfr-research-v82-standards__indicator .gfr-icon {
  width: 21px;
  height: 21px;
}

.gfr-research-v82-standards__indicator strong,
.gfr-research-v82-standards__indicator small {
  display: block;
}

.gfr-research-v82-standards__indicator strong {
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.25;
}

.gfr-research-v82-standards__indicator small {
  margin-top: 4px;
  color: #e4b845;
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10 — Research collaboration
   -------------------------------------------------------------------------- */

.gfr-research-v82-collaboration {
  position: relative;
}

.gfr-research-v82-collaboration__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 109, 17, .36);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(232, 190, 74, .13), transparent 1px) 0 0 / 46px 46px,
    radial-gradient(circle at 72% 8%, rgba(60, 126, 97, .3), transparent 38%),
    linear-gradient(145deg, #061a14 0%, #092d23 58%, #041711 100%);
  box-shadow: 0 34px 92px rgba(5, 29, 22, .23), inset 0 1px rgba(255, 255, 255, .035);
}

.gfr-research-v82-collaboration__panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 190, 74, .16);
  border-radius: 10px;
  pointer-events: none;
}

.gfr-research-v82-collaboration__routes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gfr-research-v82-collaboration__route {
  position: relative;
  display: flex;
  min-height: clamp(370px, 34vw, 460px);
  flex-direction: column;
  padding: clamp(38px, 4.2vw, 58px);
  color: #f7f2e7;
  transition: background .22s ease;
}

.gfr-research-v82-collaboration__route + .gfr-research-v82-collaboration__route {
  border-left: 1px solid rgba(232, 190, 74, .28);
}

.gfr-research-v82-collaboration__route > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
  color: #f0c457;
  border: 1px solid rgba(232, 190, 74, .64);
  border-radius: 50%;
  background: rgba(255, 255, 255, .035);
}

.gfr-research-v82-collaboration__route .gfr-icon {
  width: 29px;
  height: 29px;
}

.gfr-research-v82-collaboration__route h3 {
  margin: 0 0 15px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.gfr-research-v82-collaboration__route p {
  margin: 0;
  color: rgba(246, 242, 231, .76);
  font-size: .94rem;
  line-height: 1.7;
}

.gfr-research-v82-collaboration__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 30px;
}

/* --------------------------------------------------------------------------
   Individual research record
   -------------------------------------------------------------------------- */

.gfr-project-v82-hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: #f7f2e7;
  border-bottom: 1px solid rgba(227, 185, 75, .62);
  background:
    radial-gradient(circle at 82% 24%, rgba(47, 112, 86, .42), transparent 34%),
    linear-gradient(125deg, #03150f, #0a3327);
}

.gfr-project-v82-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: end;
  min-height: 570px;
  padding-block: 86px 72px;
}

.gfr-project-v82-hero__copy {
  align-self: end;
  max-width: 940px;
}

.gfr-project-v82-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 17px;
  color: #e4b845;
  border-bottom: 1px solid rgba(228, 184, 69, .44);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-project-v82-hero__back span {
  font-size: 1rem;
  transition: transform .2s ease;
}

.gfr-project-v82-hero__back:hover span {
  transform: translateX(-3px);
}

.gfr-project-v82-hero h1 {
  max-width: 920px;
  margin: 15px 0 22px;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(3.2rem, 6.1vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .92;
  text-wrap: balance;
}

.gfr-project-v82-hero__question {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 242, 231, .8);
  font-family: var(--gfr-v82-serif);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.gfr-project-v82-hero__meta,
.gfr-project-v82-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(225, 184, 66, .28);
  border-left: 1px solid rgba(225, 184, 66, .28);
}

.gfr-project-v82-hero__meta > div,
.gfr-project-v82-meta > div {
  padding: 17px 18px;
  border-right: 1px solid rgba(225, 184, 66, .28);
  border-bottom: 1px solid rgba(225, 184, 66, .28);
}

.gfr-project-v82-hero__meta dt,
.gfr-project-v82-meta dt {
  color: #e4b845;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-project-v82-hero__meta dd,
.gfr-project-v82-meta dd {
  margin: 5px 0 0;
  color: #fffdf7;
  font-family: var(--gfr-v82-serif);
  font-size: .92rem;
  line-height: 1.4;
}

.gfr-project-v82-layout {
  display: grid;
  grid-template-columns: minmax(210px, .24fr) minmax(0, .76fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
  padding-block: clamp(90px, 8vw, 130px);
}

.gfr-project-v82-nav {
  position: sticky;
  top: 104px;
  display: grid;
  border-top: 1px solid var(--gfr-v82-line);
}

.gfr-project-v82-nav a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding-block: 10px;
  color: #56675f;
  border-bottom: 1px solid var(--gfr-v82-line);
  font-size: .78rem;
  line-height: 1.35;
}

.gfr-project-v82-nav a::before {
  content: attr(data-gfr-section-index);
  color: #986b11;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.gfr-project-v82-nav a:hover,
.gfr-project-v82-nav a.is-active,
.gfr-project-v82-nav a[aria-current="true"] {
  color: #0a3025;
}

.gfr-project-v82-mobile-nav {
  display: none;
  margin-bottom: 35px;
}

.gfr-project-v82-mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 11px 14px;
  color: #0a3025;
  border: 1px solid var(--gfr-v82-line);
  background: var(--gfr-v82-paper);
  cursor: pointer;
}

.gfr-project-v82-mobile-nav__links {
  display: grid;
  border: 1px solid var(--gfr-v82-line);
  border-top: 0;
  background: var(--gfr-v82-paper);
}

.gfr-project-v82-mobile-nav__links a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 9px 14px;
  color: #50645b;
  border-bottom: 1px solid var(--gfr-v82-line);
  font-size: .76rem;
  line-height: 1.35;
}

.gfr-project-v82-mobile-nav__links a:last-child {
  border-bottom: 0;
}

.gfr-project-v82-mobile-nav__links a::before {
  content: attr(data-gfr-section-index);
  color: #986b11;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.gfr-project-v82-mobile-nav__links a:hover,
.gfr-project-v82-mobile-nav__links a:focus-visible,
.gfr-project-v82-mobile-nav__links a[aria-current="true"] {
  color: #082e23;
  background: rgba(215, 173, 56, .1);
}

.gfr-project-v82-content {
  max-width: 880px;
}

.gfr-project-v82-section {
  padding-block: 0 clamp(62px, 6vw, 90px);
  scroll-margin-top: 110px;
}

.gfr-project-v82-section + .gfr-project-v82-section {
  padding-top: clamp(54px, 5vw, 76px);
  border-top: 1px solid var(--gfr-v82-line);
}

.gfr-project-v82-section h2 {
  margin: 0 0 22px;
  color: #092f25;
  font-family: var(--gfr-v82-serif);
  font-size: clamp(2.15rem, 3.8vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1;
}

.gfr-project-v82-section :where(p, li) {
  color: #4e6259;
  line-height: 1.76;
}

.gfr-project-v82-team,
.gfr-project-v82-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.gfr-project-v82-team > *,
.gfr-project-v82-related > * {
  padding: 18px;
  color: #15382d;
  border: 1px solid rgba(151, 109, 17, .26);
  border-radius: 7px;
  background: var(--gfr-v82-paper);
}

.gfr-project-v82-team > * {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.gfr-project-v82-team img,
.gfr-project-v82-team__avatar {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #d6a936;
  border-radius: 50%;
  background: #052a23;
}

.gfr-project-v82-team strong,
.gfr-project-v82-team small {
  display: block;
}

.gfr-project-v82-team small {
  margin-top: 3px;
  color: #8d681b;
  font-size: .7rem;
}

.gfr-project-v82-standards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--gfr-v82-line);
  border-left: 1px solid var(--gfr-v82-line);
}

.gfr-project-v82-standards > div {
  padding: 18px;
  border-right: 1px solid var(--gfr-v82-line);
  border-bottom: 1px solid var(--gfr-v82-line);
}

.gfr-project-v82-standards dt {
  color: #8d681b;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gfr-project-v82-standards dd {
  margin: 5px 0 0;
  color: #40564d;
  font-family: var(--gfr-v82-serif);
}

/* --------------------------------------------------------------------------
   Hover and formation motion
   -------------------------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
  .gfr-research-v82-programme:hover,
  .gfr-research-v82-domain:hover,
  .gfr-research-v82-featured:hover {
    border-color: rgba(225, 184, 66, .72);
    box-shadow: 0 30px 78px rgba(12, 45, 34, .15), inset 0 1px rgba(255, 255, 255, .05);
    transform: translateY(-3px);
  }

  .gfr-research-v82-featured:hover .gfr-research-v82-featured__image img {
    transform: scale(1.018);
    filter: saturate(1.04);
  }

  .gfr-research-v82-programme__action:hover .gfr-icon,
  .gfr-research-v82-domain__action:hover .gfr-icon,
  .gfr-research-v82-featured__actions a:hover .gfr-icon {
    transform: translateX(4px);
  }

  .gfr-research-v82-explorer__project:hover,
  .gfr-research-v82-explorer .gfr-portfolio-result:hover {
    border-color: rgba(229, 186, 73, .72);
    transform: translateY(-2px);
  }

  .gfr-research-v82-collaboration__route:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, .026), rgba(232, 190, 74, .038));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gfr-research-v82-hero.is-gfr-v82-in-view .gfr-research-v82-hero__copy {
    animation: gfr-v82-copy-arrive .7s var(--gfr-v82-ease-emphasis) both;
  }

  .gfr-research-v82-hero.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__core,
  .gfr-research-v82-system.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__core,
  .gfr-research-v82-system.is-ready:not(.is-settled)
    .gfr-research-v82-system__core {
    animation: gfr-v82-core-form .9s var(--gfr-v82-ease-emphasis) .3s both;
  }

  .gfr-research-v82-hero.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__process,
  .gfr-research-v82-system.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__process,
  .gfr-research-v82-system.is-ready:not(.is-settled)
    .gfr-research-v82-system__process {
    animation:
      gfr-v82-node-form
      1s
      var(--gfr-v82-ease-emphasis)
      var(--gfr-system-form-delay, 1.1s)
      both;
  }

  .gfr-research-v82-hero.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__connection::before,
  .gfr-research-v82-system.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__connection::before,
  .gfr-research-v82-system.is-ready:not(.is-settled)
    .gfr-research-v82-system__connection::before {
    animation:
      gfr-v82-line-form
      1.5s
      var(--gfr-v82-ease)
      var(--gfr-system-form-delay, 3.2s)
      both;
  }

  .gfr-research-v82-hero.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__domain,
  .gfr-research-v82-system.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__domain,
  .gfr-research-v82-system.is-ready:not(.is-settled)
    .gfr-research-v82-system__domain {
    animation:
      gfr-v82-node-form
      1.1s
      var(--gfr-v82-ease-emphasis)
      var(--gfr-system-form-delay, 5s)
      both;
  }

  .gfr-research-v82-hero.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__connection::after,
  .gfr-research-v82-system.is-gfr-v82-active:not(.is-gfr-v82-settled)
    .gfr-research-v82-system__connection::after,
  .gfr-research-v82-system.is-ready:not(.is-settled)
    .gfr-research-v82-system__connection::after {
    animation:
      gfr-v82-pathway-pulse
      5.6s
      ease-in-out
      var(--gfr-system-pulse-delay, 8.1s)
      infinite;
  }

  .gfr-research-v82-hero.is-gfr-v82-paused *,
  .gfr-research-v82-hero.is-gfr-v82-paused *::before,
  .gfr-research-v82-hero.is-gfr-v82-paused *::after,
  .gfr-research-v82-system.is-gfr-v82-paused *,
  .gfr-research-v82-system.is-gfr-v82-paused *::before,
  .gfr-research-v82-system.is-gfr-v82-paused *::after,
  .gfr-research-v82-system.is-paused *,
  .gfr-research-v82-system.is-paused *::before,
  .gfr-research-v82-system.is-paused *::after {
    animation-play-state: paused !important;
  }

  .gfr-research-v82-sheet__loading::before {
    animation: gfr-v82-spin .8s linear infinite;
  }
}

@keyframes gfr-v82-core-form {
  from { opacity: .35; transform: translate(-50%, -50%) scale(.62); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes gfr-v82-copy-arrive {
  from { opacity: .72; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes gfr-v82-node-form {
  from { opacity: .3; filter: blur(2px); transform: translate(-50%, -50%) scale(.82); }
  to { opacity: 1; filter: blur(0); transform: translate(-50%, -50%) scale(1); }
}

@keyframes gfr-v82-line-form {
  from { opacity: .22; transform: scaleX(.12); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes gfr-v82-pathway-pulse {
  0%, 70%, 100% { left: 0; opacity: 0; }
  8% { opacity: .9; }
  42% { left: calc(100% - 10px); opacity: .9; }
  52% { left: calc(100% - 10px); opacity: 0; }
}

@keyframes gfr-v82-spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Responsive design
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .gfr-research-v82-hero,
  .gfr-research-v82-hero__inner {
    min-height: auto;
  }

  .gfr-research-v82-hero__inner {
    grid-template-columns: 1fr;
    padding-block: 78px 68px;
  }

  .gfr-research-v82-hero__copy {
    max-width: 760px;
  }

  .gfr-research-v82-system {
    width: min(100%, 580px);
    justify-self: center;
  }

  .gfr-editorial-heading,
  .gfr-research-v82-demo,
  .gfr-research-v82-questions,
  .gfr-research-v82-methods,
  .gfr-research-v82-standards,
  .gfr-project-v82-hero__inner,
  .gfr-project-v82-layout {
    grid-template-columns: 1fr;
  }

  .gfr-editorial-heading > p {
    padding-left: 22px;
  }

  .gfr-research-v82-programme,
  .gfr-research-v82-programme:nth-child(even) {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "number copy"
      "diagram diagram";
  }

  .gfr-research-v82-programme__diagram {
    min-height: 330px;
  }

  .gfr-research-v82-domains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gfr-research-v82-domain:first-child,
  .gfr-research-v82-domain--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 460px;
  }

  .gfr-research-v82-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .gfr-research-v82-featured,
  .gfr-research-v82-featured--lead,
  .gfr-research-v82-featured:first-child {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-featured--lead,
  .gfr-research-v82-featured:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  }

  .gfr-research-v82-explorer__filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gfr-research-v82-explorer__filter-grid .gfr-research-v82-explorer__search {
    grid-column: 1 / -1;
  }

  .gfr-research-v82-questions__panels {
    position: static;
  }

  .gfr-research-v82-methods__panels,
  .gfr-research-v82-methods__panel {
    min-height: 0;
  }

  .gfr-research-v82-standards {
    gap: 44px;
  }

  .gfr-research-v82-collaboration__routes {
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-collaboration__route {
    min-height: 0;
  }

  .gfr-research-v82-collaboration__route + .gfr-research-v82-collaboration__route {
    border-top: 1px solid rgba(232, 190, 74, .28);
    border-left: 0;
  }

  .gfr-project-v82-hero__inner {
    align-items: start;
  }

  .gfr-project-v82-nav {
    display: none;
  }

  .gfr-project-v82-mobile-nav {
    display: block;
  }
}

@media (max-width: 760px) {
  .gfr-research-v82-section {
    padding-block: 76px;
  }

  .gfr-editorial-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .gfr-editorial-heading > p {
    padding-left: 0;
    border-left: 0;
  }

  .gfr-research-v82-hero__inner {
    padding-block: 65px 58px;
  }

  .gfr-research-v82-hero__copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .gfr-research-v82-hero__actions,
  .gfr-research-v82-featured__actions,
  .gfr-research-v82-standards__actions,
  .gfr-research-v82-collaboration__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-hero__actions .gfr-button,
  .gfr-research-v82-featured__actions .gfr-button,
  .gfr-research-v82-standards__actions .gfr-button,
  .gfr-research-v82-collaboration__actions .gfr-button {
    width: 100%;
    justify-content: space-between;
  }

  .gfr-research-v82-system {
    min-height: 0;
    width: min(100%, 520px);
  }

  .gfr-research-v82-system__process,
  .gfr-research-v82-system__domain {
    min-height: 38px;
    padding: 8px 10px;
    font-size: .55rem;
  }

  .gfr-research-v82-programme,
  .gfr-research-v82-programme:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "number"
      "copy"
      "diagram";
    gap: 25px;
  }

  .gfr-research-v82-programme__number {
    font-size: 4.6rem;
  }

  .gfr-research-v82-programme__diagram {
    min-height: 260px;
  }

  .gfr-research-v82-domains,
  .gfr-research-v82-featured-grid,
  .gfr-research-v82-explorer__filter-grid,
  .gfr-research-v82-explorer__project-list,
  .gfr-research-v82-demo__support-grid,
  .gfr-research-v82-standards__indicators,
  .gfr-project-v82-team,
  .gfr-project-v82-related,
  .gfr-project-v82-standards {
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-domain:first-child,
  .gfr-research-v82-domain--featured {
    grid-column: auto;
    min-height: 390px;
  }

  .gfr-research-v82-featured,
  .gfr-research-v82-featured--lead,
  .gfr-research-v82-featured:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-featured__image {
    min-height: 260px;
  }

  .gfr-research-v82-featured-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .gfr-research-v82-featured__facts,
  .gfr-research-v82-explorer__project-facts,
  .gfr-research-v82-questions__meta,
  .gfr-project-v82-hero__meta,
  .gfr-project-v82-meta {
    grid-template-columns: 1fr;
  }

  .gfr-research-v82-explorer__active,
  .gfr-research-v82-explorer__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .gfr-research-v82-sheet__dialog {
    width: 100%;
    border-left: 0;
  }

  .gfr-research-v82-sheet__content {
    padding: 30px 22px 50px;
  }

  .gfr-research-v82-demo__support-grid article,
  .gfr-research-v82-demo__support-grid article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(151, 109, 17, .2);
  }

  .gfr-research-v82-questions {
    gap: 26px;
  }

  .gfr-research-v82-questions__panels {
    display: grid;
    gap: 14px;
  }

  .gfr-research-v82-questions__panel {
    min-height: 0;
    padding: 28px 24px;
  }

  .gfr-research-v82-methods__panel {
    padding: 30px 24px;
  }

  .gfr-research-v82-evidence__rail {
    left: 28px;
    transform: none;
  }

  .gfr-research-v82-evidence__stage,
  .gfr-research-v82-evidence__stage:nth-child(even) {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
  }

  .gfr-research-v82-evidence__stage::before,
  .gfr-research-v82-evidence__stage:nth-child(even)::before {
    grid-column: 1;
  }

  .gfr-research-v82-evidence__stage > article,
  .gfr-research-v82-evidence__stage:nth-child(even) > article {
    grid-column: 2;
  }

  .gfr-research-v82-standards {
    padding: 29px 22px;
  }

  .gfr-research-v82-collaboration__route {
    padding: 34px 27px 38px;
  }

  .gfr-project-v82-hero,
  .gfr-project-v82-hero__inner {
    min-height: auto;
  }

  .gfr-project-v82-hero__inner {
    padding-block: 70px 58px;
  }

  .gfr-project-v82-layout {
    padding-block: 72px;
  }
}

@media (max-width: 700px) {
  .gfr-numbered-section::before,
  .gfr-numbered-section--right::before {
    top: 46px;
    right: auto;
    left: 22px;
    font-size: 5.4rem;
  }
}

@media (max-width: 420px) {
  .gfr-editorial-heading h2,
  .gfr-research-v82-programme h3,
  .gfr-research-v82-questions__panel h3,
  .gfr-research-v82-methods__panel h3,
  .gfr-research-v82-standards__copy h3,
  .gfr-project-v82-section h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.05rem);
  }

  .gfr-research-v82-system__core {
    width: 31%;
  }

  .gfr-research-v82-system__process,
  .gfr-research-v82-system__domain {
    max-width: 29%;
    white-space: normal;
  }

  .gfr-research-v82-programme,
  .gfr-research-v82-domain,
  .gfr-research-v82-featured__body {
    padding: 25px 21px 28px;
  }

  .gfr-research-v82-demo__scenario,
  .gfr-research-v82-demo__explanation {
    padding: 27px 21px;
  }

  .gfr-research-v82-evidence__stage {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .gfr-research-v82-evidence__stage::before {
    width: 48px;
    height: 48px;
  }

  .gfr-research-v82-evidence__stage > article {
    padding: 23px 19px;
  }

  .gfr-research-v82-standards__indicator {
    padding: 15px;
  }

  .gfr-project-v82-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
}

/* --------------------------------------------------------------------------
   Reduced motion: all information remains present and comprehensible.
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gfr-research-v82-page *,
  .gfr-research-v82-page *::before,
  .gfr-research-v82-page *::after,
  .gfr-project-v82-page *,
  .gfr-project-v82-page *::before,
  .gfr-project-v82-page *::after,
  .gfr-research-v82-sheet,
  .gfr-research-v82-sheet *,
  .gfr-research-v82-sheet *::before,
  .gfr-research-v82-sheet *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-delay: 0s !important;
    transition-duration: .01ms !important;
  }

  .gfr-research-v82-system
    :is(
      .gfr-research-v82-system__core,
      .gfr-research-v82-system__process,
      .gfr-research-v82-system__domain,
      .gfr-research-v82-system__connection
    ),
  .gfr-research-v82-evidence__stage,
  .gfr-research-v82-explorer__project {
    opacity: 1 !important;
    filter: none !important;
  }

  .gfr-research-v82-system__core {
    transform: translate(-50%, -50%) !important;
  }

  .gfr-research-v82-system
    :is(.gfr-research-v82-system__process, .gfr-research-v82-system__domain) {
    transform: translate(-50%, -50%) !important;
  }

  .gfr-research-v82-system__connection::before {
    transform: scaleX(1) !important;
  }

  .gfr-research-v82-page.is-gfr-v82-enhanced
    .gfr-research-v82-evidence
    .gfr-research-v82-evidence__stage,
  .gfr-research-v82-evidence.is-gfr-v82-enhanced .gfr-research-v82-evidence__stage,
  .gfr-research-v82-evidence.is-enhanced .gfr-research-v82-evidence__stage,
  .gfr-research-v82-programme,
  .gfr-research-v82-domain,
  .gfr-research-v82-featured,
  .gfr-research-v82-featured__image img,
  .gfr-research-v82-explorer__project,
  .gfr-research-v82-sheet,
  .gfr-research-v82-sheet__dialog {
    transform: none !important;
    transition: none !important;
  }

  .gfr-research-v82-evidence__rail::after {
    height: 100% !important;
    transition: none !important;
  }
}
