/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --red: #e00000;
  --red2: #b50000;
  --ink: #111111;
  --body: #444444;
  --rule: #e8e8e8;
  --wash: #f9f9f9;
  --white: #ffffff;
  --navH: 72px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

.page {
  display: none
}

.page.active {
  display: block
}

/* ── TOPBAR ── */
.topbar {
  background: var(--white);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 56px;
  gap: 24px
}

.topbar a {
  font-size: 11.5px;
  color: #888;
  letter-spacing: .3px;
  transition: color .18s
}

.topbar a:hover {
  color: #fff
}

.topbar-lang {
  display: flex;
  gap: 10px
}

.topbar-lang a {
  font-weight: 700
}

.topbar-lang a.on {
  color: #fff
}

.topbar-sep {
  color: #333;
  font-size: 10px
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  /* border-bottom: 3px solid var(--red); */
  height: var(--navH);
  display: flex;
  align-items: center;
  padding: 15px 56px;
  gap: 0;
  box-shadow: 0 1px 24px rgba(0, 0, 0, .06)
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 48px;
  cursor: pointer;
  flex-shrink: 0
}

.nav-wordmark {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 5px;
  line-height: 1;
  width: 40%;
  margin: 2px 0px;
}

.nav-pipe {
  width: 1px;
  height: 28px;
  background: #ddd
}

.nav-sub {
  font-size: 9px;
  color: #bbb;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.5
}

.nav-menu {
  display: flex;
  height: 100%;
  flex: 1
}

.ni {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}

.ni>button {
  color: #333;
  font-size: 13.5px;
  font-weight: 500;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
  white-space: nowrap
}

.ni>button:hover,
.ni:hover>button {
  color: var(--red)
}

.ni::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .22s;
  transform-origin: left
}

.ni:hover::after {
  transform: scaleX(1)
}

.ni-arrow {
  font-size: 8px;
  opacity: .45;
  transition: transform .22s
}

.ni:hover .ni-arrow {
  transform: rotate(180deg)
}

.drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .2s, transform .2s;
  z-index: 999
}

.ni:hover .drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.drop button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 22px;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid var(--rule);
  transition: background .14s, color .14s, padding-left .14s
}

.drop button:last-child {
  border-bottom: none
}

.drop button:hover {
  background: var(--wash);
  color: var(--red);
  padding-left: 28px
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0
}

.nav-login {
  background: var(--red);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 22px;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: background .18s
}

.nav-login:hover {
  background: var(--red2)
}

.nav-search {
  color: #aaa;
  font-size: 17px;
  padding: 5px;
  transition: color .18s
}

.nav-search:hover {
  color: var(--red)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all .3s
}

.burger.on span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.burger.on span:nth-child(2) {
  opacity: 0
}

.burger.on span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mob {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 850;
  overflow-y: auto;
  padding-top: calc(var(--navH) + 34px)
}

.mob.on {
  display: block
}

.mob-inner {
  padding: 0 28px 56px
}

.mob-row {
  border-bottom: 1px solid var(--rule)
}

.mob-row button {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .18s
}

.mob-row button:hover {
  color: var(--red)
}

.mob-cta {
  margin-top: 28px
}

.mob-cta button {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #0a0a0a
}

.hero-photo {
  position: absolute;
  inset: 0;
  opacity: .48
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .38) 58%, rgba(0, 0, 0, 0) 100%)
}

.hero-redline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: var(--red) */
}

.hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 88px;
  max-width: 960px
}

.hero-kicker {
  display: inline-block;
  /* background: var(--red); */
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px
}

.hero-h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 54px;
  font-weight: 400;
  color: #fff;
  line-height: 1.17;
  margin-bottom: 20px
}

.hero-h1 em {
  font-style: italic;
  color: #ffcece
}

.hero-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 520px;
  font-weight: 300
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 34px;
  letter-spacing: .5px;
  transition: background .18s
}

.btn-fill:hover {
  background: var(--red2)
}

.btn-ghost-w {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  transition: all .18s
}

.btn-ghost-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1)
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 88px;
  display: flex;
  gap: 8px
}

.hero-dot {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: background .2s
}

.hero-dot.on {
  background: #fff
}

/* ── QUICKLINKS ── */
.ql {
  display: flex;
  border-bottom: 1px solid var(--rule);
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, .05)
}

.ql-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background .18s
}

