/**
 * Krilogy main stylesheet
 * Desktop: 1440px Figma reference
 */

:root {
  --navy-700: #1a345e;
  --navy-800: #0f1f38;
  --orange-400: #df7e26;
  --cream-050: #fefefd;
  --gray-000: #ffffff;
  --gray-050: #f7f7f7;
  --gray-100: #e7e7e7;
  --gray-600: #616161;
  --gray-700: #474747;
  --gray-800: #2e2e2e;
  --card-blue: #2a5599;
  --card-blue-hover: #3468b0;
  --footer-muted: #b7c4da;

  --font-family: "Lora", Georgia, "Times New Roman", serif;
  --radius-card: 20px;
  --radius-btn: 999px;
  --radius-icon: 6px;

  --content-max: 1440px;
  --content-pad: 100px;
  --content-inner: 1240px;
  --hero-frame-pad: 40px;
  --hero-below-slide: 80px;

  --header-top: 44px;
  --header-main: 100px;
  --header-total: 144px;

  --body-size: 14px;
  --body-lh: 1.2;
  --display-size: 40px;
  --display-lh: 1.2;
}

/* -------------------------------------------------------------------------- */
/* Reset / base */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: calc(var(--header-total) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--body-size);
  font-weight: 400;
  line-height: var(--body-lh);
  color: var(--gray-800);
  background: var(--gray-000);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.krl-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--navy-800);
  color: var(--cream-050);
}

.krl-skip-link:focus {
  left: 16px;
  top: 16px;
}

.krl-container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.krl-main {
  /* avoid overflow-x/overflow-y pairing that clips vertically and hides the bridge mark */
  overflow: visible;
}

.krl-content {
  padding-block: 60px;
}

/* -------------------------------------------------------------------------- */
/* Flip italic (Figma: rotate-180 on “differently.”) */
/* -------------------------------------------------------------------------- */

.krl-flip-italic {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-style: italic;
  font-weight: 400;
  transform: rotate(180deg);
  transform-origin: center center;
}

/* -------------------------------------------------------------------------- */
/* Buttons — Figma: px-40 py-15 ≈ 40px tall with trimmed label */
/* -------------------------------------------------------------------------- */

.krl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: auto;
  min-height: 0;
  padding: 15px 40px;
  border-radius: var(--radius-btn);
  border: 0 solid transparent;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
  text-align: center;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.krl-btn > span {
  display: block;
  line-height: 1.2;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-btn--cream {
  background: var(--cream-050);
  color: var(--gray-800);
}

.krl-btn--cream:hover {
  background: var(--gray-000);
  color: var(--navy-700);
}

.krl-btn--navy {
  background: var(--navy-700);
  color: var(--gray-050);
}

.krl-btn--navy:hover {
  background: var(--orange-400);
  color: #ffffff;
}

.krl-btn--outline {
  background: transparent;
  color: var(--gray-800);
  border: 1px solid var(--navy-700);
  padding: 14px 39px; /* keep outer size ≈ 40px with 1px border */
}

.krl-btn--outline:hover {
  background: var(--navy-700);
  color: var(--gray-050);
}

.krl-btn--orange {
  background: var(--orange-400);
  color: var(--cream-050);
}

.krl-btn--orange:hover {
  background: #c96a1c;
  color: #ffffff;
}

/* -------------------------------------------------------------------------- */
/* Icons */
/* -------------------------------------------------------------------------- */

.krl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-icon);
  background: var(--orange-400);
  color: var(--cream-050);
  font-size: 20px;
  flex-shrink: 0;
}

.krl-icon svg,
.krl-icon img {
  width: 24px;
  height: 24px;
}

/* -------------------------------------------------------------------------- */
/* Section headings */
/* -------------------------------------------------------------------------- */

.krl-section-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--display-size);
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy-700);
  letter-spacing: 0;
}

.krl-section-heading--light {
  color: var(--cream-050);
}

.krl-section-heading--center {
  align-items: center;
  text-align: center;
}

.krl-section-heading--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  justify-content: center;
}

.krl-section-heading--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  justify-content: flex-start;
}

.krl-section-heading--inline .krl-section-heading__line {
  display: inline;
}

.krl-section-heading__line {
  display: block;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-section-heading__line--italic {
  font-style: italic;
  font-weight: 400;
}

/* -------------------------------------------------------------------------- */
/* Header — 144px total */
/* -------------------------------------------------------------------------- */

.krl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gray-000);
  color: var(--gray-800);
}

.krl-header__top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: var(--header-top);
  background: var(--navy-700);
  color: var(--cream-050);
}

.krl-header__utility {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.krl-header__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 31px;
  background: var(--navy-800);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.krl-header__utility-link:hover {
  color: var(--orange-400);
  background: #162744;
}

.krl-header__utility-link--first {
  border-top-left-radius: 10px;
}

.krl-header__utility-link--last {
  border-top-right-radius: 10px;
}

.krl-header__nav-caret,
.krl-header__caret {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  transform: rotate(180deg);
}

.krl-header__caret {
  filter: brightness(0) invert(1);
}

.krl-header__search-icon {
  width: 12px;
  height: 12px;
  color: #ffffff;
  flex-shrink: 0;
}

.krl-header__top-spacer {
  display: block;
  width: 100px;
  flex-shrink: 0;
  height: 1px;
}

.krl-header__main {
  position: relative;
  height: var(--header-main);
  max-width: var(--content-max);
  margin-inline: auto;
  background: var(--gray-000);
}

.krl-header__brand {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.krl-header__logo-link {
  display: block;
  text-decoration: none;
}

.krl-header__logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 69px;
  gap: 0;
}

.krl-header__logo-icon {
  width: 45px;
  height: 41px;
  object-fit: contain;
}

.krl-header__logo-wordmark {
  width: 175px;
  height: 28px;
  object-fit: contain;
}

.krl-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.krl-header__brand .custom-logo {
  max-height: 69px;
  width: auto;
}

.krl-header__nav {
  position: absolute;
  left: 435px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.krl-header__menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.krl-header__menu > li {
  position: relative;
}

.krl-header__menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.krl-header__menu > li > a:hover,
.krl-header__menu > li.current-menu-item > a,
.krl-header__menu > li.current-menu-ancestor > a {
  color: var(--orange-400);
}

.krl-header__menu > li > a:hover::before,
.krl-header__menu > li.current-menu-item > a::before,
.krl-header__menu > li.current-menu-ancestor > a::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 22px;
  height: 1px;
  background: var(--orange-400);
}

.krl-header__nav-caret {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

.krl-header__menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: var(--gray-000);
  box-shadow: 0 8px 24px rgba(15, 31, 56, 0.12);
  border-radius: 0 0 8px 8px;
  z-index: 20;
  list-style: none;
  margin: 0;
}

.krl-header__menu > li:hover > .sub-menu,
.krl-header__menu > li:focus-within > .sub-menu {
  display: block;
}

.krl-header__menu .sub-menu li {
  position: relative;
  margin: 0;
}

.krl-header__menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray-800);
  white-space: nowrap;
}

.krl-header__menu .sub-menu a:hover {
  color: var(--orange-400);
  background: var(--gray-050, #f7f7f7);
}

/* Services mega: primary list + persistent right flyout column */
.krl-header__menu > li.menu-item--services > .sub-menu {
  display: none;
  min-width: 520px;
  padding: 12px 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}

.krl-header__menu > li.menu-item--services:hover > .sub-menu,
.krl-header__menu > li.menu-item--services:focus-within > .sub-menu {
  display: flex;
}

.krl-header__menu > li.menu-item--services > .sub-menu > li:not(.menu-item--services-flyout) {
  flex: 1 1 100%;
  max-width: 280px;
}

.krl-header__menu > li.menu-item--services > .sub-menu > li.menu-item--services-flyout {
  flex: 0 0 240px;
  margin-left: auto;
  border-left: 1px solid var(--gray-100, #e7e7e7);
  align-self: stretch;
}

.krl-header__menu > li.menu-item--services > .sub-menu > li.menu-item--services-flyout > .sub-menu {
  display: block !important;
  position: static;
  min-width: 0;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.krl-header__menu > li.menu-item--services .menu-item--services-flyout > a,
.krl-header__menu > li.menu-item--services .menu-item--services-flyout > .krl-header__flyout-label:not(.screen-reader-text) {
  display: none;
}

.krl-header__menu > li.menu-item--services .menu-item--services-flyout .sub-menu a {
  white-space: normal;
}

.krl-header__cta {
  position: absolute;
  left: auto;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.krl-header__cta .krl-btn {
  padding: 15px 40px;
  font-size: 14px;
}

.krl-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.krl-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy-700);
  border-radius: 1px;
}

/* -------------------------------------------------------------------------- */
/* Hero carousel */
/* -------------------------------------------------------------------------- */

.krl-hero {
  background: var(--gray-000);
  padding: 0;
  position: relative;
  z-index: auto;
  overflow: visible;
}

.krl-hero__frame {
  max-width: var(--content-max);
  margin-inline: auto;
  /* Figma main: p-[40px] below 144px header */
  padding: var(--hero-frame-pad);
  position: relative;
  z-index: auto;
  overflow: visible;
}

.krl-hero__stage {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  overflow: visible;
  z-index: auto;
}

.krl-hero__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  z-index: 1;
}

/*
 * Hero bridge watermark — PNG asset (transparent, lightened for dark UI).
 * Flush to frame left; scale with frame; tuck top under slide bottom.
 */
.krl-hero__bridge-watermark {
  position: absolute;
  top: 100%;
  left: calc(-1 * var(--hero-frame-pad));
  width: calc((100% + 2 * var(--hero-frame-pad)) * 0.36);
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.krl-hero__bridge-watermark img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-28%);
}

