body.research-page {
  background: #f7f4ee;
}

.research-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  background: #10141c;
  overflow: hidden;
}

.research-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.research-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 28, 0.25) 0%, rgba(16, 20, 28, 0.15) 28%, rgba(16, 20, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(16, 20, 28, 0.55) 0%, rgba(16, 20, 28, 0.1) 62%);
}

.research-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 72px;
  color: #fff8f1;
}

.research-hero .eyebrow span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 178, 122, 0.45);
  color: #ffd2b0;
}

.research-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 650;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 820px;
  margin: 0 0 16px;
  color: #fff;
  border: 0;
  padding: 0;
}

.research-meta {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb27a;
}

.research-hero .lede {
  max-width: 680px;
  color: rgba(255, 248, 241, 0.86);
  font-size: 17px;
}

.stat-bar {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding-bottom: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  background: #fffdf9;
  border-radius: 22px;
  padding: 22px 20px 18px;
  border: 1px solid rgba(23, 32, 51, 0.06);
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.08);
}

.stat-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #e36a12;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #243044;
  line-height: 1.4;
}

.research-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.scope-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  counter-reset: scope;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(23, 32, 51, 0.06);
  box-shadow: 0 16px 40px rgba(23, 32, 51, 0.04);
  padding: 8px 26px;
}

.scope-list li {
  counter-increment: scope;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  color: #243044;
  line-height: 1.5;
}

.scope-list li:last-child {
  border-bottom: 0;
}

.scope-list li::before {
  content: counter(scope, decimal-leading-zero);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: #1b7a3a;
}

.method-panel {
  background: #10141c;
  color: #f6f1e8;
  border-radius: 28px;
  padding: 28px 26px 26px;
  min-height: 100%;
  background-image:
    radial-gradient(280px 180px at 90% 0%, rgba(227, 106, 18, 0.28), transparent 70%),
    radial-gradient(240px 160px at 0% 100%, rgba(27, 122, 58, 0.22), transparent 70%);
}

.method-panel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #fff8f1;
}

.method-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px 16px 18px;
  margin-bottom: 12px;
}

.method-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb27a;
}

.method-card strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}

.gallery-head .section-head {
  margin-bottom: 0;
}

.gallery-head p {
  margin: 0;
  max-width: 320px;
  color: #5a6574;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.field-card {
  margin: 0;
  grid-column: span 4;
  background: #fffdf9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.06);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.04);
}

.field-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #d8cfc2;
  cursor: zoom-in;
}

.field-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.field-card:hover img {
  transform: scale(1.03);
}

.field-card figcaption {
  padding: 14px 16px 16px;
}

.field-card figcaption strong {
  display: block;
  font-size: 15px;
  color: #142033;
  margin-bottom: 2px;
}

.field-card figcaption span {
  font-size: 13px;
  color: #5a6574;
}

.note-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  background: #efe8dc;
  border-radius: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(23, 32, 51, 0.06);
}

.note-card p:first-child {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1b7a3a;
}

.note-card p:last-child {
  margin: 0;
  color: #243044;
  line-height: 1.7;
}

.lightbox {
  z-index: 2000;
  width: min(1080px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(12, 16, 24, 0.88);
}

.lightbox-frame {
  position: relative;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #10141c;
  border-radius: 16px;
  display: block;
}

.lightbox figcaption {
  margin-top: 12px;
  text-align: center;
}

.lightbox figcaption strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 650;
}

.lightbox figcaption span {
  color: rgba(255, 248, 241, 0.75);
  font-size: 14px;
}

.lb-close,
.lb-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #142033;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.lb-close {
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.lb-nav {
  top: 42%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.lb-prev {
  left: 12px;
}

.lb-next {
  right: 12px;
}

body.research-page nav a[aria-current='page'] {
  color: #d85a12;
  background: rgba(232, 119, 34, 0.1);
}

@media (max-width: 980px) {
  .stat-grid,
  .research-split,
  .note-card {
    grid-template-columns: 1fr 1fr;
  }

  .research-split,
  .note-card {
    grid-template-columns: 1fr;
  }

  .field-card {
    grid-column: span 6;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-head p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .research-hero {
    min-height: 0;
  }

  .research-hero-copy {
    width: min(1180px, calc(100% - 28px));
    padding: 96px 0 48px;
  }

  .research-hero h1 {
    font-size: 36px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .field-card {
    grid-column: span 12;
  }

  .stat-bar {
    margin-top: 16px;
  }
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.focus-card {
  grid-column: span 3;
  background: #fffdf9;
  border-radius: 22px;
  padding: 22px 20px 20px;
  border: 1px solid rgba(23, 32, 51, 0.06);
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.04);
}

.focus-card span {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: #e36a12;
  margin-bottom: 10px;
}

.focus-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #142033;
  letter-spacing: -0.02em;
}

.focus-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3d4a5c;
}

.focus-card:nth-child(n + 5) {
  grid-column: span 4;
}

.programme-hero img {
  object-position: center 62%;
}

@media (max-width: 980px) {
  .focus-card,
  .focus-card:nth-child(n + 5) {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .focus-card,
  .focus-card:nth-child(n + 5) {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-card img {
    transition: none;
  }
}