.ql-item:last-child {
  border-right: none
}

.ql-item:hover {
  background: var(--wash)
}

.ql-item:hover .ql-icon {
  color: var(--red)
}

.ql-icon {
  font-size: 20px;
  color: #ccc;
  transition: color .18s;
  flex-shrink: 0
}

.ql-text h3 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink)
}

.ql-text p {
  font-size: 11px;
  color: #999;
  margin-top: 1px
}

/* ── NUMBERS BAR ── */
.numbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule)
}

.nb-cell {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--rule)
}

.nb-cell:last-child {
  border-right: none
}

.nb-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1
}

.nb-num sup {
  font-size: 22px;
  color: var(--red)
}

.nb-label {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 10px
}

/* ── SECTION SHELL ── */
.sec {
  padding: 96px 88px
}

.sec-tight {
  padding: 72px 88px
}

.sec-wash {
  background: var(--wash)
}

.sec-white {
  background: #fff
}

.sec-ink {
  background: var(--ink)
}

.sec-red {
  background: var(--red)
}

.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px
}

.sec-h {
  font-family: 'Libre Baskerville', serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink)
}

.sec-h em {
  color: var(--red);
  font-style: italic
}

.sec-h-w {
  color: #fff
}

.sec-p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.9;
  margin-top: 16px
}

.sec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px
}

.more-btn {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .18s
}

.more-btn:hover {
  gap: 11px
}

/* ── CARD GRIDS ── */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px
}

/* ── CARD ── */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: box-shadow .24s, transform .24s;
  cursor: pointer
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
  transform: translateY(-5px)
}

.card-photo {
  height: 220px;
  overflow: hidden;
  position: relative
}

.card-photo img {
  transition: transform .5s
}

.card:hover .card-photo img {
  transform: scale(1.06)
}

.card-body {
  padding: 28px
}

.card-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px
}

.card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px
}

.card-text {
  font-size: 13px;
  color: var(--body);
  line-height: 1.82
}

.card-foot {
  padding: 15px 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.card-date {
  font-size: 11px;
  color: #bbb
}

.card-arr {
  color: var(--red);
  font-size: 18px;
  transition: transform .18s
}

.card:hover .card-arr {
  transform: translateX(5px)
}

/* ── SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.split-photo {
  overflow: hidden;
  min-height: 520px;
  position: relative
}

.split-photo img {
  position: absolute;
  inset: 0;
  transition: transform .6s
}

.split:hover .split-photo img {
  transform: scale(1.03)
}

.split-body {
  padding: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff
}

.split-body.wash {
  background: var(--wash)
}

.split-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px
}

.split-h {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px
}

.split-p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 34px
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 30px;
  letter-spacing: .5px;
  transition: background .18s
}

.btn-red:hover {
  background: var(--red2)
}

.btn-outline-r {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  transition: all .18s
}

.btn-outline-r:hover {
  background: var(--red);
  color: #fff
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  transition: all .18s
}

.btn-outline-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .12)
}

.btn-outline-k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  transition: all .18s
}

.btn-outline-k:hover {
  background: var(--ink);
  color: #fff
}

/* ── QUOTE BAND ── */
.qband {
  background: var(--red);
  padding: 88px;
  text-align: center
}

.qband blockquote {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-style: italic;
  color: #fff;
  line-height: 1.58;
  max-width: 840px;
  margin: 0 auto 16px
}

.qband cite {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 2.5px;
  text-transform: uppercase
}

/* ── DARK NUMBAR ── */
.numbar-dk {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink)
}

.nb-dk {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.nb-dk:last-child {
  border-right: none
}

.nb-dk .nb-num {
  color: #fff
}

.nb-dk .nb-label {
  color: rgba(255, 255, 255, .4)
}

/* ── RIBBON ── */
.ribbon {
  background: var(--red);
  padding: 24px 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px
}

.ribbon-text {
  font-size: 16px;
  color: #fff;
  font-weight: 400
}

.ribbon-text strong {
  font-weight: 700
}

/* ── INNER HERO (sub-pages) ── */
.inner-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #0a0a0a
}

.inner-hero-photo {
  position: absolute;
  inset: 0;
  opacity: .36
}

.inner-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .4) 100%)
}

.inner-hero-redline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red)
}

.inner-hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 88px
}

.ih-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 14px
}

.ih-h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px
}