.krl-hero__track {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.krl-hero__slide {
  display: grid;
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
  /* Keep 1360×548 Figma ratio so deco + bridge watermark stay locked */
  aspect-ratio: 1360 / 548;
  height: auto;
  min-height: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
}

/* navy_image_right — content LEFT ~690, image RIGHT ~670 */
.krl-hero__slide--navy-image-right {
  grid-template-columns: minmax(0, 690fr) minmax(0, 670fr);
}

.krl-hero__slide--navy-image-right .krl-hero__panel--copy {
  position: relative;
  background: var(--navy-700);
  color: var(--cream-050);
  display: block;
  overflow: hidden;
  min-width: 0;
}

.krl-hero__slide--navy-image-right .krl-hero__content {
  position: absolute;
  right: clamp(20px, 8.7%, 60px);
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: min(253px, calc(100% - 40px));
  max-width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
  z-index: 1;
  box-sizing: border-box;
}

.krl-hero__slide--navy-image-right .krl-hero__heading {
  gap: 2px;
  margin-bottom: 0;
  width: 100%;
  align-items: flex-end;
}

.krl-hero__slide--navy-image-right .krl-hero__heading,
.krl-hero__slide--navy-image-right .krl-hero__body {
  text-align: right;
  color: #ffffff;
}

.krl-hero__slide--navy-image-right .krl-hero__body {
  margin-bottom: 0;
  width: 100%;
}

.krl-hero__slide--navy-image-right .krl-hero__heading-line {
  width: fit-content;
  max-width: 100%;
}

.krl-hero__slide--navy-image-right .krl-hero__deco {
  position: absolute;
  left: calc(100% * -1082 / 690);
  top: 0;
  width: calc(100% * 1495 / 690);
  max-width: none;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  /* Width-relative vertical nudge (Figma top -439 on 1354-tall art) */
  transform: translateY(calc(100% * -439 / 1354));
}

.krl-hero__slide--navy-image-right .krl-hero__panel--media {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

/* Figma crop: h 114.6% / w 140.8% / left -38% / top -12% */
.krl-hero__slide--navy-image-right .krl-hero__panel--media .krl-hero__image {
  position: absolute;
  inset: auto;
  left: -38.03%;
  top: -12.42%;
  width: 140.8%;
  height: 114.6%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
}

/* orange_image_left — image LEFT ~677, orange RIGHT ~683 */
.krl-hero__slide--orange-image-left {
  grid-template-columns: minmax(0, 677fr) minmax(0, 683fr);
}

.krl-hero__slide--orange-image-left .krl-hero__panel--media {
  order: -1;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.krl-hero__slide--orange-image-left .krl-hero__panel--media .krl-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.krl-hero__slide--orange-image-left .krl-hero__panel--copy {
  position: relative;
  background: var(--orange-400);
  color: var(--cream-050);
  display: block;
  overflow: hidden;
  min-width: 0;
  padding: 0;
}

.krl-hero__slide--orange-image-left .krl-hero__content {
  position: absolute;
  left: clamp(24px, 8.8%, 60px);
  top: 50%;
  transform: translateY(calc(-50% + 8px));
  width: min(410px, calc(100% - 48px));
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 1;
  box-sizing: border-box;
}

.krl-hero__slide--orange-image-left .krl-hero__heading {
  font-size: 41px;
  line-height: 1.2;
  color: #ffffff;
  gap: 10px 9px;
  margin-bottom: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
}

.krl-hero__slide--orange-image-left .krl-hero__heading-line {
  display: inline;
  white-space: nowrap;
  line-height: 1.2;
}

.krl-hero__slide--orange-image-left .krl-hero__body {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0;
  max-width: 315px;
}

/* Figma text group: heading + body gap 18px inside content gap 20 */
.krl-hero__slide--orange-image-left .krl-hero__heading + .krl-hero__body {
  margin-top: -2px;
}

.krl-hero__slide--orange-image-left .krl-hero__deco {
  position: absolute;
  left: calc(100% * 204 / 683);
  top: 0;
  width: calc(100% * 1495 / 683);
  max-width: none;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transform: translateY(calc(100% * -439 / 1354));
}

/* navy_full — masked photo + copy on right */
.krl-hero__slide--navy-full {
  grid-template-columns: 1fr;
}

.krl-hero__slide--navy-full .krl-hero__panel--full {
  position: relative;
  grid-column: 1 / -1;
  background: var(--navy-700);
  color: var(--cream-050);
  display: block;
  min-height: 548px;
  overflow: hidden;
  padding: 0;
}

/* Figma: absolute h-1710 left-[-466] top-[-562] w-[2032] on 1360×548 */
.krl-hero__slide--navy-full .krl-hero__media--masked {
  position: absolute;
  left: -34.2647%;
  top: -102.5547%;
  width: 149.417%;
  height: 312.0438%;
  z-index: 0;
  pointer-events: none;
}

/* Figma: left-316 top-465 w-1076 h-772 inside 2032×1710 */
.krl-hero__slide--navy-full .krl-hero__masked-frame {
  position: absolute;
  left: 15.55%;
  top: 27.193%;
  width: 52.951%;
  height: 45.146%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
 * Mask SVG is already in final screen orientation (spine on the right).
 * Figma's rotate-180 + scaleY(-1) wrapper would mirror it the wrong way.
 */
.krl-hero__slide--navy-full .krl-hero__masked-orient {
  width: 100%;
  height: 100%;
  transform: none;
  flex: none;
}

.krl-hero__slide--navy-full .krl-hero__masked-photo {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-mask-image: var(--krl-hero-mask);
  mask-image: var(--krl-hero-mask);
  /* Figma mask-size 1888×1710 on 1076×772 element */
  -webkit-mask-size: 175.471% 221.503%;
  mask-size: 175.471% 221.503%;
  /*
   * CSS %-position: offset = %/100 * (elementSize - maskSize).
   * Want px offsets -939 / -465 with mask larger than element → positive %:
   * x = -939 / (1076 - 1888.074) = 115.64%
   * y = -465 / (772 - 1710) = 49.57%
   */
  -webkit-mask-position: 115.64% 49.57%;
  mask-position: 115.64% 49.57%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.krl-hero__slide--navy-full .krl-hero__masked-photo .krl-hero__image {
  position: absolute;
  left: 0.01%;
  top: 0.04%;
  width: 99.95%;
  height: 99.93%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.krl-hero__slide--navy-full .krl-hero__content {
  position: absolute;
  left: clamp(48%, 55.88%, 760px);
  top: 50%;
  transform: translateY(-50%);
  width: min(415px, calc(100% - 48px));
  max-width: min(415px, 42%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  box-sizing: border-box;
}

.krl-hero__slide--navy-full .krl-hero__heading {
  font-size: 41px;
  gap: 10px 9px;
  margin-bottom: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  color: #ffffff;
  line-height: 1.2;
}

.krl-hero__slide--navy-full .krl-hero__heading-line {
  display: inline;
  white-space: nowrap;
  line-height: 1.2;
}

.krl-hero__slide--navy-full .krl-hero__body {
  margin-bottom: 0;
  max-width: 315px;
  color: #ffffff;
}

.krl-hero__slide--navy-full .krl-hero__heading + .krl-hero__body {
  margin-top: -20px; /* Figma text group gap 20 inside content gap 40 */
}

.krl-hero__panel--media {
  min-height: 0;
  overflow: hidden;
}

.krl-hero__panel--media .krl-hero__image,
.krl-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 0;
}

.krl-hero__heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  color: inherit;
  margin-bottom: 0;
}

.krl-hero__heading--wrap {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 9px;
}

.krl-hero__heading-line {
  display: block;
  line-height: 1.05;
}

@supports (text-box-trim: trim-both) {
  .krl-hero__heading {
    gap: 2px;
  }

  .krl-hero__heading--wrap {
    gap: 4px 9px;
  }

  .krl-hero__heading-line {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }

  .krl-hero__body {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

.krl-hero__heading-line--italic {
  font-style: italic;
  font-weight: 400;
}

.krl-hero__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0;
  opacity: 1;
}

.krl-hero__actions {
  margin-top: 0;
}

.krl-hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.krl-hero__dots {
  display: flex;
  align-items: center;
  gap: 17px;
}

.krl-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.2s ease, border-radius 0.2s ease;
}

.krl-hero__dot.is-active,
.krl-hero__dot--pill {
  width: 33px;
  height: 8px;
  border-radius: 999px;
  background: var(--gray-100);
  overflow: hidden;
}

.krl-hero__dot.is-active::after,
.krl-hero__dot--pill::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--orange-400);
  border-radius: inherit;
  animation: krl-hero-progress var(--krl-hero-interval, 9000ms) linear forwards;
}

@keyframes krl-hero-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.krl-hero__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 0;
  padding: 0;
  color: var(--gray-800);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.krl-hero__pause:hover {
  opacity: 1;
}

.krl-hero__pause img {
  width: 8px;
  height: 8px;
  display: block;
}

.krl-hero__pause-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.krl-hero__pause[aria-pressed="true"] img {
  opacity: 0.5;
}

/* -------------------------------------------------------------------------- */
/* Services intro */
/* -------------------------------------------------------------------------- */

.krl-services {
  background: transparent;
  color: var(--gray-800);
  padding: 70px 0 80px;
  position: relative;
  z-index: auto;
  overflow: visible;
}

.krl-services .krl-container {
  position: relative;
  z-index: 1;
}

.krl-services__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 715px;
}

.krl-services .krl-section-heading {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-services .krl-section-heading__line--italic {
  font-size: 50px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.krl-services__intro {
  max-width: 607px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: space-between;
}

.krl-service-card {
  width: 100%;
  max-width: 100%;
  height: 350px;
  background: var(--card-blue);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Shared logo watermark hover — oversized mark, bottom-right crop (Figma hover) */
.krl-service-card__media,
.krl-testimonial-card__media {
  position: absolute;
  inset: 0;
  background-color: transparent;
  background-image: url("../images/card-hover-logo.svg");
  background-repeat: no-repeat;
  background-size: 220% auto;
  background-position: 118% 85%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.4s ease, transform 0.45s ease;
  z-index: 0;
  pointer-events: none;
}

.krl-service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  flex: 1;
  min-height: 0;
}

.krl-service-card:hover,
.krl-testimonial-card:hover {
  background: var(--card-blue-hover);
}

.krl-service-card:hover .krl-service-card__media,
.krl-testimonial-card:hover .krl-testimonial-card__media {
  opacity: 0.22;
  transform: scale(1);
}

.krl-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}

.krl-service-card__icon {
  margin-bottom: 4px;
}

.krl-service-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.krl-service-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  flex: 1;
}

.krl-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.25s ease;
}

.krl-service-card__link span {
  display: inline-block;
}

.krl-service-card:hover .krl-service-card__link,
.krl-service-card__link:hover {
  color: var(--orange-400);
}

/* -------------------------------------------------------------------------- */
/* Collage content — Figma Gallery-slider (positions driven by JS) */
/* -------------------------------------------------------------------------- */

.krl-collage {
  background: var(--gray-000);
  padding: 40px 0 80px;
  overflow: hidden;
}

.krl-collage__inner {
  position: relative;
  width: 100%;
  max-width: 973px;
  height: 754px;
  margin-inline: auto;
}

.krl-collage__gallery {
  position: absolute;
  left: 0;
  top: 0;
  width: 858px;
  max-width: 100%;
  height: 754px;
  overflow: visible;
}

.krl-collage__gallery.is-ready .krl-collage__item {
  visibility: visible;
}

.krl-collage__copy {
  position: absolute;
  left: 597px;
  top: 162px;
  width: 376px;
  max-width: calc(100% - 40px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
}

.krl-collage__copy a,
.krl-collage__copy .krl-text-link {
  pointer-events: auto;
}

.krl-collage .krl-section-heading {
  color: var(--navy-700);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  gap: 13px;
}

.krl-collage__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-collage .krl-text-link {
  margin-top: 0;
}

.krl-collage__item {
  margin: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gray-100);
  visibility: hidden;
  will-change: left, top, width, height, opacity;
  box-shadow: none;
  pointer-events: none;
}

.krl-collage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------------------- */
/* Measure stats */
/* -------------------------------------------------------------------------- */

.krl-measure {
  background: var(--gray-000);
  padding: 50px 0;
}

.krl-measure .krl-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 70px;
}

.krl-measure__header {
  display: contents;
}

.krl-measure__divider {
  order: -1;
}

.krl-measure__divider,
.krl-foundation__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.krl-measure__rule,
.krl-foundation__rule {
  flex: 1;
  height: 1px;
  background: var(--navy-700);
}

.krl-measure__divider-icon,
.krl-foundation__divider-icon {
  flex-shrink: 0;
  width: 56px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-000);
}

.krl-measure__divider-img,
.krl-foundation__divider-img {
  max-height: 50px;
  width: auto;
}

.krl-measure .krl-section-heading,
.krl-measure__heading {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
}

.krl-measure__heading .krl-section-heading__line {
  display: inline;
  white-space: nowrap;
}

.krl-measure__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.krl-measure__value {
  display: block;
  font-size: 90px;
  font-weight: 700;
  font-style: italic;
  line-height: 90px;
  color: var(--navy-700);
  letter-spacing: 0;
}

.krl-measure__label {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-700);
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Expertise cards */
/* -------------------------------------------------------------------------- */

.krl-expertise {
  background: var(--gray-000);
  color: var(--gray-800);
  padding: 50px 0 100px;
}

.krl-expertise__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 715px;
}

.krl-expertise .krl-section-heading {
  gap: 2px;
  color: var(--gray-800);
}

.krl-expertise__intro {
  max-width: 715px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: space-between;
}

.krl-expertise-card {
  width: 100%;
  max-width: 100%;
  height: 287px;
  background: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: none;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.krl-expertise-card:hover {
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.06);
}

.krl-expertise-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-expertise-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

/* -------------------------------------------------------------------------- */
/* Dual CTA */
/* -------------------------------------------------------------------------- */

.krl-dual-cta {
  background: #f9fafb;
  padding: 76px 0 100px;
}

.krl-dual-cta__inner {
  max-width: 357px;
  margin: 0 auto;
  text-align: left;
  padding-inline: 0;
}

.krl-dual-cta__heading {
  font-family: var(--font-family);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
  margin: 0 0 22px;
  display: flex;
  flex-wrap: nowrap;
  gap: 11px;
  align-items: baseline;
  white-space: nowrap;
}

.krl-dual-cta__heading em {
  font-style: italic;
  font-weight: 400;
}

.krl-dual-cta__body {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
  margin: 0 0 22px;
}

.krl-dual-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 241px;
}

.krl-dual-cta__actions .krl-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Home band — Figma Layer_1 (1685:5151) behind foundation → insights */
/* Full unclipped art; sits above section fills so it reads on gray-050 too */
/* -------------------------------------------------------------------------- */

.krl-home-band {
  --krl-band-vb-w: 3637.4734;
  --krl-band-vb-h: 3469.225;
  --krl-band-vb-x: -104.1934;
  --krl-band-vb-y: -286.175;
  position: relative;
  background: var(--gray-000);
  overflow-x: clip;
  overflow-y: hidden;
}

.krl-home-band__watermark {
  position: absolute;
  top: 0;
  /* Artboard x=0 → viewport left; 1440 units → 100vw (full bleed, reaches right edge) */
  left: calc(50% - 50vw + var(--krl-band-vb-x) * 100vw / 1440);
  width: calc(var(--krl-band-vb-w) * 100vw / 1440);
  height: auto;
  max-width: none;
  transform: translateY(calc(var(--krl-band-vb-y) / var(--krl-band-vb-h) * -100%));
  pointer-events: none;
  user-select: none;
  z-index: 1;
  display: block;
}

/* Lift section content above the watermark; section backgrounds stay underneath */
.krl-home-band > section > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .krl-home-band__watermark {
    display: none;
  }
}

.krl-foundation {
  background: transparent;
  color: var(--navy-700);
  padding: 80px 0 90px;
  position: relative;
}

.krl-foundation .krl-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.krl-foundation__header {
  display: contents;
}

.krl-foundation__heading {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
  color: var(--gray-800);
  font-size: 40px;
  font-weight: 400;
}

.krl-foundation__heading .krl-section-heading__line {
  display: inline;
  white-space: nowrap;
}

.krl-foundation__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
  order: 2;
}

.krl-foundation__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}

.krl-foundation__value {
  display: block;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--navy-700);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-foundation__label {
  display: block;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-foundation__divider {
  order: 3;
  margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* Testimonials */
/* -------------------------------------------------------------------------- */

.krl-testimonials {
  background: transparent;
  padding: 80px 0 120px;
  position: relative;
}

.krl-testimonials__header {
  margin-bottom: 48px;
}

.krl-testimonials .krl-section-heading {
  font-size: 41px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-testimonials__intro {
  margin-top: 20px;
  max-width: 608px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: space-between;
}

.krl-testimonial-card {
  width: 100%;
  max-width: 100%;
  height: 376px;
  background: var(--card-blue);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  border: none;
  box-shadow: none;
  margin: 0;
  transition: background-color 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.krl-testimonial-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
}

.krl-testimonial-card__quote {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.krl-testimonial-card__quote::before {
  content: none;
}

.krl-testimonial-card__meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}

.krl-testimonial-card__name {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #ffffff;
}

.krl-testimonial-card__role {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}

.krl-testimonials__disclaimer {
  margin-top: 48px;
  margin-inline: auto;
  max-width: 956px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-600);
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Insights grid — Figma article-card 400×510 */
/* -------------------------------------------------------------------------- */

.krl-insights {
  background: var(--gray-050);
  padding: 100px 0 120px;
  position: relative;
}

.krl-insights__header {
  margin-bottom: 48px;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.krl-insights .krl-section-heading {
  color: var(--gray-700);
  font-size: 41px;
  max-width: 576px;
  line-height: 1.09;
  gap: 0;
}

.krl-insights .krl-section-heading__line--italic {
  font-style: italic;
}

.krl-insights__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
  max-width: 100%;
}

.krl-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  justify-content: space-between;
}

.krl-insight-card {
  width: 100%;
  max-width: 100%;
  height: 510px;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.krl-insight-card__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
  min-height: 0;
}

.krl-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.krl-insight-card__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--navy-700);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.krl-insight-card__read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9ba7a8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.krl-insight-card__clock {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
}

.krl-insight-card__media {
  display: block;
  width: 100%;
  height: 178px;
  overflow: hidden;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
}

.krl-insight-card__media-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  flex-shrink: 0;
}

.krl-insight-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.krl-insight-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.krl-insight-card__play img {
  display: block;
  width: 32px;
  height: 32px;
}

.krl-insight-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #fcf2e9;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: var(--radius-btn);
  width: fit-content;
  white-space: nowrap;
}

.krl-insight-card--tagged {
  height: 571px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 3px rgba(0, 0, 0, 0.05);
}

.krl-insight-card__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 0;
}

.krl-insight-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
  margin: 0;
}

.krl-insight-card__title a {
  color: inherit;
  transition: color 0.25s ease;
}

.krl-insight-card:hover .krl-insight-card__title a,
.krl-insight-card__title a:hover {
  color: var(--orange-400);
}

.krl-insight-card__excerpt {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--gray-700);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.krl-insight-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.krl-insight-card__byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: #9ba7a8;
  text-transform: uppercase;
  white-space: nowrap;
}

.krl-insight-card__avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.krl-insight-card__read-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--gray-700);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.krl-insight-card:hover .krl-insight-card__read-link,
.krl-insight-card__read-link:hover {
  color: var(--orange-400);
}

.krl-insights__cta,
.krl-insights-news__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.krl-insights__cta .krl-btn--outline,
.krl-insights-news__cta .krl-btn--outline {
  border-width: 2px;
  border-color: var(--navy-700);
  padding: 13px 38px;
}

.krl-insights__empty {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* Insights page — hero */
/* -------------------------------------------------------------------------- */

.krl-insights-hero {
  background: #ffffff;
  padding: 40px 0;
}

.krl-insights-hero__frame {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 388px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.krl-insights-hero__panel {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  height: 388px;
}

.krl-insights-hero__panel--media {
  flex: 0 0 650px;
  width: 650px;
  max-width: none;
}

.krl-insights-hero__panel--copy {
  flex: 0 0 690px;
  width: 690px;
  background: var(--navy-800);
  min-width: 0;
}

.krl-insights-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.krl-insights-hero__pattern {
  position: absolute;
  left: -841px;
  top: -527px;
  width: 1495px;
  height: 1354px;
  max-width: none;
  pointer-events: none;
  opacity: 1;
}

.krl-insights-hero__copy {
  position: absolute;
  left: 38px;
  top: 103px;
  transform: none;
  width: 363px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 1;
}

.krl-insights-hero__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #ffffff;
}

.krl-insights-hero__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.01;
}

.krl-insights-hero__heading-line {
  display: block;
  max-width: 363px;
}

.krl-insights-hero__heading-line--italic {
  font-style: italic;
  line-height: 1.2;
  height: 28px;
}

.krl-insights-hero__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  max-width: 351px;
}

/* -------------------------------------------------------------------------- */
/* Insights page — filters */
/* -------------------------------------------------------------------------- */

.krl-insights-filters {
  background: #ffffff;
  padding: 40px 0 50px;
}

.krl-insights-filters .krl-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-insights-filters__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 709px;
  margin-bottom: 0;
}

.krl-insights-hero__eyebrow,
.krl-insights-hero__heading,
.krl-insights-hero__heading-line,
.krl-insights-hero__body,
.krl-insights-filters__heading,
.krl-insights-filters__intro,
.krl-insights-filters__label,
.krl-insights-filters__count,
.krl-insights-filters__select,
.krl-insights-filters__input,
.krl-insights--archive .krl-section-heading,
.krl-insights--archive .krl-section-heading__line,
.krl-insights--archive .krl-insights__intro,
.krl-insights-news__heading,
.krl-insights-news__intro {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-insights-filters__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-insights-filters__heading-italic {
  font-style: italic;
}

.krl-insights-filters__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
  text-box-trim: unset;
  text-box-edge: unset;
  height: 17px;
  display: flex;
  align-items: center;
}

.krl-insights-filters__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.krl-insights-filters__row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  width: 100%;
}

.krl-insights-filters__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 239px;
  width: 239px;
  min-width: 0;
}

.krl-insights-filters__field--search {
  flex: 1 1 auto;
  width: auto;
}

.krl-insights-filters__label {
  font-size: 12px;
  line-height: 1.2;
  color: #7d7d7d;
}

.krl-insights-filters__select,
.krl-insights-filters__input {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1px solid #d1d6df;
  border-radius: 10px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-insights-filters__select {
  /* Figma selects show value only — no caret glyph */
  background-image: none;
  padding-right: 20px;
  cursor: pointer;
}

.krl-insights-filters__input-wrap {
  position: relative;
  width: 100%;
}

.krl-insights-filters__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-800);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.krl-insights-filters__input {
  padding: 0 20px 0 48px;
}

.krl-insights-filters__count {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-700);
}

/* -------------------------------------------------------------------------- */
/* Insights page — archive tweaks */
/* -------------------------------------------------------------------------- */

.krl-insights--archive {
  padding: 100px 0;
}

.krl-insights--archive .krl-section-heading {
  font-size: 32px;
  line-height: 1.05;
  color: var(--gray-800);
  max-width: none;
  width: max-content;
  max-width: 100%;
  font-weight: 400;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.35em;
  white-space: nowrap;
}

.krl-insights--archive .krl-insights__header {
  margin-bottom: 40px;
  gap: 20px;
  max-width: 709px;
}

.krl-insights--archive .krl-insights__intro {
  max-width: 709px;
}

.krl-insights--archive .krl-insights__cta {
  margin-top: 40px;
}

.krl-insight-card--tagged .krl-insight-card__excerpt {
  -webkit-line-clamp: 3;
}

.krl-insight-card--tagged .krl-insight-card__title {
  font-weight: 700;
  letter-spacing: 0;
}

/* -------------------------------------------------------------------------- */
/* Insights page — latest news carousel */
/* -------------------------------------------------------------------------- */

.krl-insights-news {
  background: #e8ebef;
  padding: 100px 0;
}

.krl-insights-news__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 709px;
  margin-bottom: 40px;
}

.krl-insights-news__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-insights-news__heading-italic {
  font-style: italic;
}

.krl-insights-news__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
  max-width: 709px;
}

.krl-insights-news__viewport {
  overflow: hidden;
  width: calc(100% + var(--content-pad));
  max-width: none;
}

.krl-insights-news__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.krl-insights-news__slide {
  flex: 0 0 400px;
  width: 400px;
}

.krl-insights-news__slide .krl-insight-card {
  width: 100%;
  max-width: 100%;
}

.krl-insights-news__dots {
  display: flex;
  gap: 17px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.krl-insights-news__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--gray-100);
  cursor: pointer;
}

.krl-insights-news__dot.is-active {
  background: var(--orange-400);
}

.krl-insights-news__cta {
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .krl-insights-hero__frame {
    width: calc(100% - 48px);
    height: auto;
    flex-direction: column;
  }

  .krl-insights-hero__panel,
  .krl-insights-hero__panel--media,
  .krl-insights-hero__panel--copy {
    width: 100%;
    max-width: 100%;
    flex: none;
    height: 320px;
  }

  .krl-insights-hero__copy {
    top: 50%;
    transform: translateY(-50%);
    width: min(363px, calc(100% - 48px));
    left: 24px;
  }

  .krl-insights-filters__row {
    flex-wrap: wrap;
  }

  .krl-insights-filters__field {
    flex: 1 1 calc(50% - 20px);
    width: auto;
  }

  .krl-insights-filters__field--search {
    flex: 1 1 100%;
  }

  .krl-insights-news__slide {
    flex-basis: 320px;
    width: 320px;
  }
}

@media (max-width: 720px) {
  .krl-insight-card--tagged {
    height: auto;
    min-height: 510px;
  }

  .krl-insights-hero__heading {
    font-size: 28px;
  }

  .krl-insights-hero__heading-line--italic {
    height: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* CTA banner */
/* -------------------------------------------------------------------------- */

.krl-cta-banner {
  background: var(--navy-700);
  color: var(--cream-050);
  padding: 52px 0 53px;
  box-sizing: border-box;
}

.krl-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 51px;
  position: relative;
  min-height: 228px;
}

.krl-cta-banner__copy {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 259px;
  flex-shrink: 0;
}

.krl-cta-banner .krl-section-heading {
  text-align: right;
  align-items: flex-end;
  gap: 13px;
  font-size: 41.367px;
  color: #ffffff;
  line-height: 0.72;
  font-weight: 400;
}

.krl-cta-banner .krl-section-heading__line {
  line-height: 0.72;
  display: block;
}

/* Figma: 21px between “do wealth” and flipped “differently?” (13 + 8) */
.krl-cta-banner .krl-flip-italic {
  margin-top: 8px;
  line-height: 0.72;
}

.krl-cta-banner .krl-btn {
  height: 40px;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 40px;
}

.krl-cta-banner__body {
  margin: 0;
  max-width: 259px;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  text-align: right;
}

.krl-cta-banner__actions {
  margin-top: 0;
}

.krl-cta-banner__media {
  width: 449px;
  max-width: 100%;
  height: 224px;
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}

.krl-cta-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@supports (text-box-trim: trim-both) {
  .krl-cta-banner .krl-section-heading__line,
  .krl-cta-banner__body {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

/* -------------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------------- */

.krl-footer {
  background: var(--navy-700);
  color: var(--cream-050);
}

.krl-footer__main {
  padding: 80px 0 48px;
}

.krl-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 34px;
}

.krl-footer__heading {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--footer-muted);
}

.krl-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.krl-footer__menu a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  transition: color 0.2s ease;
}

.krl-footer__menu a:hover {
  color: var(--orange-400);
}

.krl-footer__newsletter {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 294px;
  gap: 0;
  height: 40px;
}

.krl-footer__input {
  flex: 1;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: #e8ebef;
  color: var(--gray-800);
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 40px;
  box-sizing: border-box;
  box-shadow: inset 0 2px 24px rgba(0, 0, 0, 0.13);
}

.krl-footer__input::placeholder {
  color: var(--gray-600);
  line-height: 40px;
}

.krl-footer__input:focus {
  outline: 2px solid var(--orange-400);
  outline-offset: 0;
}

.krl-footer__submit {
  flex: 0 0 auto;
  align-self: stretch;
  border: 0;
  border-radius: 0 999px 999px 0;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  padding: 0 30px;
  background: var(--gray-000);
  color: var(--navy-700);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.krl-footer__submit:hover {
  color: var(--orange-400);
}

/* Figma Frame 621: copyright at x=711, w=657 on the 1440 artboard */
.krl-footer__legal {
  display: block;
}

.krl-footer__copyright {
  max-width: 657px;
  width: 100%;
  margin: 0;
  margin-left: calc(711 / 1440 * 100%);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--footer-muted);
  text-align: left;
}

@media (max-width: 768px) {
  .krl-footer__copyright {
    margin-left: 0;
    max-width: none;
  }
}

.krl-footer__deco {
  width: 100%;
  max-width: 100vw;
  height: 582px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  background: var(--navy-700);
}

.krl-footer__deco-masked {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 952px;
  -webkit-mask-image: var(--krl-footer-mask);
  mask-image: var(--krl-footer-mask);
  -webkit-mask-size: 2965px 2686px;
  mask-size: 2965px 2686px;
  -webkit-mask-position: -726px 30px;
  mask-position: -726px 30px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.krl-footer__deco-masked img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  display: block;
}

.krl-footer__deco-masked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 52, 94, 0.7);
  mix-blend-mode: color;
  pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* Desktop fidelity lock — only at full Figma canvas width */
/* -------------------------------------------------------------------------- */

@media (min-width: 1440px) {
  .krl-services__grid,
  .krl-expertise__grid,
  .krl-testimonials__grid,
  .krl-insights__grid {
    grid-template-columns: repeat(3, 400px);
  }

  .krl-service-card,
  .krl-expertise-card,
  .krl-testimonial-card,
  .krl-insight-card {
    width: 400px;
    max-width: 400px;
  }
}

/* -------------------------------------------------------------------------- */
/* Laptop: fluid cards + readable hero below Figma 1440 canvas */
/* -------------------------------------------------------------------------- */

@media (max-width: 1439px) and (min-width: 1025px) {
  :root {
    --content-pad: clamp(32px, 4.5vw, 64px);
  }

  .krl-services__grid,
  .krl-expertise__grid,
  .krl-testimonials__grid,
  .krl-insights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 20px);
  }

  .krl-service-card,
  .krl-expertise-card,
  .krl-testimonial-card,
  .krl-insight-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    padding: clamp(24px, 2.4vw, 40px);
  }

  .krl-service-card {
    min-height: 320px;
  }

  .krl-expertise-card {
    min-height: 260px;
  }

  .krl-testimonial-card {
    min-height: 340px;
  }

  .krl-insight-card {
    min-height: 460px;
  }

  .krl-service-card__title {
    font-size: clamp(18px, 1.7vw, 24px);
  }

  .krl-expertise-card__title {
    font-size: clamp(16px, 1.5vw, 19px);
  }

  .krl-testimonial-card__quote {
    font-size: clamp(16px, 1.55vw, 20px);
  }

  .krl-insight-card__title {
    font-size: clamp(18px, 1.6vw, 22px);
  }
}