.ih-lead {
  font-size: 17px;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  line-height: 1.72;
  font-weight: 300
}

/* ── BREADCRUMB ── */
.bcrumb {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  padding: 14px 88px;
  font-size: 12px;
  color: #aaa;
  display: flex;
  gap: 8px;
  align-items: center
}

.bcrumb a {
  color: #aaa;
  transition: color .18s
}

.bcrumb a:hover {
  color: var(--red)
}

.bcrumb-sep {
  color: #ddd
}

/* ── TABS ── */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 56px;
  overflow-x: auto
}

.tab {
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: .3px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .18s, border-color .18s
}

.tab.on,
.tab:hover {
  color: var(--red);
  border-bottom-color: var(--red)
}

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.team-card {
  text-align: center
}

.team-av {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 3px solid var(--rule)
}

.team-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  margin-bottom: 5px
}

.team-role {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.team-bio {
  font-size: 13px;
  color: var(--body);
  line-height: 1.72
}

/* ── JOB LIST ── */
.job-list {
  display: flex;
  flex-direction: column
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border: 1px solid var(--rule);
  border-bottom: none;
  cursor: pointer;
  transition: background .18s;
  gap: 16px
}

.job-item:last-child {
  border-bottom: 1px solid var(--rule)
}

.job-item:hover {
  background: var(--wash)
}

.job-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 5px
}

.job-meta {
  font-size: 11.5px;
  color: #aaa;
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.job-badge {
  background: rgba(224, 0, 0, .07);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0
}

.job-arr {
  color: var(--red);
  font-size: 22px;
  flex-shrink: 0
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px
}

.form-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 9px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.form-group {
  margin-bottom: 22px
}

.fi {
  width: 100%;
  border: 1px solid var(--rule);
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: #fff;
  outline: none;
  border-radius: 0;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none
}

.fi:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 0, 0, .06)
}

.fi-ta {
  height: 148px;
  resize: vertical
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px
}

.form-check input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--red)
}

.form-check label {
  font-size: 12px;
  color: var(--body);
  line-height: 1.65
}

.office-box {
  border: 1px solid var(--rule);
  padding: 28px;
  background: #fff;
  transition: box-shadow .2s;
  margin-bottom: 18px
}

.office-box:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07)
}

.office-box:last-child {
  margin-bottom: 0
}

.ob-region {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px
}

.ob-city {
  font-family: 'Libre Baskerville', serif;
  font-size: 19px;
  margin-bottom: 10px
}

.ob-info {
  font-size: 13px;
  color: var(--body);
  line-height: 1.82
}

/* ── INSIGHTS LAYOUT ── */
.insight-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px
}

.big-card {
  border: 1px solid var(--rule);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .24s;
  margin-bottom: 28px
}

.big-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, .09)
}

.bc-photo {
  height: 360px;
  overflow: hidden
}

.bc-photo img {
  transition: transform .5s
}

.big-card:hover .bc-photo img {
  transform: scale(1.04)
}

.bc-body {
  padding: 36px
}

.bc-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px
}

.bc-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 14px
}

.bc-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.85
}

.side-h {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px
}

.side-list {
  display: flex;
  flex-direction: column
}

.side-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer
}

.side-item:first-child {
  padding-top: 0
}

.side-item:hover .side-t {
  color: var(--red)
}

.side-thumb {
  width: 70px;
  height: 55px;
  overflow: hidden;
  flex-shrink: 0
}

.side-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px
}

.side-t {
  font-size: 13.5px;
  font-family: 'Libre Baskerville', serif;
  line-height: 1.4;
  transition: color .18s
}

.side-d {
  font-size: 11px;
  color: #bbb;
  margin-top: 5px
}

/* ── FUND TABLE ── */
.fund-table {
  width: 100%;
  border-collapse: collapse
}

.fund-table th {
  text-align: left;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  padding: 14px 18px;
  border-bottom: 2px solid var(--rule);
  background: #fafafa;
  white-space: nowrap
}

.fund-table td {
  padding: 18px;
  border-bottom: 1px solid var(--rule);
  font-size: 14px
}

.fund-table tr:hover td {
  background: var(--wash)
}

.fund-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  margin-bottom: 3px
}

.fund-isin {
  font-size: 11px;
  color: #ccc
}

.fund-badge {
  display: inline-block;
  background: rgba(224, 0, 0, .07);
  color: var(--red);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px
}