@media (max-width: 1360px) and (min-width: 1025px) {
  :root {
    --hero-frame-pad: 32px;
    --hero-below-slide: 72px;
  }

  .krl-hero__frame {
    padding: 36px var(--hero-frame-pad);
  }

  .krl-hero__slide--navy-image-right .krl-hero__content {
    right: clamp(16px, 6%, 48px);
    width: min(253px, calc(100% - 32px));
    gap: 20px;
  }

  .krl-hero__slide--navy-image-right .krl-hero__heading {
    font-size: clamp(32px, 3.2vw, 40px);
    gap: 12px;
  }

  .krl-hero__slide--orange-image-left .krl-hero__content {
    left: clamp(20px, 6%, 48px);
    width: min(410px, calc(100% - 40px));
  }

  .krl-hero__slide--orange-image-left .krl-hero__heading,
  .krl-hero__slide--navy-full .krl-hero__heading {
    font-size: clamp(32px, 3.2vw, 41px);
  }

  .krl-hero__slide--navy-full .krl-hero__content {
    left: clamp(46%, 54%, 700px);
    width: min(400px, calc(100% - 40px));
    max-width: 44%;
    gap: 32px;
  }

  .krl-header__cta {
    right: clamp(16px, 3vw, 48px);
  }

  .krl-header__menu > li > a {
    padding: 20px 14px;
  }

  .krl-header__nav {
    left: 360px;
    right: 280px;
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive: 1024 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  :root {
    --content-pad: 48px;
  }

  .krl-header__brand {
    left: 48px;
  }

  .krl-header__nav {
    left: 260px;
  }

  .krl-header__cta {
    left: auto;
    right: 48px;
  }

  .krl-header__menu > li > a {
    padding: 20px 14px;
  }

  .krl-header__top-spacer {
    width: 48px;
  }

  .krl-hero__frame {
    --hero-frame-pad: 24px;
    padding: 32px var(--hero-frame-pad);
  }

  .krl-hero__slide {
    aspect-ratio: auto;
    height: 480px;
    min-height: 480px;
  }

  .krl-hero__slide--navy-image-right,
  .krl-hero__slide--orange-image-left {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .krl-hero__slide--navy-image-right .krl-hero__content {
    right: 24px;
    width: min(230px, calc(100% - 40px));
    gap: 18px;
  }

  .krl-hero__slide--orange-image-left .krl-hero__content {
    left: 28px;
    width: min(340px, calc(100% - 48px));
  }

  .krl-hero__slide--navy-full .krl-hero__content {
    left: 52%;
    max-width: 46%;
    width: min(360px, calc(100% - 40px));
    gap: 28px;
  }

  .krl-hero__slide--navy-full .krl-hero__panel--full {
    padding: 0;
    min-height: 480px;
  }

  .krl-hero__panel--media .krl-hero__image,
  .krl-hero__image {
    min-height: 0;
  }

  .krl-section-heading,
  .krl-hero__heading,
  .krl-dual-cta__heading {
    font-size: 34px;
  }

  .krl-hero__slide--orange-image-left .krl-hero__heading,
  .krl-hero__slide--navy-full .krl-hero__heading {
    font-size: 34px;
  }

  .krl-services .krl-section-heading__line--italic {
    font-size: 44px;
  }

  .krl-services__grid,
  .krl-expertise__grid,
  .krl-testimonials__grid,
  .krl-insights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .krl-service-card,
  .krl-expertise-card,
  .krl-testimonial-card,
  .krl-insight-card {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .krl-measure__value {
    font-size: 64px;
    line-height: 1;
  }

  .krl-foundation__stats {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .krl-foundation__value {
    font-size: 42px;
  }

  .krl-collage__inner {
    position: relative;
    height: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .krl-collage__gallery {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 520px;
    max-width: 100%;
  }

  .krl-collage__copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    pointer-events: auto;
  }

  .krl-services .krl-section-heading__line--italic {
    white-space: normal;
    font-size: 36px;
  }

  .krl-cta-banner__inner {
    flex-direction: column;
    gap: 36px;
  }

  .krl-cta-banner__copy,
  .krl-cta-banner .krl-section-heading,
  .krl-cta-banner__body {
    text-align: left;
    align-items: flex-start;
  }

  .krl-cta-banner__media {
    width: 100%;
    height: auto;
    aspect-ratio: 449 / 224;
  }

  .krl-services__intro,
  .krl-expertise__intro {
    justify-self: start;
  }

  .krl-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------------------- */
/* Responsive: 768 */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  :root {
    --content-pad: 24px;
    --header-main: 72px;
  }

  .krl-hero__bridge-watermark {
    display: none;
  }

  .krl-header__top {
    height: 40px;
  }

  .krl-header__utility-link {
    padding: 10px 16px;
    font-size: 12px;
  }

  .krl-header__top-spacer {
    width: 16px;
  }

  .krl-header__main {
    display: flex;
    align-items: center;
    padding-inline: 24px;
  }

  .krl-header__brand {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .krl-header__logo-stack {
    width: 140px;
    height: auto;
  }

  .krl-header__logo-wordmark {
    width: 140px;
  }

  .krl-header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    bottom: auto;
    background: var(--gray-000);
    padding: 24px;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 12px 24px rgba(15, 31, 56, 0.08);
    z-index: 50;
  }

  .krl-header__nav.is-open {
    display: block;
  }

  .krl-header__menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .krl-header__menu > li > a {
    padding: 12px 0;
  }

  .krl-header__cta {
    display: none;
  }

  .krl-header__toggle {
    display: inline-flex;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-left: auto;
  }

  .krl-hero__frame {
    --hero-frame-pad: 16px;
    padding: 20px var(--hero-frame-pad);
  }

  .krl-hero__slide {
    min-height: 0;
    height: auto;
  }

  .krl-hero__slide {
    grid-template-columns: 1fr !important;
  }

  .krl-hero__slide--orange-image-left .krl-hero__panel--media {
    order: 0;
  }

  .krl-hero__slide--navy-image-right .krl-hero__panel--copy,
  .krl-hero__slide--orange-image-left .krl-hero__panel--copy,
  .krl-hero__slide--navy-full .krl-hero__panel--full {
    align-items: flex-start;
    padding: 36px 28px;
    min-height: 0;
  }

  .krl-hero__slide--navy-image-right .krl-hero__content,
  .krl-hero__slide--navy-image-right .krl-hero__heading,
  .krl-hero__slide--navy-image-right .krl-hero__body,
  .krl-hero__slide--orange-image-left .krl-hero__content,
  .krl-hero__slide--navy-full .krl-hero__content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    text-align: left;
    align-items: flex-start;
  }

  .krl-hero__slide--navy-full .krl-hero__media--masked {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    opacity: 0.45;
  }

  .krl-hero__slide--navy-full .krl-hero__masked-frame {
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .krl-hero__slide--navy-full .krl-hero__masked-photo {
    transform: none;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center left;
    mask-position: center left;
  }

  .krl-hero__heading {
    font-size: 30px;
    margin-bottom: 0;
  }

  .krl-hero__slide--orange-image-left .krl-hero__heading,
  .krl-hero__slide--navy-full .krl-hero__heading {
    font-size: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .krl-hero__slide--orange-image-left .krl-hero__heading-line,
  .krl-hero__slide--navy-full .krl-hero__heading-line {
    white-space: normal;
  }

  .krl-hero__panel--media .krl-hero__image,
  .krl-hero__image {
    min-height: 220px;
  }

  .krl-hero__slide--navy-image-right .krl-hero__panel--media .krl-hero__image,
  .krl-hero__slide--orange-image-left .krl-hero__panel--media .krl-hero__image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 220px;
  }

  .krl-section-heading {
    font-size: 32px;
  }

  .krl-services,
  .krl-collage,
  .krl-expertise,
  .krl-foundation,
  .krl-testimonials,
  .krl-insights,
  .krl-cta-banner,
  .krl-dual-cta {
    padding: 64px 0;
  }

  .krl-measure {
    padding: 40px 0;
  }

  .krl-measure .krl-container {
    gap: 40px;
  }

  .krl-services__grid,
  .krl-expertise__grid,
  .krl-testimonials__grid,
  .krl-insights__grid {
    grid-template-columns: 1fr;
  }

  .krl-measure__stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .krl-measure__value {
    font-size: 64px;
    line-height: 1;
  }

  .krl-foundation__stats {
    grid-template-columns: 1fr 1fr;
  }

  .krl-collage__gallery {
    height: 420px;
  }

  .krl-collage__item--1 {
    width: 58%;
    height: 70%;
    top: 10%;
    left: 0;
  }

  .krl-collage__item--2 {
    width: 48%;
    height: 40%;
    right: 0;
    top: 0;
  }

  .krl-collage__item--3 {
    width: 52%;
    height: 42%;
    right: 0;
    bottom: 0;
  }

  .krl-collage__item--4 {
    display: none;
  }

  .krl-dual-cta__heading {
    font-size: 32px;
  }

  .krl-dual-cta__actions {
    width: 100%;
  }

  .krl-dual-cta__inner {
    max-width: 100%;
    padding-inline: var(--content-pad);
  }

  .krl-testimonials {
    padding: 64px 0 80px;
  }

  .krl-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .krl-footer__main {
    padding: 56px 0 40px;
  }

  .krl-footer__deco {
    height: 280px;
  }

  .krl-footer__deco-masked {
    top: -20px;
    height: 340px;
    -webkit-mask-size: 1600px 1450px;
    mask-size: 1600px 1450px;
    -webkit-mask-position: -360px 10px;
    mask-position: -360px 10px;
  }
}

/* -------------------------------------------------------------------------- */
/* Shared utilities (post-responsive) */
/* -------------------------------------------------------------------------- */

.krl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--navy-700);
  transition: color 0.25s ease;
}

.krl-text-link__arrow {
  display: inline-block;
}

.krl-text-link:hover {
  color: var(--orange-400);
}

.krl-footer__social {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  font-size: 20px;
  color: var(--gray-000);
}

.krl-footer__social a {
  color: inherit;
  line-height: 1;
  transition: color 0.2s ease;
}

.krl-footer__social a:hover {
  color: var(--orange-400);
}

.krl-footer__newsletter-prompt {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-000);
  margin: 0 0 20px;
}

.krl-footer__ext {
  font-size: 11px;
  margin-left: 4px;
}

.krl-testimonial-card__mark {
  width: 52px;
  height: 38px;
  margin-bottom: 22px;
  display: block;
}

.krl-testimonial-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

/* -------------------------------------------------------------------------- */
/* Page Hero — Our Services / interior pages */
/* -------------------------------------------------------------------------- */

.krl-page-hero {
  background: var(--gray-000);
  padding: 0;
}

.krl-page-hero__frame {
  max-width: var(--content-max);
  margin: 0 auto;
  /* Figma: 40px around 1360×385 panel */
  padding: 40px;
}

.krl-page-hero__panel {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  height: 385px;
  min-height: 385px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-700);
  color: var(--gray-000);
}

.krl-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.krl-page-hero__image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.krl-page-hero__content {
  position: absolute;
  z-index: 1;
  left: 63.38%; /* 862 / 1360 */
  top: 137px;
  width: 415px;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  color: var(--gray-000);
  overflow: visible;
}

.krl-page-hero__titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  white-space: nowrap;
}

.krl-page-hero__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--gray-000);
}

.krl-page-hero__heading {
  /* Figma Frame 281: flex-wrap row, gap 10×9, children nowrap */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 9px;
  align-items: flex-start;
  margin: 0;
  font-size: 41.367px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-000);
  width: 100%;
}

.krl-page-hero__heading-line {
  display: block;
  flex-shrink: 0;
  white-space: nowrap;
}

.krl-page-hero__heading-line--italic {
  font-style: italic;
  font-weight: 400;
}

.krl-page-hero__body {
  margin: 0;
  max-width: 315px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-000);
}

@supports (text-box-trim: trim-both) {
  .krl-page-hero__eyebrow,
  .krl-page-hero__heading-line,
  .krl-page-hero__body {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

/* -------------------------------------------------------------------------- */
/* Services Catalog */
/* -------------------------------------------------------------------------- */

.krl-svc-catalog {
  background: var(--gray-050);
  padding: 74px 0 98px;
}

.krl-svc-catalog__header {
  max-width: 742px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.krl-svc-catalog .krl-section-heading {
  font-size: 40px;
  color: #2e2e2e;
  gap: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.krl-svc-catalog .krl-section-heading__line {
  width: auto;
  max-width: 100%;
}

.krl-svc-catalog__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #2e2e2e;
}

.krl-svc-catalog__groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1240px;
}

@supports (text-box-trim: trim-both) {
  .krl-svc-catalog .krl-section-heading__line,
  .krl-svc-catalog__intro,
  .krl-svc-group__title,
  .krl-svc-group__desc,
  .krl-svc-group__link,
  .krl-svc-item__title,
  .krl-svc-item__desc {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

.krl-svc-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-svc-group__banner {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 22px;
  align-items: center;
  min-height: 175px;
  height: 175px;
  padding: 40px;
  border-radius: var(--radius-card);
  background: var(--card-blue);
  color: var(--gray-000);
  box-sizing: border-box;
}

.krl-svc-group__icon {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  line-height: 0;
}

.krl-svc-group__icon-img {
  width: 96px;
  height: 96px;
  max-width: none;
  object-fit: contain;
  display: block;
}

.krl-svc-group__fa {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  background: var(--orange-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: var(--gray-000);
  line-height: 1;
}

.krl-svc-group__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 510px;
}

.krl-svc-group__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-svc-group__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-svc-group__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 510px;
  height: 96px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--gray-000);
  text-align: right;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.krl-svc-group__link:hover {
  color: var(--orange-400);
}

/* White caret — expands/collapses sub-service grid (Figma Polygon 14×14 @ top 151.5) */
.krl-svc-group__caret {
  position: absolute;
  left: 50%;
  top: 151.5px;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.krl-svc-group__caret-icon {
  display: block;
  width: 12.1244px;
  height: 10.5px;
  margin-top: 0;
  transition: transform 0.2s ease;
}

.krl-svc-group:not(.is-open) .krl-svc-group__caret-icon {
  transform: rotate(180deg);
  margin-top: 3.5px;
}

.krl-svc-group__caret:focus-visible {
  outline: 2px solid var(--orange-400);
  outline-offset: 4px;
}

.krl-svc-group__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.krl-svc-group__panel > .krl-svc-group__grid {
  overflow: hidden;
  min-height: 0;
}

.krl-svc-group.is-open > .krl-svc-group__panel {
  grid-template-rows: 1fr;
}

.krl-svc-group__panel[hidden] {
  display: grid !important;
}

@media (prefers-reduced-motion: reduce) {
  .krl-svc-group__panel {
    transition: none;
  }
}

.krl-svc-group__grid {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.krl-svc-group__grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.krl-svc-group__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.krl-svc-group__grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.krl-svc-item {
  min-height: 183px;
  padding: 40px 30px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: none;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0) 50%);
}

.krl-svc-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #525252;
}

.krl-svc-group__grid--cols-4 .krl-svc-item__desc {
  max-width: 248px;
}

.krl-svc-group__grid--cols-3 .krl-svc-item__desc {
  max-width: 248px;
}

.krl-svc-group__grid--cols-2 .krl-svc-item__desc {
  max-width: 550px;
}

.krl-svc-item__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a345e;
}

/* -------------------------------------------------------------------------- */
/* Wealth Mapping */
/* -------------------------------------------------------------------------- */

.krl-wealth-map {
  background: #ffffff;
  padding: 110px 0 0;
}

.krl-wealth-map__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 720px;
}

.krl-wealth-map__titles {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.krl-wealth-map__title {
  margin: 0;
  font-size: 41.367px;
  font-weight: 400;
  line-height: 1.2;
  color: #2e2e2e;
}

.krl-wealth-map__reg {
  font-size: 0.645em;
  vertical-align: super;
  line-height: 0;
}

.krl-wealth-map__heading {
  color: var(--navy-700);
  font-size: 41.367px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  line-height: 1.2;
  white-space: nowrap;
}

.krl-wealth-map__heading .krl-section-heading__line {
  flex-shrink: 0;
  white-space: nowrap;
}

.krl-wealth-map__intro {
  margin: 0;
  max-width: 423px;
  font-size: 14px;
  line-height: 1.2;
  color: #2e2e2e;
}

.krl-wealth-map__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0 0 96px;
  padding: 0;
  width: 100%;
  max-width: 1240px;
}