.pos {
  color: #2e7d32;
  font-weight: 700
}

.neg {
  color: var(--red);
  font-weight: 700
}

/* ── FOOTER ── */
.footer {
  background: (var(--rule));
  padding: 72px 88px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 5px;
  margin-bottom: 16px
}

.footer-about {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  max-width: 240px;
  margin-bottom: 24px
}

.social-row {
  display: flex;
  gap: 8px
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  transition: all .18s
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.footer-col h4 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px
}

.footer-col ul {
  list-style: none
}

.footer-col li {
  margin-bottom: 12px
}

.footer-col a {
  font-size: 13px;
  color: #555;
  transition: color .18s
}

.footer-col a:hover {
  color: var(--red)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 11.5px;
  color: #444;
  flex-wrap: wrap;
  gap: 12px
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap
}

.footer-links a {
  color: #444;
  transition: color .18s
}

.footer-links a:hover {
  color: #fff
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {

  .hero-body,
  .inner-hero-body,
  .ribbon,
  .qband {
    padding-left: 48px;
    padding-right: 48px
  }

  .sec,
  .sec-tight {
    padding-left: 44px;
    padding-right: 44px
  }

  .split-body {
    padding: 64px 44px
  }

  .footer {
    padding: 60px 44px 0
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }

  .bcrumb,
  .hero-dots {
    padding-left: 48px
  }
}

@media(max-width:900px) {
  .topbar {
    display: none
  }

  .nav-menu,
  .nav-login,
  .nav-search {
    display: none
  }

  .burger {
    display: flex
  }

  .nav {
    padding: 0 24px
  }

  .hero {
    height: 540px
  }

  .hero-body {
    padding: 0 28px;
    max-width: 100%
  }

  .hero-h1 {
    font-size: 34px
  }

  .btn-ghost-w {
    display: none
  }

  .hero-dots {
    left: 28px
  }

  .ql {
    display: none
  }

  .numbar,
  .numbar-dk {
    grid-template-columns: repeat(2, 1fr)
  }

  .nb-cell:nth-child(2),
  .nb-dk:nth-child(2) {
    border-right: none
  }

  .nb-cell:nth-child(3),
  .nb-dk:nth-child(3) {
    border-top: 1px solid var(--rule)
  }

  .nb-dk:nth-child(3) {
    border-top-color: rgba(255, 255, 255, .08)
  }

  .grid3,
  .grid4 {
    grid-template-columns: 1fr 1fr
  }

  .grid2 {
    grid-template-columns: 1fr
  }

  .sec,
  .sec-tight {
    padding: 52px 24px
  }

  .split {
    grid-template-columns: 1fr
  }

  .split-photo {
    min-height: 280px
  }

  .split-body {
    padding: 44px 24px
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .footer {
    padding: 40px 24px 0
  }

  .footer-bottom,
  .footer-links {
    flex-direction: column;
    align-items: flex-start
  }

  .qband {
    padding: 56px 24px
  }

  .qband blockquote {
    font-size: 22px
  }

  .ribbon {
    padding: 20px 24px
  }

  .inner-hero {
    height: 380px
  }

  .inner-hero-body {
    padding: 36px 24px
  }

  .ih-h1 {
    font-size: 36px
  }

  .bcrumb {
    padding: 12px 24px
  }

  .sec-row {
    flex-direction: column;
    align-items: flex-start
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .insight-wrap {
    grid-template-columns: 1fr
  }

  .tabs {
    gap: 0
  }

  .tab {
    padding: 12px 18px;
    font-size: 13px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .fund-table th:nth-child(3),
  .fund-table td:nth-child(3),
  .fund-table th:nth-child(4),
  .fund-table td:nth-child(4) {
    display: none
  }

  .two-col {
    grid-template-columns: 1fr !important
  }
}

@media(max-width:600px) {


  .nav-wordmark {
    width: 30%;
    margin: 2px 0px;
  }

  .grid3,
  .grid4 {
    grid-template-columns: 1fr
  }

  .hero-h1 {
    font-size: 28px
  }

  .sec-h {
    font-size: 28px
  }

  .split-h {
    font-size: 28px
  }

  .nb-cell,
  .nb-dk {
    padding: 32px 12px
  }

  .nb-num {
    font-size: 38px
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .ih-h1 {
    font-size: 28px
  }
}