.krl-wealth-map__step {
  background: var(--orange-400);
  color: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 30px 30px 40px;
  height: auto;
  min-height: 210px;
  max-height: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.krl-wealth-map__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--navy-700);
  color: var(--gray-000);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}

.krl-wealth-map__step-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-wealth-map__step-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: var(--gray-000);
}

@supports (text-box-trim: trim-both) {
  .krl-wealth-map__title,
  .krl-wealth-map__heading .krl-section-heading__line,
  .krl-wealth-map__intro,
  .krl-wealth-map__num,
  .krl-wealth-map__step-title,
  .krl-wealth-map__step-desc,
  .krl-wealth-map__cta-eyebrow,
  .krl-wealth-map__cta-heading .krl-section-heading__line,
  .krl-wealth-map__cta-body {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

.krl-wealth-map__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 831px;
  margin: 0 auto 50px;
}

.krl-wealth-map__illus {
  flex: 0 0 235px;
  width: 235px;
  height: 212px;
}

.krl-wealth-map__illus-img {
  width: 235px;
  height: 212px;
  object-fit: contain;
}

.krl-wealth-map__cta-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 576px;
  max-width: 576px;
}

.krl-wealth-map__cta-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #31486e;
  white-space: nowrap;
}

.krl-wealth-map__cta-heading {
  color: var(--navy-700);
  font-size: 41.367px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  line-height: 1.2;
  white-space: nowrap;
}

.krl-wealth-map__cta-heading .krl-section-heading__line {
  flex-shrink: 0;
  white-space: nowrap;
}

.krl-wealth-map__cta-body {
  margin: 0;
  max-width: 375px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-wealth-map__divider {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1239px;
  padding: 0 0 40px;
}

.krl-wealth-map__rule {
  flex: 1;
  height: 1px;
  background: var(--gray-100);
}

.krl-wealth-map__divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 50px;
  background: #ffffff;
  flex-shrink: 0;
}

.krl-wealth-map__divider-img {
  width: 56px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.krl-measure--stats-only {
  padding-top: 79px;
  padding-bottom: 79px;
  background: #ffffff;
}

.krl-measure--stats-only .krl-measure__stats {
  margin-top: 0;
  align-items: start;
  gap: 0;
  grid-template-columns: 424fr 408fr 408fr;
}

.krl-measure--stats-only .krl-measure__value {
  line-height: 1;
  font-size: 90px;
}

.krl-measure--stats-only .krl-measure__label {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.2;
  max-width: 247px;
  margin-left: auto;
  margin-right: auto;
}

@supports (text-box-trim: trim-both) {
  .krl-measure--stats-only .krl-measure__value,
  .krl-measure--stats-only .krl-measure__label {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

@media (max-width: 1200px) {
  .krl-svc-group__banner {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
  }

  .krl-svc-group__icon {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .krl-svc-group__icon-img {
    width: 72px;
    height: 72px;
  }

  .krl-svc-group__copy {
    flex: 1 1 calc(100% - 94px);
    max-width: none;
  }

  .krl-svc-group__link {
    flex: 1 1 100%;
    max-width: none;
    height: auto;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .krl-svc-group__grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .krl-wealth-map__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .krl-page-hero__content {
    left: auto;
    right: 40px;
    width: min(415px, 42%);
    max-width: none;
  }
}

@media (max-width: 900px) {
  .krl-page-hero__frame {
    padding: 20px 20px 0;
  }

  .krl-page-hero__panel {
    height: auto;
    min-height: 420px;
  }

  .krl-page-hero__content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 32px 24px 40px;
    background: var(--navy-700);
  }

  .krl-page-hero__heading {
    font-size: 32px;
  }

  .krl-svc-catalog {
    padding: 56px 0 72px;
  }

  .krl-svc-group__banner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 28px;
  }

  .krl-svc-group__link {
    height: auto;
  }

  .krl-svc-group__grid--cols-4,
  .krl-svc-group__grid--cols-3,
  .krl-svc-group__grid--cols-2 {
    grid-template-columns: 1fr;
  }

  .krl-wealth-map {
    padding-top: 64px;
  }

  .krl-wealth-map__title,
  .krl-wealth-map__heading,
  .krl-wealth-map__cta-heading {
    font-size: 32px;
  }

  .krl-wealth-map__heading,
  .krl-wealth-map__cta-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .krl-wealth-map__steps {
    grid-template-columns: 1fr;
  }

  .krl-wealth-map__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .krl-page-hero__panel {
    aspect-ratio: 1360 / 520;
  }
}

/* -------------------------------------------------------------------------- */
/* Who We Are — Split Hero */
/* -------------------------------------------------------------------------- */

.krl-split-hero {
  position: relative;
  padding: 45px 0 56px;
  overflow: visible;
  background: var(--gray-000);
}

.krl-split-hero > .krl-container {
  padding-inline: 40px;
  max-width: 1440px;
  overflow: visible;
}

.krl-split-hero__watermark {
  position: absolute;
  left: -40px;
  top: -40px;
  width: min(60vw, 866px);
  height: auto;
  max-width: none;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.krl-split-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 690fr) minmax(0, 650fr);
  gap: 20px;
  align-items: stretch;
  width: 100%;
  overflow: visible;
}

.krl-split-hero__panel {
  position: relative;
  border-radius: var(--radius-card);
  min-height: 388px;
}

.krl-split-hero__panel--copy {
  grid-column: 1;
  grid-row: 1;
  background: var(--orange-400);
  color: var(--gray-000);
  border: none;
  overflow: visible;
  z-index: 1;
}

.krl-split-hero__panel--copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--orange-400);
  z-index: 0;
  pointer-events: none;
}

.krl-split-hero__panel--media {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
}

.krl-split-hero__pattern {
  grid-column: 1;
  grid-row: 1;
  position: absolute;
  left: -841px;
  top: -527px;
  width: 1495px;
  max-width: none;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.krl-split-hero__copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 388px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 64px 41px 64px 100px;
  gap: 21px;
}

.krl-split-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--gray-000);
  width: 100%;
  max-width: 532px;
}

.krl-split-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin: 0;
  width: 100%;
  max-width: 532px;
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-split-hero__heading-line {
  display: block;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-split-hero__heading-line--italic {
  font-style: italic;
}

.krl-split-hero__body {
  max-width: 180px;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-split-hero__panel--media {
  background: var(--gray-100);
  overflow: hidden;
}

.krl-split-hero__image {
  width: 100%;
  height: 100%;
  min-height: 388px;
  object-fit: cover;
  object-position: 42% 38%;
}

/* -------------------------------------------------------------------------- */
/* Values Grid */
/* -------------------------------------------------------------------------- */

.krl-values {
  padding: 40px 0 80px;
  background: var(--gray-000);
}

.krl-values > .krl-container {
  padding-inline: 100px;
}

.krl-values__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 690px;
}

.krl-values .krl-section-heading {
  gap: 2px;
  font-size: clamp(28px, 2.9vw, 41.367px);
  color: var(--gray-800);
  line-height: 1.2;
}

.krl-values__intro {
  max-width: 423px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.krl-value-card {
  background: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 40px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 3px rgba(0, 0, 0, 0.05);
}

.krl-value-card__icon {
  background: var(--navy-700);
}

.krl-value-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-value-card__desc {
  font-size: 16px;
  line-height: 1.2;
  color: var(--navy-700);
  margin-top: auto;
}

/* -------------------------------------------------------------------------- */
/* Quote Banner */
/* -------------------------------------------------------------------------- */

.krl-quote-banner {
  padding: 0 0 70px;
  background: var(--gray-000);
}

.krl-quote-banner > .krl-container {
  padding-inline: 40px;
}

.krl-quote-banner__panel {
  position: relative;
  overflow: visible;
  border-radius: var(--radius-card);
  background: var(--navy-700);
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 76px 80px 100px;
}

.krl-quote-banner__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--navy-700);
  z-index: 0;
  pointer-events: none;
}

.krl-quote-banner__pattern {
  position: absolute;
  left: -1785px;
  top: -838px;
  width: 2569px;
  max-width: none;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

.krl-quote-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 640px;
  overflow: visible;
}

.krl-quote-banner__mark {
  flex: 0 0 auto;
  width: 52px;
  height: auto;
  margin-top: 0;
  margin-left: 0;
  filter: none;
  overflow: visible;
  display: block;
}

.krl-quote-banner__quote {
  margin: 0;
  text-align: right;
  color: var(--gray-000);
  flex: 1;
  max-width: 520px;
}

.krl-quote-banner__quote p {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
}

.krl-quote-banner__italic {
  font-style: italic;
}

.krl-quote-banner__attr {
  margin-top: 27px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* -------------------------------------------------------------------------- */
/* Expertise gray tone (Who We Are) */
/* -------------------------------------------------------------------------- */

.krl-expertise--gray {
  background: var(--gray-050);
  padding: 110px 0;
}

.krl-expertise--gray > .krl-container {
  padding-inline: var(--content-pad);
  max-width: var(--content-max);
  margin-inline: auto;
}

.krl-expertise--gray .krl-expertise__header {
  max-width: 715px;
  width: 100%;
}

.krl-expertise--gray .krl-section-heading {
  gap: 2px;
}

.krl-expertise--gray .krl-section-heading__line:first-child {
  font-size: 32px;
}

.krl-expertise--gray .krl-section-heading__line--italic {
  font-size: 40px;
}

.krl-expertise--gray .krl-expertise-card {
  box-shadow: none;
}

/* -------------------------------------------------------------------------- */
/* Belief Collage */
/* -------------------------------------------------------------------------- */

.krl-belief {
  padding: 0 0 90px;
  background: var(--gray-000);
}

.krl-belief > .krl-container {
  padding-inline: 100px;
}

.krl-belief__inner {
  display: grid;
  grid-template-columns: minmax(0, 633fr) minmax(0, 587fr);
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.krl-belief__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.krl-belief__col--left {
  gap: 20px;
}

.krl-belief__col--right {
  gap: 15px;
}

.krl-belief__copy {
  background: var(--navy-700);
  color: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 70px 40px;
  flex: 0 0 auto;
}

.krl-belief__copy .krl-section-heading {
  gap: 2px;
  font-size: clamp(28px, 2.9vw, 41.367px);
  margin-bottom: 0;
  max-width: 360px;
}

.krl-belief__body {
  max-width: 368px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-belief__photo {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--gray-100);
  min-height: 0;
}

.krl-belief__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.krl-belief__photo--tall {
  flex: 1 1 auto;
  aspect-ratio: auto;
  height: auto;
  min-height: 280px;
}

.krl-belief__photo--wide {
  flex: 0 0 auto;
  aspect-ratio: 587 / 416;
  height: auto;
}

.krl-belief__row {
  display: grid;
  grid-template-columns: minmax(0, 268fr) minmax(0, 299fr);
  gap: 20px;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: 0;
}

.krl-belief__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  height: 100%;
}

.krl-belief__stack .krl-belief__photo {
  flex: 1 1 0;
  aspect-ratio: auto;
  min-height: 0;
}

.krl-belief__photo--portrait {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

/* -------------------------------------------------------------------------- */
/* Foundation gray / accomplishment tone */
/* -------------------------------------------------------------------------- */

.krl-foundation--gray {
  background: var(--gray-050);
  padding: 85px 0 36px;
  position: relative;
  overflow: visible;
}

.krl-foundation--gray::before {
  content: "";
  position: absolute;
  left: 898px;
  top: 48px;
  width: 3321px;
  height: 3050px;
  max-width: none;
  background: url("../images/wwa-accomplish-deco.svg") no-repeat 0 0 / 3321px 3050px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.krl-foundation--gray .krl-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.krl-foundation--gray .krl-foundation__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  max-width: 376px;
  width: 100%;
  margin: 0 auto 55px;
  text-align: left;
}

.krl-foundation--gray .krl-foundation__heading {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 2px;
  width: 100%;
}

.krl-foundation--gray .krl-foundation__eyebrow {
  font-size: 32px;
  display: block;
  width: 100%;
  text-align: left;
  line-height: 1.05;
  color: var(--navy-700);
}

.krl-foundation--gray .krl-foundation__title-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  font-size: 40px;
  width: 100%;
  line-height: 1.2;
  color: var(--navy-700);
}

/* Figma: “The Art of” roman stacked above “Accomplishment” italic */
.krl-foundation--gray .krl-foundation__title-row .krl-section-heading__line:first-child {
  display: block;
  white-space: nowrap;
  font-style: normal;
}

.krl-foundation--gray .krl-foundation__title-row .krl-section-heading__line--italic {
  display: block;
  white-space: nowrap;
  font-style: italic;
}

.krl-foundation--gray .krl-foundation__intro {
  margin: 0;
  max-width: 376px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
  text-align: left;
}

.krl-foundation--gray .krl-foundation__stats {
  display: flex;
  flex-wrap: nowrap;
  gap: 88px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1114px;
}

.krl-foundation--gray .krl-foundation__stat {
  width: 146px;
  padding: 0;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.krl-foundation--gray .krl-foundation__stat:nth-child(4),
.krl-foundation--gray .krl-foundation__stat:nth-child(5) {
  width: 162px;
}

.krl-foundation--gray .krl-foundation__stat + .krl-foundation__stat::before {
  display: none;
}

.krl-foundation--gray .krl-foundation__value {
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--navy-700);
}

.krl-foundation--gray .krl-foundation__label {
  font-size: 16px;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-foundation--gray .krl-foundation__divider {
  margin-top: 95px;
  width: 100%;
  max-width: 1239px;
}

.krl-foundation--gray .krl-foundation__divider-icon {
  background: var(--gray-050);
}

/* -------------------------------------------------------------------------- */
/* Awards Grid */
/* -------------------------------------------------------------------------- */

.krl-awards {
  background: var(--gray-050);
  padding: 24px 0 48px;
}

.krl-awards__header {
  max-width: 520px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-awards .krl-section-heading {
  gap: 15px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: 40px;
}

.krl-awards__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
  max-width: 336px;
}

.krl-awards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.krl-award-card {
  background: var(--card-blue);
  color: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 40px;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.krl-award-card__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.krl-award-card__icon {
  background: var(--navy-700);
}

.krl-award-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-000);
}

.krl-award-card__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.krl-award-card__year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.krl-award-card__org {
  font-size: 14px;
  line-height: 1.2;
  font-style: italic;
}

.krl-award-card__desc {
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-050);
}

/* -------------------------------------------------------------------------- */
/* Leadership Grid */
/* -------------------------------------------------------------------------- */

.krl-leadership {
  background: var(--gray-050);
  padding: 24px 0 100px;
}

.krl-leadership__divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 72px;
}

.krl-leadership__rule {
  flex: 1;
  height: 1px;
  background: #d1d6df;
}

.krl-leadership__divider-icon {
  width: 56px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-050);
  margin: 0 12px;
}

.krl-leadership__divider-img {
  width: 56px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: normal;
}

.krl-leadership__header {
  max-width: 560px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-leadership .krl-section-heading {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 15px;
  align-items: flex-end;
  font-size: 40px;
}

.krl-leadership__intro {
  max-width: 427px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
}

.krl-leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.krl-leader-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 295 / 370;
  height: auto;
  background: #d1d6df;
}

.krl-leader-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(0.92);
  transform-origin: center top;
}

.krl-leader-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: #eeefec;
  overflow: hidden;
}

.krl-leader-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.krl-leader-card__role {
  font-size: 14px;
  line-height: 1.2;
}

.krl-leadership__actions {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* -------------------------------------------------------------------------- */
/* Locations Map */
/* -------------------------------------------------------------------------- */

.krl-locations {
  position: relative;
  min-height: 859px;
  overflow: hidden;
  background: #dce3eb;
}

.krl-locations__map,
.krl-locations__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.krl-locations__map {
  pointer-events: auto;
}

.krl-locations__map .maplibregl-map,
.krl-locations__map .maplibregl-canvas {
  width: 100%;
  height: 100%;
}

.krl-locations__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.krl-locations__marker {
  position: relative;
  width: 28px;
  height: 36px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: url("../images/wwa-map-pin.svg") center / contain no-repeat;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  z-index: 1;
}

.krl-locations__marker.is-active {
  width: 32px;
  height: 40px;
}

.krl-locations__inner {
  position: relative;
  z-index: 2;
  min-height: 859px;
  padding-top: 122px;
  padding-inline: 100px;
}

.krl-locations__header {
  max-width: 311px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.krl-locations .krl-section-heading {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px;
  align-items: flex-end;
  color: var(--gray-800);
  font-size: 40px;
}

.krl-locations__intro {
  max-width: 282px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--navy-700);
}


.krl-locations__card {
  position: absolute;
  left: 441px;
  top: 176px;
  width: 399px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(26, 52, 94, 0.12);
}

.krl-locations__card::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 118px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid rgba(255, 255, 255, 0.72);
}

.krl-locations__card-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-locations__card-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-locations__card-icon {
  color: var(--navy-700);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
}

/* -------------------------------------------------------------------------- */
/* Who We Are responsive */
/* -------------------------------------------------------------------------- */

@media (max-width: 1280px) {
  .krl-split-hero > .krl-container,
  .krl-quote-banner > .krl-container {
    padding-inline: 40px;
  }

  .krl-values > .krl-container,
  .krl-belief > .krl-container,
  .krl-locations__inner {
    padding-inline: 60px;
  }

  .krl-values__grid,
  .krl-awards__grid,
  .krl-leadership__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .krl-foundation--gray .krl-foundation__stat {
    width: 130px;
    padding: 0 16px;
  }

  .krl-foundation--gray .krl-foundation__value {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media (max-width: 900px) {
  .krl-split-hero__inner,
  .krl-belief__inner,
  .krl-belief__row,
  .krl-values__grid,
  .krl-awards__grid,
  .krl-leadership__grid {
    grid-template-columns: 1fr;
  }

  .krl-split-hero__copy {
    align-items: flex-start;
    text-align: left;
    padding: 48px 32px;
  }

  .krl-split-hero__heading,
  .krl-split-hero__eyebrow {
    align-items: flex-start;
    text-align: left;
  }

  .krl-quote-banner__panel {
    min-height: 360px;
    padding: 48px 32px;
    justify-content: center;
  }

  .krl-quote-banner__content {
    flex-direction: column;
    gap: 16px;
  }

  .krl-quote-banner__quote {
    text-align: left;
  }

  .krl-locations {
    min-height: 0;
  }

  .krl-locations__inner {
    min-height: 0;
    padding: 64px 24px 80px;
  }

  .krl-locations__card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 40px;
  }

  .krl-locations__card::after {
    display: none;
  }

  .krl-locations__pins {
    display: none;
  }
}

/* ==========================================================================
   Our Team — collage hero, filters, directory cards
   ========================================================================== */

.krl-collage-hero {
  padding: 40px;
  background: #fff;
}

.krl-collage-hero__grid {
  display: grid;
  grid-template-columns: 535px 208px minmax(0, 1fr);
  gap: 20px;
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.krl-collage-hero__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 388px;
}

.krl-collage-hero__col--right {
  gap: 25px;
}

.krl-collage-hero__copy {
  background: var(--orange-400);
  border-radius: 20px;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  height: 200px;
  flex: 0 0 200px;
  box-sizing: border-box;
}

.krl-collage-hero__heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  font-family: var(--font-family);
  font-size: 41.367px;
  font-weight: 400;
  line-height: 1.2;
}

.krl-collage-hero__heading-line--italic {
  font-style: italic;
}

.krl-collage-hero__body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.2;
}

.krl-collage-hero__pair {
  display: flex;
  gap: 20px;
  height: 168px;
  flex: 0 0 168px;
  align-items: stretch;
}

.krl-collage-hero__pair--right {
  height: 176px;
  flex: 0 0 176px;
}

.krl-collage-hero__tile {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #d8d8d8;
  flex: 0 0 auto;
}

.krl-collage-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.krl-collage-hero__tile--narrow {
  width: 124px;
  height: 168px;
}

.krl-collage-hero__tile--flip .krl-collage-hero__image {
  transform: scaleY(-1) rotate(180deg);
}

.krl-collage-hero__tile--wide {
  flex: 1 1 auto;
  width: auto;
  height: 168px;
}

.krl-collage-hero__tile--tall {
  width: 100%;
  height: 256px;
  flex: 0 0 256px;
}

.krl-collage-hero__tile--short {
  width: 100%;
  height: 112px;
  flex: 0 0 112px;
}

.krl-collage-hero__tile--top {
  width: 100%;
  height: 187px;
  flex: 0 0 187px;
}

.krl-collage-hero__tile--sm {
  width: 229px;
  height: 176px;
}

.krl-collage-hero__tile--md {
  width: 328px;
  height: 176px;
  flex: 0 0 328px;
}

/* Team filters */
.krl-team-filters {
  background: #e8ebef;
  padding: 40px 0 71px;
}

.krl-team-filters__header,
.krl-team-filters__heading,
.krl-team-filters__intro,
.krl-team-filters__label,
.krl-team-filters__note,
.krl-team-filters__regions-label,
.krl-team-filters__tag,
.krl-team-filters__input,
.krl-team-filters__select,
.krl-team-dir__eyebrow,
.krl-team-dir__heading,
.krl-team-dir__intro,
.krl-team-card__name,
.krl-team-card__line,
.krl-team-card__tag,
.krl-team-card__link,
.krl-collage-hero__heading,
.krl-collage-hero__body,
.krl-leadership--no-divider .krl-section-heading,
.krl-leadership--no-divider .krl-leadership__intro,
.krl-leader-card__name,
.krl-leader-card__role {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-team-filters__header {
  max-width: 610px;
  margin-bottom: 30px;
}

.krl-team-filters__heading {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--gray-800);
}

.krl-team-filters__heading-italic {
  font-style: italic;
}

.krl-team-filters__intro {
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.15;
}

.krl-team-filters__row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 30px;
}

.krl-team-filters__left {
  flex: 0 0 714px;
  max-width: 714px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-team-filters__right {
  flex: 1 1 auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 0;
}

.krl-team-filters__row-inner {
  display: flex;
  gap: 20px;
  width: 610px;
  max-width: 100%;
}

.krl-team-filters__field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.krl-team-filters__field--search {
  flex: 1 1 351px;
}

.krl-team-filters__field--topic {
  flex: 0 0 239px;
}

.krl-team-filters__label {
  font-size: 12px;
  color: #7d7d7d;
  line-height: 1;
  height: 8px;
}

.krl-team-filters__input-wrap {
  position: relative;
}

.krl-team-filters__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-800);
  font-size: 14px;
  pointer-events: none;
}

.krl-team-filters__input,
.krl-team-filters__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #e8ebef;
  border-radius: 10px;
  background: #fff;
  padding: 18px 20px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.2;
  box-sizing: border-box;
  min-height: 52px;
}

.krl-team-filters__select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232e2e2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
}

.krl-team-filters__input {
  padding-left: 48px;
}

.krl-team-filters__note {
  margin: 0 0 30px;
  max-width: 610px;
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.15;
}

.krl-team-filters__regions {
  margin-bottom: 30px;
}

.krl-team-filters__regions-label {
  margin: 0 0 16px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1;
}

.krl-team-filters__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.krl-team-filters__tag {
  border: 0;
  border-radius: 999px;
  padding: 8px 20px;
  background: #fcf2e9;
  color: var(--gray-800);
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
}

.krl-team-filters__tag.is-active {
  background: var(--orange-400);
  color: #fff;
}

.krl-team-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.krl-team-filters__actions .krl-btn {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Team directory */
.krl-team-dir {
  padding: 100px 0;
}

.krl-team-dir--gray {
  background: #f7f7f7;
}

.krl-team-dir--white {
  background: #f9fafb;
}

.krl-team-dir__header {
  max-width: 585px;
  margin-bottom: 40px;
}

.krl-team-dir__eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-800);
  line-height: 1.2;
}

.krl-team-dir__heading {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  align-items: flex-end;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--gray-800);
}

.krl-team-dir__heading-italic {
  font-style: italic;
}

.krl-team-dir__intro {
  margin: 20px 0 0;
  max-width: 427px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.15;
}

.krl-team-dir__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.krl-team-card {
  border-radius: 20px;
  color: #eeefec;
  min-height: 100%;
  box-sizing: border-box;
}

.krl-team-card--navy {
  background-color: var(--navy-700);
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 46%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  border-radius: 20px;
}

.krl-team-card--navy .krl-team-card__top {
  display: flex;
  gap: 21px;
  align-items: flex-start;
  width: 100%;
}

.krl-team-card--navy .krl-team-card__media {
  flex: 0 0 138px;
  width: 138px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.krl-team-card--navy .krl-team-card__photo {
  width: 138px;
  aspect-ratio: 124 / 129;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  box-shadow: none;
  border: 0;
  outline: 0;
}

.krl-team-card--navy .krl-team-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-width: 0;
  color: #eeefec;
}

.krl-team-card--navy .krl-team-card__link {
  align-self: flex-start;
}

.krl-team-card--orange {
  background-color: var(--orange-400);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.05) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  padding: 35px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.krl-team-card--orange .krl-team-card__photo {
  flex: 0 0 125px;
  width: 125px;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  box-shadow: none;
  border: 0;
  outline: 0;
}

.krl-team-card--orange .krl-team-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.krl-team-card__name {
  margin: 0;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

.krl-team-card__line {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: inherit;
}

.krl-team-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fcf2e9;
  color: var(--gray-800);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.krl-team-card__link {
  color: #eeefec;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.krl-team-card__link:hover {
  text-decoration: underline;
}

.krl-team-dir__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.krl-leadership--no-divider .krl-leadership__header {
  margin-top: 0;
}

.krl-leadership--no-divider {
  background: #fff;
  padding: 100px 0;
}

.krl-leadership--no-divider .krl-section-heading {
  font-size: 32px;
  color: var(--navy-700);
  gap: 8px;
}

.krl-leadership--no-divider .krl-leadership__intro {
  color: var(--navy-700);
}

.krl-leadership--no-divider .krl-leadership__header {
  margin-bottom: 0;
}

.krl-leadership--no-divider .krl-leadership__grid {
  margin-top: 82px;
}

.krl-leadership--no-divider .krl-leader-card__photo {
  object-position: center top;
  transform: scale(0.92);
  transform-origin: center top;
}

.krl-leadership--no-divider .krl-leadership__actions {
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .krl-collage-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .krl-collage-hero__col--right {
    grid-column: 1 / -1;
    height: auto;
  }

  .krl-collage-hero__col--copy,
  .krl-collage-hero__col--mid {
    height: auto;
  }

  .krl-team-filters__row {
    flex-direction: column;
    align-items: stretch;
  }

  .krl-team-filters__left,
  .krl-team-filters__row-inner {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
  }

  .krl-team-filters__right {
    width: 100%;
  }

  .krl-team-filters__field--topic {
    flex: 1 1 0;
  }
}

@media (max-width: 900px) {
  .krl-team-dir__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .krl-collage-hero {
    padding: 20px;
  }

  .krl-collage-hero__grid,
  .krl-team-dir__grid,
  .krl-team-filters__row-inner,
  .krl-team-filters__right {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .krl-collage-hero__col {
    height: auto;
  }

  .krl-collage-hero__tile--narrow,
  .krl-collage-hero__tile--sm {
    width: 30%;
  }

  .krl-team-card--navy {
    padding: 24px;
  }

  .krl-team-card--navy .krl-team-card__media,
  .krl-team-card--navy .krl-team-card__photo {
    width: 110px;
    flex-basis: 110px;
  }

  .krl-team-card--orange {
    flex-direction: column;
    align-items: flex-start;
  }

  .krl-team-filters {
    padding: 40px 0 56px;
  }

  .krl-team-dir {
    padding: 64px 0;
  }

  .krl-collage-hero__heading {
    font-size: 32px;
  }
}


/* -------------------------------------------------------------------------- */
/* Join Us — join hero */
/* -------------------------------------------------------------------------- */

.krl-join-hero {
  background: transparent;
  padding: 40px 0 0;
}

.krl-join-hero__frame {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 40px;
}

.krl-join-hero__panel {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-700);
  height: 385px;
}

/* Figma Frame 617: x126 y83, 415×225, right-aligned */
.krl-join-hero__copy {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: 415px;
  max-width: calc(100% - 80px);
  margin-left: 126px;
  padding: 83px 0 0;
  text-align: right;
  color: var(--gray-000);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.krl-join-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  line-height: 1.2;
}

.krl-join-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.krl-join-hero__heading-line--italic {
  font-style: italic;
}

.krl-join-hero__body {
  max-width: 363px;
  font-size: 14px;
  line-height: 1.2;
}

.krl-join-hero__actions {
  display: flex;
  justify-content: flex-end;
}

.krl-join-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.krl-join-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Values — Join Us gray + watermark */
.krl-values {
  position: relative;
  overflow: hidden;
}

.krl-values--gray {
  background: var(--gray-000);
  padding: 60px 0 40px;
}

.krl-values--watermark .krl-values__watermark {
  position: absolute;
  left: -120px;
  top: -40px;
  width: min(70vw, 980px);
  height: auto;
  max-width: none;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.krl-values--watermark > .krl-container {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------- */
/* Navy cards */
/* -------------------------------------------------------------------------- */

.krl-navy-cards {
  padding: 40px 0 40px;
  background: var(--gray-050);
}

.krl-navy-cards__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 607px;
  margin-bottom: 40px;
}

.krl-navy-cards__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-navy-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.krl-navy-card {
  background: var(--card-blue);
  color: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 40px;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(10px);
}

.krl-navy-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-icon);
  background: var(--orange-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-050);
  font-size: 20px;
  flex-shrink: 0;
}

.krl-navy-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.krl-navy-card__desc {
  font-size: 14px;
  line-height: 1.2;
}

/* -------------------------------------------------------------------------- */
/* Career paths */
/* -------------------------------------------------------------------------- */

.krl-career-paths {
  padding: 60px 0 80px;
  background: var(--gray-050);
}

.krl-career-paths__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.krl-career-paths__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-career-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.krl-path-card {
  background: var(--gray-000);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 557px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 2px 3px rgba(0, 0, 0, 0.05);
}

.krl-path-card__media {
  width: 100%;
  height: 278px;
  border-radius: 12px;
  overflow: hidden;
  background: #d1d6df;
}

.krl-path-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.krl-path-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: #fcf2e9;
  color: var(--gray-800);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.2;
}

.krl-path-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-path-card__desc {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-path-card__actions {
  margin-top: auto;
}

/* -------------------------------------------------------------------------- */
/* Job listings */
/* -------------------------------------------------------------------------- */

.krl-jobs {
  padding: 60px 0 80px;
  background: var(--gray-050);
}

.krl-jobs--compact {
  padding: 0 0 80px;
  background: var(--gray-050);
}

.krl-jobs__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 742px;
  margin-bottom: 40px;
}

.krl-jobs__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-jobs__list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.krl-jobs__list--stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-jobs__groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.krl-jobs__group-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.krl-job-card {
  background: var(--card-blue);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 129px;
  box-shadow: none;
  color: #ffffff;
}

.krl-jobs--compact .krl-job-card {
  min-height: 136px;
}

.krl-job-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.krl-job-card__meta {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.krl-job-card__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}

.krl-job-card__link {
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}

.krl-job-card__link:hover {
  color: var(--orange-400);
}

.krl-jobs__footer {
  margin-top: 40px;
  text-align: center;
}

.krl-jobs__view-all {
  font-size: 14px;
  color: var(--navy-700);
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/* Story cards */
/* -------------------------------------------------------------------------- */

.krl-stories {
  padding: 60px 0 80px;
  background: var(--gray-000);
}

.krl-stories__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  margin-bottom: 60px;
}

.krl-stories .krl-section-heading {
  gap: 18px;
}

.krl-stories__intro {
  max-width: 608px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.krl-story-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 711px;
  position: relative;
  background: #d1d6df;
}

.krl-story-card__link {
  display: block;
  height: 100%;
  color: var(--gray-000);
}

.krl-story-card__media {
  position: absolute;
  inset: 0 0 100px 0;
}

.krl-story-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.krl-story-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  color: var(--gray-000);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.krl-story-card__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.krl-story-card__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}

.krl-story-card__meta {
  font-size: 14px;
  line-height: 1.2;
}

.krl-stories__disclaimer {
  margin: 60px 0 0;
  max-width: 956px;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray-600);
}

/* -------------------------------------------------------------------------- */
/* Support grid */
/* -------------------------------------------------------------------------- */

.krl-support {
  padding: 104px 0;
  background: var(--gray-000);
}

.krl-support__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
}

.krl-support__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.krl-support-card {
  background: var(--orange-400);
  color: #ffffff;
  border-radius: var(--radius-card);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  box-shadow: none;
}

.krl-support-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.krl-support-card__desc {
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

/* -------------------------------------------------------------------------- */
/* Platforms strip */
/* -------------------------------------------------------------------------- */

.krl-platforms {
  padding: 80px 0;
  background: var(--gray-050);
}

.krl-platforms__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 66px;
}

.krl-platforms__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-platforms__track {
  display: flex;
  align-items: center;
  gap: 24px;
}

.krl-platforms__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.krl-platforms__list::-webkit-scrollbar {
  display: none;
}

.krl-platforms__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 67px;
}

.krl-platforms__logo {
  max-height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.krl-platforms__nav {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
  flex-shrink: 0;
  font-size: 18px;
}

/* Measure — join variant: heading → stats → divider, 5 columns */
.krl-measure--divider-after .krl-measure__divider {
  order: 0;
}

.krl-measure--divider-after .krl-container {
  gap: 50px;
}

.krl-measure--cols-5 .krl-measure__stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.krl-measure--cols-5 .krl-measure__stat {
  padding: 0 12px;
}

.krl-measure--cols-5 .krl-measure__value {
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.1;
}

.krl-measure--cols-5 .krl-measure__label {
  font-size: 14px;
}

/* Quote sits in gray mid-band on Join Us */
.krl-quote-banner {
  background: var(--gray-050);
  padding: 40px 0 60px;
}

/* Join Us mockup: quote + mark on the left, watermark on the right */
.krl-quote-banner--join .krl-quote-banner__panel {
  justify-content: flex-start;
  padding: 80px 100px;
}

.krl-quote-banner--join .krl-quote-banner__pattern {
  left: auto;
  right: -8%;
  top: -55%;
  width: min(1100px, 120%);
  max-width: none;
  height: auto;
  opacity: 1;
}

.krl-quote-banner--join .krl-quote-banner__content {
  max-width: 620px;
}

/* -------------------------------------------------------------------------- */
/* Split promo */
/* -------------------------------------------------------------------------- */

.krl-split-promo {
  padding: 40px 0 60px;
  background: #e8ebef;
}

.krl-split-promo__inner {
  display: grid;
  grid-template-columns: 449px minmax(0, 355px);
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.krl-split-promo__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 224px;
}

.krl-split-promo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.krl-split-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 355px;
}

.krl-split-promo__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.krl-split-promo__body {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

/* -------------------------------------------------------------------------- */
/* Benefits grid */
/* -------------------------------------------------------------------------- */

.krl-benefits {
  padding: 40px 0 100px;
  background: var(--gray-000);
}

.krl-benefits__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 607px;
  margin-bottom: 40px;
  margin-left: 100px;
  padding-right: 40px;
}

.krl-benefits__intro {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}

.krl-benefit-card {
  background: var(--gray-050);
  color: var(--gray-800);
  border-radius: var(--radius-card);
  padding: 40px;
  min-height: 223px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.krl-benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-icon);
  background: var(--orange-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-050);
  font-size: 20px;
}

.krl-benefit-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.krl-benefit-card__desc {
  font-size: 14px;
  line-height: 1.2;
}

.krl-awards--centered {
  background: var(--gray-000);
  padding: 60px 0 40px;
}

.krl-awards--centered .krl-awards__header {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  text-align: center;
  align-items: center;
}

.krl-awards--centered .krl-section-heading {
  justify-content: center;
}

.krl-awards--centered .krl-awards__intro {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: var(--gray-800);
}

/* -------------------------------------------------------------------------- */
/* Collage intro */
/* -------------------------------------------------------------------------- */

.krl-collage-intro {
  padding: 60px 0 20px;
  background: var(--gray-000);
}

.krl-collage-intro__inner {
  display: grid;
  grid-template-columns: 376px 1fr;
  gap: 40px;
  align-items: center;
}

.krl-collage-intro__eyebrow {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 18px;
}

.krl-collage-intro__body {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--gray-700);
}

.krl-collage-intro__fan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 160px;
}

.krl-collage-intro__shot {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.krl-collage-intro__shot--1,
.krl-collage-intro__shot--5 {
  width: 104px;
  height: 70px;
}

.krl-collage-intro__shot--2,
.krl-collage-intro__shot--4 {
  width: 156px;
  height: 104px;
}

.krl-collage-intro__shot--3 {
  width: 210px;
  height: 140px;
}

.krl-collage-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .krl-navy-cards__grid,
  .krl-support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .krl-stories__grid,
  .krl-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .krl-career-paths__grid,
  .krl-jobs__list--grid,
  .krl-collage-intro__inner,
  .krl-split-promo__inner,
  .krl-measure--cols-5 .krl-measure__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .krl-navy-cards__grid,
  .krl-support__grid,
  .krl-stories__grid,
  .krl-benefits__grid,
  .krl-jobs__list--grid,
  .krl-measure--cols-5 .krl-measure__stats {
    grid-template-columns: 1fr;
  }

  .krl-job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .krl-job-card__links {
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }

  .krl-story-card {
    height: 520px;
  }

  .krl-join-hero__frame {
    padding: 0 20px;
  }

  .krl-join-hero__copy {
    width: auto;
    max-width: min(415px, 100%);
    margin-left: 24px;
    padding: 48px 0 0;
  }

  .krl-join-hero__panel {
    height: auto;
    min-height: 320px;
  }

  .krl-join-hero__heading {
    font-size: 32px;
  }
}

/* -------------------------------------------------------------------------- */
/* Advisor Bio                                                                */
/* -------------------------------------------------------------------------- */

.krl-advisor-hero {
  padding: 80px 0;
  background: #fff;
}

.krl-advisor-hero__grid {
  display: grid;
  grid-template-columns: 610px 610px;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
}

.krl-advisor-hero__profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.krl-advisor-hero__card {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.krl-advisor-hero__photo-wrap {
  width: 297px;
  height: 309px;
  flex: 0 0 297px;
  border-radius: 21px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1.74px rgba(0, 0, 0, 0.05);
}

.krl-advisor-hero__photo {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.krl-advisor-hero__meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 241px;
  flex: 0 0 241px;
  min-width: 0;
  height: 309px;
  gap: 0;
}

.krl-advisor-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.krl-advisor-hero__identity {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.krl-advisor-hero__name {
  margin: 0;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__creds {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
  font-weight: 400;
}

.krl-advisor-hero__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.krl-advisor-hero__contact {
  margin: 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__contact a {
  color: inherit;
  text-decoration: none;
}

.krl-advisor-hero__contact a:hover {
  text-decoration: underline;
}

.krl-advisor-hero__icon {
  flex: 0 0 12px;
  width: 12px;
  color: var(--navy-700);
  font-size: 12px;
  line-height: 1.2;
  display: inline-flex;
  justify-content: center;
}

.krl-advisor-hero__locations {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.krl-advisor-hero__locations-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  margin-top: 12px;
}

.krl-advisor-hero__actions .krl-btn {
  width: 100%;
  justify-content: center;
}

.krl-advisor-hero__actions .krl-btn--outline {
  border-width: 2px;
}

.krl-advisor-hero__specialties-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.krl-advisor-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fcf2e9;
  color: var(--gray-800);
  font-size: 14px;
  line-height: 1.2;
}

.krl-advisor-hero__about {
  border-left: 1px solid var(--gray-800);
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-advisor-hero__about-heading {
  margin: 0;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__about-body {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-hero__about-body p {
  margin: 0 0 12px;
}

.krl-advisor-hero__about-body p:last-child {
  margin-bottom: 0;
}

/* Profile fields */
.krl-advisor-profile {
  background: #f9fafb;
  padding: 70px 0;
}

.krl-advisor-profile > .krl-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-advisor-profile__top {
  display: grid;
  grid-template-columns: 714px 1fr;
  gap: 20px;
  margin-bottom: 0;
  align-items: start;
}

.krl-advisor-profile__questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-advisor-profile__card {
  background: #e8ebef;
  border-radius: 16px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-advisor-profile__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-800);
}

.krl-advisor-profile__card-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-profile__questions .krl-advisor-profile__card {
  min-height: 118px;
}

.krl-advisor-profile__card--experience {
  height: 256px;
  min-height: 256px;
  gap: 27px;
}

.krl-advisor-profile__experience {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.krl-advisor-profile__experience li {
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-profile__outside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-advisor-profile__card--outside .krl-advisor-profile__card-title {
  margin-bottom: 0;
}

.krl-advisor-profile__outside-cols {
  display: grid;
  grid-template-columns: 580px 541px;
  gap: 27px;
  justify-content: space-between;
  width: 100%;
}

.krl-advisor-profile__outside-cols p {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-profile__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 1240px;
  max-width: 100%;
}

.krl-advisor-profile__gallery-item {
  width: 295px;
  height: 198.5px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.krl-advisor-profile__gallery-item--1,
.krl-advisor-profile__gallery-item--2,
.krl-advisor-profile__gallery-item--3,
.krl-advisor-profile__gallery-item--4,
.krl-advisor-profile__gallery-item--5 {
  width: 295px;
  height: 198.5px;
}

.krl-advisor-profile__gallery-item--6 {
  width: 212px;
  height: 199px;
}

.krl-advisor-profile__notes {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.krl-advisor-profile__note {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-800);
}

/* Services → Related team */
.krl-advisor-related {
  padding: 70px 0;
  background: #fff;
}

.krl-advisor-related__header {
  margin-bottom: 0;
  max-width: 585px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.krl-advisor-related > .krl-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.krl-advisor-related__heading {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-related__heading-italic {
  font-style: italic;
}

.krl-advisor-related__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
  max-width: 427px;
}

.krl-advisor-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Articles */
.krl-advisor-articles__header {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.krl-advisor-articles {
  padding: 70px 0;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.krl-advisor-articles .krl-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.krl-advisor-articles__intro {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-advisor-articles__heading {
  margin: 0;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-advisor-articles__heading-italic {
  font-style: italic;
}

/* Inquiry form */
.krl-advisor-inquiry {
  padding: 70px 0;
  background: #e8ebef;
}

.krl-advisor-inquiry__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-advisor-inquiry__heading {
  margin: 0;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-advisor-inquiry__heading-italic {
  font-style: italic;
}

.krl-advisor-inquiry__form {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-advisor-inquiry__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 70px;
}

.krl-advisor-inquiry__label {
  font-size: 12px;
  color: #7d7d7d;
  line-height: 1.2;
}

.krl-advisor-inquiry__input,
.krl-advisor-inquiry__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #e8ebef;
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.2;
  box-sizing: border-box;
  height: 52px;
  min-height: 52px;
}

.krl-advisor-inquiry__input::placeholder {
  color: #969696;
}

.krl-advisor-inquiry__select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232e2e2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
}

.krl-advisor-inquiry__note {
  margin: 0;
  max-width: 610px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-700);
}

.krl-advisor-inquiry__form .krl-btn {
  align-self: flex-start;
}

@media (max-width: 1200px) {
  .krl-advisor-hero__grid,
  .krl-advisor-profile__top,
  .krl-advisor-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .krl-advisor-hero__meta {
    width: auto;
    flex: 1 1 auto;
    height: auto;
  }

  .krl-advisor-profile__outside-cols {
    grid-template-columns: 1fr 1fr;
  }

  .krl-advisor-profile__gallery {
    width: 100%;
  }

  .krl-advisor-profile__gallery-item--1,
  .krl-advisor-profile__gallery-item--2,
  .krl-advisor-profile__gallery-item--3,
  .krl-advisor-profile__gallery-item--4,
  .krl-advisor-profile__gallery-item--5,
  .krl-advisor-profile__gallery-item--6 {
    width: calc(50% - 10px);
    height: 180px;
  }
}

@media (max-width: 900px) {
  .krl-advisor-hero__grid,
  .krl-advisor-hero__card,
  .krl-advisor-profile__top,
  .krl-advisor-profile__outside-cols,
  .krl-advisor-related__grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .krl-advisor-hero__about {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--gray-100);
    padding-top: 30px;
  }

  .krl-advisor-hero__photo-wrap {
    width: 100%;
    max-width: 297px;
    height: auto;
    aspect-ratio: 297 / 309;
    flex: 0 0 auto;
  }

  .krl-advisor-hero__photo {
    width: 100%;
    height: 108%;
  }

  .krl-advisor-hero__meta {
    width: 100%;
    flex: 1 1 auto;
    height: auto;
    gap: 24px;
  }

  .krl-advisor-profile__card--experience {
    height: auto;
    min-height: 0;
  }

  .krl-advisor-profile__gallery-item--1,
  .krl-advisor-profile__gallery-item--2,
  .krl-advisor-profile__gallery-item--3,
  .krl-advisor-profile__gallery-item--4,
  .krl-advisor-profile__gallery-item--5,
  .krl-advisor-profile__gallery-item--6 {
    width: 100%;
    height: 200px;
  }
}


/* -------------------------------------------------------------------------- */
/* Single Insight / Blog Post */
/* -------------------------------------------------------------------------- */

.krl-article {
  background: var(--gray-000);
}

.krl-article-hero {
  padding: 40px 0 60px;
  background: var(--gray-000);
}

.krl-article-hero > .krl-container {
  padding-inline: 100px;
  max-width: 1440px;
}

.krl-article-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 650fr) minmax(0, 570fr);
  gap: 20px;
  align-items: stretch;
  width: 100%;
  height: 388px;
  border-radius: 20px;
  overflow: hidden;
}

.krl-article-hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 388px;
  background: var(--gray-100);
}

.krl-article-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.krl-article-hero__panel {
  position: relative;
  background: var(--navy-400, #2a5599);
  border-radius: 20px;
  overflow: hidden;
  height: 388px;
}

.krl-article-hero__pattern {
  position: absolute;
  left: -841px;
  top: -527px;
  width: 1495px;
  max-width: none;
  height: 1355px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.krl-article-hero__title {
  position: absolute;
  z-index: 1;
  margin: 0;
  left: 29px;
  top: 110px;
  width: 436px;
  max-width: calc(100% - 58px);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-000);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-body {
  padding: 40px 0 100px;
  background: var(--gray-000);
}

.krl-article-body > .krl-container {
  max-width: 1440px;
  padding-inline: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.krl-article-body__inner {
  max-width: 816px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-article-meta {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-article-meta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.krl-article-meta__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--navy-700);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-meta__read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #9ba7a8;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-meta__read img {
  width: 12px;
  height: 12px;
  display: block;
  flex-shrink: 0;
}

.krl-article-meta__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #9ba7a8;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-meta__avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.krl-article-meta__share {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: #474747;
  text-decoration: none;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-meta__share:hover {
  color: var(--navy-700);
}

.krl-article-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--gray-800);
  font-size: 14px;
  line-height: 1.2;
}

.krl-article-content > * + * {
  margin-top: 30px;
}

.krl-article-content p {
  margin: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-content p + p {
  margin-top: 12px;
}

.krl-article-content h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gray-800);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-stats {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 70px;
  text-align: center;
  width: 100%;
  height: 285px;
  box-sizing: border-box;
  overflow: visible;
}

.krl-article-stats__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 22px;
  height: 22px;
  color: #2e2e2e;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-stats__grid {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 93px;
  color: #1a345e;
  overflow: visible;
}

.krl-article-stats__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
  height: 93px;
  padding: 0 47px;
  box-sizing: border-box;
  overflow: visible;
}

.krl-article-stats__item:nth-child(2) {
  padding: 0 39px;
}

.krl-article-stats__value {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 90px;
  font-weight: 700;
  font-style: italic;
  line-height: 63px;
  height: 63px;
  color: #1a345e;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-stats__label {
  margin: 20px 0 0;
  width: 292px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a345e;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-stats__item:nth-child(2) .krl-article-stats__label {
  width: 200px;
}

.krl-article-figure {
  margin: 0;
  background: #e8e6e4;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  height: 255px;
  overflow: hidden;
}

.krl-article-figure img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.krl-article-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.krl-article-divider__rule {
  position: absolute;
  left: 0;
  top: 24px;
  width: 779px;
  max-width: 100%;
  height: 1px;
  background: #1a345e;
}

.krl-article-divider__logo {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 50px;
  object-fit: cover;
  background: #fff;
}

.krl-article-topics {
  background: #e8ebef;
  border-radius: 16px;
  padding: 40px 105px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 27px;
  width: 100%;
  max-width: 816px;
  height: 230px;
  box-sizing: border-box;
  overflow: hidden;
}

.krl-article-topics__heading {
  margin: 0;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #1a345e;
  font-size: 20px;
  font-weight: 700;
  line-height: 14px;
  height: 38px;
  box-sizing: border-box;
  color: var(--gray-800);
  text-align: left;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-topics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 107px;
  width: 100%;
  height: 84px;
}

.krl-article-topics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 84px;
  gap: 0;
}

.krl-article-topics__list li {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.krl-article-topics__list a {
  display: inline-block;
  font-size: 14px;
  line-height: 10px;
  height: 10px;
  color: var(--gray-800);
  text-decoration: none;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.krl-article-topics__list a:hover {
  color: var(--navy-700);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .krl-article-hero > .krl-container {
    padding-inline: 40px;
  }

  .krl-article-body > .krl-container {
    padding-inline: 40px;
    max-width: 100%;
  }

  .krl-article-topics {
    height: auto;
    min-height: 230px;
    padding-inline: 40px;
    overflow: visible;
  }

  .krl-article-topics__grid {
    gap: 40px;
    height: auto;
  }

  .krl-article-topics__list {
    height: auto;
    gap: 27px;
  }

  .krl-article-topics__list a {
    height: auto;
    line-height: 1.2;
  }

  .krl-article-divider__rule {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .krl-article-hero__inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .krl-article-hero__media,
  .krl-article-hero__panel {
    height: 320px;
  }

  .krl-article-hero__title {
    font-size: 28px;
    top: 48px;
  }

  .krl-article-stats {
    height: auto;
    min-height: 0;
    padding: 40px 24px;
    gap: 40px;
  }

  .krl-article-stats__grid {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .krl-article-stats__item,
  .krl-article-stats__item:nth-child(2) {
    height: auto;
    padding: 0 20px;
  }

  .krl-article-stats__value {
    font-size: 64px;
    line-height: 0.7;
    height: auto;
  }

  .krl-article-stats__label {
    margin-top: 16px;
  }

  .krl-article-figure {
    height: auto;
    min-height: 0;
  }

  .krl-article-figure img {
    height: auto;
    aspect-ratio: 602 / 199;
  }

  .krl-article-topics__grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
}

@media (max-width: 640px) {
  .krl-article-hero > .krl-container,
  .krl-article-body > .krl-container {
    padding-inline: 20px;
  }

  .krl-article-content h2 {
    font-size: 26px;
  }

  .krl-article-topics {
    padding: 28px 20px;
  }
}

/* -------------------------------------------------------------------------- */
/* Split Hero — navy panel (Contact) */
/* -------------------------------------------------------------------------- */

.krl-split-hero--navy .krl-split-hero__panel--copy {
  background-color: var(--navy-800);
  background-image: var(--krl-split-hero-pattern);
  background-repeat: no-repeat;
  /* Figma Layer_1: left -841px, top -527px inside 690×388 panel */
  background-position: -841px -527px;
  background-size: 1495px auto;
}

.krl-split-hero--navy .krl-split-hero__copy {
  position: relative;
  z-index: 1;
  gap: 17px;
  padding: 64px 40px 64px 100px;
}

.krl-split-hero--navy .krl-split-hero__heading {
  max-width: 286px;
  font-size: 40px;
  gap: 13px;
}

.krl-split-hero--navy .krl-split-hero__eyebrow {
  max-width: 286px;
}

.krl-split-hero--navy .krl-split-hero__body {
  max-width: 286px;
}

.krl-split-hero--navy .krl-split-hero__image {
  object-position: 30% 30%;
}

/* -------------------------------------------------------------------------- */
/* Contact Form */
/* -------------------------------------------------------------------------- */

.krl-contact-form {
  padding: 70px 0;
  background: var(--gray-000);
}

.krl-contact-form > .krl-container {
  padding-inline: 100px;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-contact-form__header {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.krl-contact-form__header .krl-section-heading {
  font-size: 32px;
  line-height: 1.2;
  gap: 0.3em;
  color: var(--gray-800);
}

.krl-contact-form__intro {
  margin: 0;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--gray-800);
}

.krl-contact-form__notice {
  margin: 0;
  max-width: 820px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.3;
}

.krl-contact-form__notice--success {
  background: #e8f5ec;
  color: #1f5a34;
}

.krl-contact-form__notice--error {
  background: #fdeceb;
  color: #8a1f1a;
}

.krl-contact-form__form {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
}

.krl-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 820px;
}

.krl-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.krl-contact-form__field--full {
  width: 100%;
  max-width: 820px;
}

.krl-contact-form__label {
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-600);
}

.krl-contact-form__input,
.krl-contact-form__select,
.krl-contact-form__textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #d1d6df;
  border-radius: 10px;
  background: #fff;
  padding: 16px 20px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.2;
  box-sizing: border-box;
  height: 52px;
  min-height: 52px;
}

.krl-contact-form__input::placeholder,
.krl-contact-form__textarea::placeholder {
  color: var(--gray-600);
}

.krl-contact-form__select {
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%232e2e2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
  cursor: pointer;
}

.krl-contact-form__textarea {
  height: 245px;
  min-height: 245px;
  padding: 20px;
  resize: vertical;
  line-height: 1.2;
}

.krl-contact-form__prefs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  border: 0;
}

.krl-contact-form__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.krl-contact-form__check input {
  position: absolute;
  opacity: 0;
  width: 14px;
  height: 14px;
  margin: 0;
  cursor: pointer;
}

.krl-contact-form__check-box {
  width: 14px;
  height: 14px;
  border: 1px solid #8c99ae;
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
  flex-shrink: 0;
}

.krl-contact-form__check input:checked + .krl-contact-form__check-box {
  background: var(--navy-700);
  border-color: var(--navy-700);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.krl-contact-form__check-label {
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-600);
}

.krl-contact-form__form > .krl-btn {
  align-self: flex-start;
  min-width: 127px;
  padding: 15px 40px;
}

.krl-contact-form__privacy {
  margin: 0;
  max-width: 610px;
  font-size: 12px;
  line-height: 1.2;
  color: var(--gray-700);
}

@media (max-width: 1100px) {
  .krl-contact-form > .krl-container {
    padding-inline: 60px;
  }
}

@media (max-width: 900px) {
  .krl-contact-form > .krl-container {
    padding-inline: 24px;
  }

  .krl-contact-form__row {
    grid-template-columns: 1fr;
  }
}


/* QC Pass 3 — filters reset, join bands, collage fan rotation, quote disclaimer */
.krl-insights-filters__reset {
  display: inline-flex;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  cursor: pointer;
}

.krl-insights-filters__reset:hover {
  color: var(--orange-400);
}

.krl-insights--archive .krl-section-heading__line {
  display: inline;
  white-space: nowrap;
}

.krl-wwa-band,
.krl-join-band {
  position: relative;
  overflow: visible;
}

.krl-wwa-band > section,
.krl-join-band > section {
  position: relative;
  z-index: 1;
  background: transparent;
}

.krl-wwa-band__watermark,
.krl-join-band__watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  max-width: none;
}

.krl-wwa-band__watermark {
  left: calc(50% - 50vw + (898 / 1440) * 100vw);
  top: 48px;
  width: calc((3321 / 1440) * 100vw);
  height: auto;
  opacity: 1;
}

.krl-join-band__watermark {
  right: -10vw;
  top: -40px;
  width: min(90vw, 1400px);
  height: auto;
  opacity: 0.12;
}

.krl-foundation--gray.krl-band-child::before {
  display: none;
}

.krl-collage-intro__fan {
  position: relative;
}

.krl-collage-intro__fan[data-collage-fan] .krl-collage-intro__shot {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.krl-collage-intro__eyebrow {
  font-family: inherit;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--navy-700);
}

.krl-quote-banner__attr,
.krl-story-cards__disclaimer,
.krl-testimonials__disclaimer {
  text-align: left;
}

.krl-story-cards__disclaimer {
  text-align: left;
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .krl-benefits__header {
    margin-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .krl-insights--archive .krl-section-heading {
    white-space: normal;
    flex-wrap: wrap;
  }
}
