:root {
  --color-navy: #07324a;
  --color-navy-secondary: #0a3b57;
  --color-blue: #007db9;
  --color-blue-hover: #006ea5;
  --color-accent: #008fd5;
  --color-rsp-blue: #006fb5;
  --color-rsp-sky: #01aef0;
  --color-body: #4d6d7e;
  --color-muted: #708796;
  --color-header: #f9fcfd;
  --color-warm-bg: #f8f6f0;
  --color-cool-bg: #e9f7fb;
  --color-white: #ffffff;
  --color-border: #d4e0e5;
  --container-width: 1220px;
  --header-height: 70px;
  --page-gutter: 32px;
  --shadow-button: 0 10px 22px rgba(0, 61, 91, 0.15);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --compact-gutter: clamp(18px, 5vw, 20px);
  --compact-section-block: clamp(44px, 12vw, 56px);
  --compact-card-radius: 16px;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  color-scheme: light;
  background: var(--color-header);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--color-warm-bg);
  color: var(--color-navy);
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
section,
header,
footer,
nav {
  min-width: 0;
}

body::before {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 29;
  background: rgba(4, 28, 42, 0.42);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-is-open {
  overflow: hidden;
}

body.menu-is-open::before {
  opacity: 1;
  pointer-events: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(0, 143, 213, 0.48);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(7, 50, 74, 0.05);
  background: rgba(249, 252, 253, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--container-width));
  height: var(--header-height);
  margin-inline: auto;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  min-width: 226px;
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.brand-mobile-role {
  display: none;
}

.brand-title,
.brand-subtitle {
  display: block;
  white-space: nowrap;
}

.brand-title {
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.65vw, 30px);
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding-block: 27px 26px;
  color: #153d52;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 220ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 1px;
  background: var(--color-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #073d5a;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.language-selector {
  display: inline-flex;
  align-items: center;
  width: 76px;
  height: 38px;
  padding: 2px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
}

.language-option {
  display: grid;
  width: 35px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #405b6b;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  transition:
    background 200ms ease,
    color 200ms ease;
}

.language-option.is-active {
  background: #0877af;
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 2px 0 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 600;
}

.menu-toggle-icon {
  display: grid;
  width: 24px;
  height: 20px;
  align-content: center;
  gap: 5px;
}

.menu-toggle-icon span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-navy);
  transform-origin: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-navigation {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 25;
  border-top: 1px solid rgba(7, 50, 74, 0.05);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-header);
}

.mobile-navigation[hidden] {
  display: none;
}

.mobile-navigation-inner {
  display: grid;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--container-width));
  margin-inline: auto;
  padding-block: 12px 18px;
}

.mobile-nav-link {
  padding: 13px 0;
  border-bottom: 1px solid rgba(7, 50, 74, 0.07);
  color: var(--color-navy-secondary);
  font-size: 15px;
  font-weight: 600;
}

.mobile-nav-link:last-child {
  border-bottom: 0;
}

.mobile-nav-link.is-active {
  color: var(--color-accent);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(132, 215, 239, 0.26) 0%,
      rgba(190, 234, 245, 0.12) 34%,
      transparent 67%
    ),
    linear-gradient(90deg, #f8f6f0 0%, #f9f8f4 38%, #eff8fa 63%, #e6f5f9 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  background-image: url("assets/kabindra-brand/gorkha-hero-landscape-v1.png");
  background-image: var(--cms-home-hero-background, image-set(
    url("assets/kabindra-brand/gorkha-hero-landscape-v1.webp") type("image/webp"),
    url("assets/kabindra-brand/gorkha-hero-landscape-v1.png") type("image/png")
  ));
  background-position: center 48%;
  background-size: cover;
  content: "";
  opacity: 0.96;
  pointer-events: none;
}

.hero-landscape-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 0.98;
  pointer-events: none;
}

.hero-landscape-video[hidden] {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--container-width));
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  margin-inline: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 600px;
  max-width: 51%;
  padding-top: clamp(104px, 13.5vh, 126px);
  animation: content-in 430ms var(--ease-out) both;
}

.hero-eyebrow {
  margin: 0 0 20px;
  color: #0084c4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title {
  max-width: 620px;
  margin: 0;
  color: var(--color-navy);
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: clamp(70px, 4.55vw, 80px);
  font-weight: 850;
  letter-spacing: -0.043em;
  line-height: 0.98;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span span {
  display: inline;
}

.hero-title-accent {
  color: inherit;
}

.hero-description {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--color-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-name {
  margin: 10px 0 0;
  color: var(--color-accent);
  font-family: "Noto Sans Devanagari", "Mukta", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
}

.hero-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-button i {
  flex: 0 0 auto;
  font-size: 16px;
}

.hero-button:hover {
  transform: translateY(-1px);
}

.hero-button-primary {
  border-color: var(--color-blue);
  background: var(--color-blue);
  box-shadow: var(--shadow-button);
  color: var(--color-white);
}

.hero-button-primary:hover {
  border-color: var(--color-blue-hover);
  background: var(--color-blue-hover);
  box-shadow: 0 12px 24px rgba(0, 61, 91, 0.18);
}

.hero-button-secondary {
  border-color: #c8d6dd;
  background: rgba(255, 255, 255, 0.72);
  color: #143e54;
}

.hero-button-secondary:hover {
  border-color: #8fb8ca;
  background: var(--color-white);
}

.hero-portrait {
  position: absolute;
  top: 0;
  right: 42px;
  bottom: 0;
  z-index: 1;
  display: flex;
  width: clamp(560px, 35.2vw, 620px);
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  pointer-events: none;
  animation: portrait-in 440ms 80ms var(--ease-out) both;
}

.hero-portrait img {
  display: block;
  width: auto;
  max-width: none;
  height: calc(100% + 40px);
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 20px 35px rgba(35, 73, 87, 0.07));
}

.hero-portrait picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

.secretariat-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5.5vw, 78px) var(--page-gutter) clamp(48px, 6vw, 86px);
  background: #f4fafc;
}

.secretariat-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(7, 50, 74, 0.12);
  content: "";
}

.secretariat-inner {
  position: relative;
  width: min(100%, var(--container-width));
  margin-inline: auto;
}

.secretariat-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .62fr);
  align-items: end;
  column-gap: 40px;
  margin-bottom: 26px;
}

.section-eyebrow,
.secretariat-card-role {
  margin: 0;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.secretariat-heading .section-eyebrow { grid-column: 1 / -1; margin-bottom: 13px; }
.secretariat-heading h2 { margin: 0; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(40px, 5.2vw, 70px); font-weight: 800; letter-spacing: -.065em; line-height: .96; }
.secretariat-heading > p:last-child { margin: 0 0 5px; color: var(--color-body); font-size: 14px; line-height: 1.5; }

.secretariat-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.secretariat-card { min-height: 246px; display: grid; grid-template-columns: minmax(150px, 37%) 1fr; border: 1px solid rgba(7, 50, 74, .15); background: rgba(255, 255, 255, .88); }
.secretariat-card-media { position: relative; overflow: hidden; min-height: 246px; background: linear-gradient(145deg, #dff3fa, #b9e1ee); }
.secretariat-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: drop-shadow(0 12px 18px rgba(7, 50, 74, .08)); }
.secretariat-card--sujan .secretariat-card-media img { transform: translateY(-12%) scale(1.08); transform-origin: center 18%; }
.secretariat-card--sudip .secretariat-card-media img { transform: scale(1.55); transform-origin: center 24%; }
.secretariat-card-body { display: flex; flex-direction: column; justify-content: center; padding: 28px clamp(22px, 3vw, 42px); }
.secretariat-card-body h3 { margin: 14px 0 11px; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -.055em; line-height: 1; }
.secretariat-card-body > p:not(.secretariat-card-role) { max-width: 350px; margin: 0; color: var(--color-body); font-size: 13px; line-height: 1.6; }
.secretariat-card-contact { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.secretariat-card-contact a { min-height: 38px; display: inline-flex; align-items: center; max-width: 100%; padding: 8px 11px; border: 1px solid rgba(0, 143, 213, .28); border-radius: 5px; color: var(--color-navy); background: rgba(223, 243, 250, .58); font-size: 11px; font-weight: 750; line-height: 1.25; overflow-wrap: anywhere; text-decoration: none; }
.secretariat-card-contact a:hover,.secretariat-card-contact a:focus-visible { border-color: var(--color-accent); background: #fff; }

.mp-profile-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 108px) var(--page-gutter) clamp(82px, 7.5vw, 116px);
  border-top: 1px solid rgba(7, 50, 74, .1);
  background: #f8fcfd;
}

.mp-profile-backdrop {
  position: absolute;
  z-index: -1;
  inset: auto -5% -8% 34%;
  height: 74%;
  background: url("assets/kabindra-brand/gorkha-budget-background-realistic.webp") right bottom / contain no-repeat;
  filter: grayscale(1) contrast(1.15) sepia(.15) hue-rotate(155deg) saturate(1.25);
  opacity: .065;
  pointer-events: none;
}

.mp-profile-inner { width: min(100%, var(--container-width)); margin-inline: auto; }
.mp-profile-lead { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr); gap: clamp(44px, 6vw, 86px); align-items: center; }
.mp-profile-lead > * { min-width: 0; }
.mp-profile-copy { min-width: 0; }

.mp-profile-portrait {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  border: 1px solid rgba(7, 50, 74, .14);
  border-radius: 16px;
  background: #e7f3f7;
  box-shadow: 0 24px 54px rgba(7, 50, 74, .09);
}

.mp-profile-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.mp-profile-portrait figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 4px; padding: 58px 24px 22px; color: #fff; background: linear-gradient(180deg, transparent, rgba(5, 42, 63, .9)); }
.mp-profile-portrait figcaption strong { font-family: "Inter Tight", Inter, sans-serif; font-size: 22px; letter-spacing: -.035em; }
.mp-profile-portrait figcaption span { font-size: 11px; line-height: 1.4; }

.mp-profile-label { margin: 0 0 17px; color: var(--color-blue); font-size: 14px; font-weight: 800; }
.mp-profile-copy h2 { max-width: 740px; margin: 0; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(48px, 5.3vw, 74px); font-weight: 800; letter-spacing: -.066em; line-height: .96; text-wrap: balance; }
.mp-profile-intro { max-width: 710px; margin: 27px 0 0; color: #274f67; font-size: clamp(17px, 1.45vw, 20px); font-weight: 570; line-height: 1.58; }
.mp-profile-body { max-width: 710px; margin: 18px 0 0; color: var(--color-body); font-size: 14px; line-height: 1.72; }

.mp-current-roles { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(220px, .8fr); align-items: start; margin-top: 24px; border-top: 1px solid rgba(7, 50, 74, .13); border-bottom: 1px solid rgba(7, 50, 74, .13); }
.mp-primary-roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mp-role-card { display: grid; min-width: 0; grid-template-columns: 42px minmax(0, 1fr); gap: 12px; align-items: center; min-height: 88px; padding: 15px 18px; }
.mp-primary-role + .mp-primary-role { border-left: 1px solid rgba(7, 50, 74, .1); }
.mp-role-card i { display: grid; width: 42px; height: 42px; border-radius: 12px; color: var(--color-blue); background: #e4f4fa; font-size: 20px; place-items: center; }
.mp-role-card span { color: var(--color-navy); font-size: 15px; font-weight: 750; line-height: 1.35; white-space: pre-line; }
.mp-additional-roles { border-left: 1px solid rgba(7, 50, 74, .1); }
.mp-additional-roles summary { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; color: var(--color-navy); font-size: 14px; font-weight: 800; line-height: 1.35; cursor: pointer; list-style: none; }
.mp-additional-roles summary::-webkit-details-marker { display: none; }
.mp-additional-roles summary > i { flex: 0 0 auto; color: var(--color-blue); font-size: 18px; transition: transform .2s ease; }
.mp-additional-roles[open] summary > i { transform: rotate(180deg); }
.mp-additional-roles summary:focus-visible { outline: 3px solid rgba(0, 125, 185, .34); outline-offset: -3px; }
.mp-additional-role-list { border-top: 1px solid rgba(7, 50, 74, .1); }
.mp-additional-role-list .mp-role-card { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; min-height: 60px; padding: 11px 16px; }
.mp-additional-role-list .mp-role-card + .mp-role-card { border-top: 1px solid rgba(7, 50, 74, .08); }
.mp-additional-role-list .mp-role-card i { width: 34px; height: 34px; border-radius: 10px; font-size: 17px; }
.mp-additional-role-list .mp-role-card span { font-size: 13.5px; line-height: 1.4; }
.mp-profile-verification { display: flex; gap: 9px; align-items: flex-start; margin: 13px 0 0; color: #5b7888; font-size: 12px; line-height: 1.5; }
.mp-profile-verification i { flex: 0 0 auto; color: var(--color-blue); font-size: 17px; }

.mp-journey { margin-top: clamp(58px, 6vw, 86px); }
.mp-journey-heading { display: flex; gap: 28px; align-items: end; justify-content: space-between; margin-bottom: 28px; }
.mp-journey-heading h3 { margin: 0; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -.05em; line-height: 1; }
.mp-journey-heading p { max-width: 570px; margin: 9px 0 0; color: var(--color-body); font-size: 12px; line-height: 1.55; }
.mp-journey-source-note { display: inline-flex; flex: 0 0 auto; min-height: 42px; align-items: center; gap: 7px; color: var(--color-blue); font-size: 11px; font-weight: 800; }
.mp-journey-source-note i { font-size: 16px; }

.mp-timeline { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.mp-timeline.is-expanded { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.mp-timeline::before { position: absolute; top: 21px; right: 0; left: 0; height: 1px; background: rgba(0, 125, 185, .28); content: ""; }
.mp-timeline > li[hidden] { display: none; }
.mp-timeline > li { position: relative; min-width: 0; padding: 0 clamp(13px, 1.35vw, 22px) 0 0; }
.mp-timeline > li:not(:first-child) { padding-left: clamp(13px, 1.35vw, 22px); }
.mp-timeline-marker { position: relative; z-index: 1; display: grid; width: 42px; height: 42px; border: 1px solid rgba(0, 125, 185, .3); border-radius: 13px; color: var(--color-blue); background: #f8fcfd; font-size: 19px; place-items: center; }
.mp-timeline time { display: block; min-height: 30px; margin-top: 18px; color: var(--color-blue); font-size: 10px; font-weight: 850; letter-spacing: .045em; line-height: 1.35; }
.mp-timeline h4 { margin: 8px 0 0; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: 17px; letter-spacing: -.03em; line-height: 1.2; }
.mp-timeline p { margin: 10px 0 0; color: var(--color-body); font-size: 12px; line-height: 1.55; }
.mp-timeline a { display: inline-flex; gap: 5px; align-items: center; margin-top: 12px; color: var(--color-blue); font-size: 11px; font-weight: 800; line-height: 1.4; }
.mp-timeline a:hover, .mp-timeline a:focus-visible { text-decoration: underline; text-underline-offset: 3px; }
.mp-timeline a i { flex: 0 0 auto; font-size: 11px; }
.mp-timeline-links { display: flex; flex-wrap: wrap; gap: 0 10px; }
.mp-journey-toggle { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; margin-top: 24px; padding: 0 18px; border: 1px solid rgba(0, 125, 185, .28); border-radius: 12px; color: var(--color-navy); background: rgba(255, 255, 255, .82); font: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer; }
.mp-journey-toggle:hover { border-color: rgba(0, 125, 185, .5); background: #fff; }
.mp-journey-toggle:active { transform: translateY(1px); }
.mp-journey-toggle:focus-visible { outline: 3px solid rgba(0, 125, 185, .34); outline-offset: 3px; }
.mp-journey-toggle i { color: var(--color-blue); font-size: 17px; transition: transform .2s ease; }
.mp-journey-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.mp-journey-toggle-collapse,
.mp-journey-toggle[aria-expanded="true"] .mp-journey-toggle-view { display: none; }
#mp-political-timeline [data-journey-earlier][hidden] { display: none !important; }
.mp-journey-toggle[aria-expanded="true"] .mp-journey-toggle-collapse { display: inline; }

.is-nepali .mp-profile-section { font-family: "Noto Sans Devanagari", "Mukta", sans-serif; }
.is-nepali .mp-profile-copy h2,
.is-nepali .mp-journey-heading h3,
.is-nepali .mp-timeline h4,
.is-nepali .mp-profile-portrait figcaption strong { font-family: "Noto Sans Devanagari", "Mukta", sans-serif; letter-spacing: -.025em; line-height: 1.15; }

@media (max-width: 1023px) {
  .mp-profile-lead { grid-template-columns: minmax(270px, .68fr) minmax(0, 1.32fr); gap: 38px; }
  .mp-profile-portrait { min-height: 520px; }
  .mp-timeline { display: flex; gap: 0; overflow-x: auto; padding-bottom: 12px; scroll-padding-inline: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mp-timeline::-webkit-scrollbar { display: none; }
  .mp-timeline::before { right: auto; width: calc(260px * 3); }
  .mp-timeline.is-expanded::before { width: calc(260px * 6); }
  .mp-timeline > li { flex: 0 0 260px; padding-right: 22px; scroll-snap-align: start; }
  .mp-timeline > li:not(:first-child) { padding-left: 18px; }
}

@media (max-width: 767px) {
  .mp-profile-section { padding: 58px 18px 66px; }
  .mp-profile-backdrop { inset: auto -28% 0 5%; height: 42%; opacity: .055; }
  .mp-profile-lead { grid-template-columns: 1fr; gap: 32px; }
  .mp-profile-portrait { min-height: 0; height: 330px; border-radius: 14px; }
  .mp-profile-portrait img { object-position: center 28%; }
  .mp-profile-portrait figcaption { padding: 50px 18px 17px; }
  .mp-profile-portrait figcaption strong { font-size: 20px; }
  .mp-profile-label { margin-bottom: 13px; font-size: 13px; }
  .mp-profile-copy h2 { font-size: clamp(40px, 11.5vw, 50px); line-height: .98; }
  .mp-profile-intro { margin-top: 21px; font-size: 16px; line-height: 1.55; }
  .mp-profile-body { margin-top: 14px; font-size: 13px; line-height: 1.65; }
  .mp-current-roles { display: block; margin-top: 22px; }
  .mp-primary-roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-role-card { grid-template-columns: 34px minmax(0, 1fr); gap: 9px; min-height: 102px; padding: 14px 12px; align-items: start; }
  .mp-role-card i { width: 34px; height: 34px; border-radius: 10px; font-size: 17px; }
  .mp-role-card span { font-size: 14px; line-height: 1.4; }
  .mp-additional-roles { border-top: 1px solid rgba(7, 50, 74, .1); border-left: 0; }
  .mp-additional-roles summary { min-height: 52px; padding: 9px 4px; font-size: 14px; }
  .mp-additional-role-list .mp-role-card { min-height: 58px; padding: 11px 4px; }
  .mp-additional-role-list .mp-role-card span { font-size: 13.5px; }
  .mp-profile-verification { margin-top: 12px; font-size: 12px; }
  .mp-journey { margin-top: 48px; }
  .mp-journey-heading { display: block; margin-bottom: 22px; }
  .mp-journey-heading h3 { font-size: 34px; }
  .mp-journey-source-note { margin-top: 10px; }
  .mp-timeline { margin-right: -18px; padding-right: 18px; }
  .mp-timeline::before { width: calc(246px * 3); }
  .mp-timeline.is-expanded::before { width: calc(246px * 6); }
  .mp-timeline > li { flex-basis: 246px; padding-right: 20px; }
  .mp-timeline time { min-height: 0; margin-top: 15px; }
  .mp-timeline h4 { font-size: 17px; }
  .mp-timeline p { font-size: 12px; }
  .mp-journey-toggle { width: 100%; min-height: 52px; margin-top: 18px; }
}

@media (max-width: 360px) {
  .mp-profile-section { padding-right: 14px; padding-left: 14px; }
  .mp-profile-portrait { height: 300px; }
  .mp-timeline { margin-right: -14px; padding-right: 14px; }
}

.home-directory-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 7vw, 104px) var(--page-gutter) clamp(76px, 7.5vw, 112px);
  border-top: 1px solid rgba(7, 50, 74, .08);
  background: #f5fbfe;
}

.home-directory-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("assets/kabindra-brand/gorkha-budget-background-realistic.webp") right center / auto 118% no-repeat;
  filter: grayscale(1) contrast(1.25) sepia(.2) hue-rotate(155deg) saturate(1.5);
  opacity: .075;
  pointer-events: none;
}

.home-directory-inner { width: min(100%, var(--container-width)); margin-inline: auto; }

.home-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .62fr);
  align-items: end;
  gap: 56px;
}

.home-directory-heading .section-eyebrow { margin-bottom: 17px; font-size: 11px; }
.home-directory-heading-copy { min-width: 0; }
.home-directory-heading h2 { max-width: 720px; margin: 0; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(52px, 5.15vw, 72px); font-weight: 800; letter-spacing: -.067em; line-height: .98; text-wrap: balance; }
.home-directory-heading-copy > p { max-width: 590px; margin: 25px 0 0; color: var(--color-body); font-size: 15px; line-height: 1.65; text-wrap: pretty; }
.home-directory-link { display: inline-flex; min-height: 40px; align-items: center; gap: 12px; margin-top: 13px; color: var(--color-blue); font-size: 14px; font-weight: 800; }
.home-directory-link i { font-size: 17px; transition: transform 180ms var(--ease-out); }
.home-directory-link:hover i, .home-directory-link:focus-visible i { transform: translateX(3px); }

.home-directory-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 58px;
  padding: 4px;
  border: 1px solid rgba(156, 188, 205, .72);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 32px rgba(7, 50, 74, .08);
}

.home-directory-toggle-button {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--color-navy);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-directory-toggle-button i { font-size: 20px; }
.home-directory-toggle-button.is-selected { color: #fff; background: var(--color-blue); box-shadow: 0 9px 18px rgba(0, 125, 185, .22); }
.home-directory-toggle-button:active { transform: scale(.985); }

.home-directory-levels { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 35px; }

.home-directory-level {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 92px;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(174, 201, 214, .76);
  border-radius: 13px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 26px rgba(7, 50, 74, .055);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}

.home-directory-level:hover { border-color: rgba(0, 143, 213, .48); transform: translateY(-2px); }
.home-directory-level.is-selected { border-color: var(--color-accent); background: #f2fbff; box-shadow: 0 14px 30px rgba(0, 125, 185, .1); }
.home-directory-level-check { position: absolute; top: 9px; right: 9px; display: grid; width: 19px; height: 19px; border-radius: 50%; background: var(--color-accent); color: #fff; font-size: 12px; opacity: 0; place-items: center; transform: scale(.75); transition: opacity 180ms ease, transform 180ms ease; }
.home-directory-level.is-selected .home-directory-level-check { opacity: 1; transform: scale(1); }
.home-directory-level img { width: 56px; height: 56px; object-fit: contain; }
.home-directory-level > span { min-width: 0; padding-right: 5px; color: var(--color-navy); font-family: "Inter Tight", "Noto Sans Devanagari", Inter, sans-serif; font-size: 13px; font-weight: 750; letter-spacing: -.025em; line-height: 1.17; overflow-wrap: normal; text-wrap: pretty; }

.home-directory-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(174, 201, 214, .76);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 25px 55px rgba(7, 50, 74, .085);
}

.home-directory-panel-card { min-width: 0; }
.home-directory-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px 18px; }
.home-directory-panel-identity { display: flex; min-width: 0; align-items: center; gap: 17px; }
.home-directory-panel-identity > img { flex: 0 0 64px; width: 64px; height: 64px; object-fit: contain; }
.home-directory-panel-identity > div { display: grid; min-width: 0; gap: 4px; }
.home-directory-panel-heading strong { color: var(--color-navy); font-family: "Inter Tight", "Noto Sans Devanagari", Inter, sans-serif; font-size: 20px; letter-spacing: -.035em; line-height: 1.08; }
.home-directory-panel-identity span { color: var(--color-muted); font-size: 12px; line-height: 1.35; }
.home-directory-verified { display: inline-flex; flex: 0 0 auto; min-height: 38px; align-items: center; gap: 8px; padding: 0 14px; border-radius: 8px; color: var(--color-blue); background: #eef8fd; font-size: 11px; font-weight: 800; }
.home-directory-verified i { color: var(--color-accent); font-size: 19px; }

.home-directory-people { display: grid; grid-template-columns: repeat(var(--home-directory-columns, 3), minmax(0, 1fr)); min-height: 176px; padding: 8px 28px 20px; }
.home-directory-person { display: grid; min-width: 0; grid-template-columns: 92px minmax(0, 1fr); align-items: center; gap: 17px; padding: 7px 22px; border-right: 1px solid rgba(7, 50, 74, .1); }
.home-directory-person:first-child { padding-left: 0; }
.home-directory-person:last-child { padding-right: 0; border-right: 0; }
.home-directory-person-photo { position: relative; overflow: hidden; width: 92px; min-height: 132px; border: 1px solid rgba(174, 201, 214, .7); border-radius: 11px; background: #eaf6fa; }
.home-directory-person-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.home-directory-person-photo.is-emblem img { inset: 24%; width: 52%; height: 52%; object-fit: contain; }
.home-directory-person-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; }
.home-directory-person-copy > p { margin: 0; color: var(--color-accent); font-size: 10px; font-weight: 800; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; }
.home-directory-person-copy h3 { margin: 8px 0 12px; color: var(--color-navy); font-family: "Inter Tight", "Noto Sans Devanagari", Inter, sans-serif; font-size: clamp(17px, 1.55vw, 22px); font-weight: 800; letter-spacing: -.04em; line-height: 1.08; }
.home-directory-person-links { display: grid; min-width: 0; gap: 8px; }
.home-directory-person-links a { display: flex; min-width: 0; align-items: flex-start; gap: 9px; color: #315f7b; font-size: 11px; font-weight: 650; line-height: 1.35; }
.home-directory-person-links a i { flex: 0 0 auto; margin-top: 1px; color: var(--color-blue); font-size: 15px; }
.home-directory-person-links a span { min-width: 0; overflow-wrap: anywhere; }
.home-directory-person-links > span { color: var(--color-muted); font-size: 11px; }
.home-directory-empty { grid-column: 1 / -1; align-self: center; margin: 0; padding: 36px; color: var(--color-muted); text-align: center; }

.home-directory-mobile-cta { display: none; }
.home-directory-panel-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 28px 19px; border-top: 1px solid rgba(7, 50, 74, .1); color: var(--color-muted); font-size: 11px; line-height: 1.45; }
.home-directory-trust { display: inline-flex; align-items: center; gap: 10px; }
.home-directory-trust > i { flex: 0 0 auto; color: #4e7892; font-size: 20px; }
.home-directory-panel-footer > a { display: inline-flex; min-height: 40px; align-items: center; gap: 9px; color: var(--color-blue); font-weight: 800; white-space: nowrap; }
.home-directory-panel-footer > a i { font-size: 16px; }

@media (min-width: 768px) and (max-width: 1023px) {
  .home-directory-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .home-directory-toggle { width: min(100%, 470px); }
  .home-directory-levels { display: flex; overflow-x: auto; padding: 2px 2px 11px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-directory-levels::-webkit-scrollbar { display: none; }
  .home-directory-level { flex: 0 0 210px; scroll-snap-align: start; }
  .home-directory-people { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .home-directory-person { min-height: 160px; border-right: 0; border-bottom: 1px solid rgba(7, 50, 74, .1); }
  .home-directory-person:last-child { border-bottom: 0; }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  .home-directory-person { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; padding-right: 14px; padding-left: 14px; }
  .home-directory-person-photo { width: 78px; min-height: 118px; }
  .home-directory-person-copy > p { font-size: 9px; }
  .home-directory-person-copy h3 { font-size: 17px; }
  .home-directory-person-links a { gap: 6px; font-size: 9.5px; }
}

@media (max-width: 767px) {
  .home-directory-section { padding: 58px 20px 68px; }
  .home-directory-backdrop { background-position: 64% top; background-size: auto 72%; opacity: .08; }
  .home-directory-heading { display: block; }
  .home-directory-heading .section-eyebrow { margin-bottom: 17px; font-size: 10px; }
  .home-directory-heading h2 { max-width: 520px; font-size: clamp(40px, 11.2vw, 49px); line-height: .99; }
  .home-directory-heading-copy > p { max-width: 520px; margin-top: 24px; font-size: 16px; line-height: 1.55; }
  .home-directory-link { margin-top: 22px; font-size: 15px; }
  .home-directory-toggle { width: 100%; min-height: 62px; margin-top: 28px; }
  .home-directory-toggle-button { min-height: 52px; gap: 8px; padding: 0 9px; font-size: clamp(11px, 3.2vw, 14px); }
  .home-directory-toggle-button i { font-size: 20px; }

  .home-directory-levels { display: flex; max-width: 100%; gap: 10px; overflow-x: auto; margin-top: 24px; padding: 3px 2px 10px; overscroll-behavior-x: contain; scroll-padding-inline: 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-directory-levels::-webkit-scrollbar { display: none; }
  .home-directory-level { flex: 0 0 142px; min-height: 154px; grid-template-columns: 1fr; align-content: center; justify-items: center; gap: 11px; padding: 17px 11px 15px; text-align: center; scroll-snap-align: start; }
  .home-directory-level:hover { transform: none; }
  .home-directory-level img { width: 62px; height: 62px; }
  .home-directory-level > span { min-height: 48px; padding: 0; font-size: 14px; line-height: 1.18; text-align: center; text-wrap: balance; }

  .home-directory-panel { margin-top: 12px; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .home-directory-panel-card { overflow: hidden; border: 1px solid rgba(174, 201, 214, .78); border-radius: 20px; background: rgba(255, 255, 255, .96); box-shadow: 0 20px 42px rgba(7, 50, 74, .08); }
  .home-directory-panel-heading { align-items: flex-start; gap: 12px; padding: 18px 16px 16px; }
  .home-directory-panel-identity { align-items: center; gap: 12px; }
  .home-directory-panel-identity > img { flex-basis: 56px; width: 56px; height: 56px; }
  .home-directory-panel-heading strong { font-size: clamp(19px, 5vw, 23px); }
  .home-directory-panel-identity span { margin-top: 1px; font-size: 12px; }
  .home-directory-verified { min-height: 48px; max-width: 116px; justify-content: center; padding: 7px 9px; font-size: 10.5px; line-height: 1.25; text-align: center; white-space: normal; }

  .home-directory-people { display: block; min-height: 0; padding: 0 18px; }
  .home-directory-person { grid-template-columns: 104px minmax(0, 1fr); gap: 18px; min-height: 166px; padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(7, 50, 74, .1); }
  .home-directory-person:first-child { padding-top: 18px; }
  .home-directory-person:last-child { padding-right: 0; border-bottom: 0; }
  .home-directory-person-photo { width: 104px; min-height: 132px; }
  .home-directory-person-copy > p { font-size: 10px; }
  .home-directory-person-copy h3 { margin: 8px 0 11px; font-size: clamp(19px, 5.4vw, 23px); }
  .home-directory-person-links { gap: 8px; }
  .home-directory-person-links a { gap: 9px; font-size: 12px; line-height: 1.35; }
  .home-directory-person-links a { font-size: 11px; font-weight: 600; }
  .home-directory-person-links a i { font-size: 16px; }

  .home-directory-mobile-cta { display: flex; min-height: 56px; align-items: center; justify-content: center; gap: 13px; margin: 3px 16px 16px; border: 1px solid rgba(0, 143, 213, .25); border-radius: 8px; color: var(--color-blue); background: #f3faff; font-size: 15px; font-weight: 800; }
  .home-directory-mobile-cta i { font-size: 18px; }
  .home-directory-panel-footer { display: block; padding: 21px 4px 0; border-top: 0; font-size: 12px; }
  .home-directory-panel-footer > a { display: none; }
  .home-directory-trust { align-items: flex-start; gap: 11px; }
  .home-directory-trust > i { margin-top: 1px; font-size: 22px; }
}

@media (max-width: 410px) {
  .home-directory-section { padding-right: 18px; padding-left: 18px; }
  .home-directory-toggle-button { font-size: 11px; }
  .home-directory-level { flex-basis: 136px; min-height: 148px; }
  .home-directory-level img { width: 56px; height: 56px; }
  .home-directory-panel-heading { flex-direction: column; }
  .home-directory-verified { max-width: none; min-height: 40px; }
  .home-directory-person { grid-template-columns: 92px minmax(0, 1fr); gap: 14px; }
  .home-directory-person-photo { width: 92px; min-height: 122px; }
}

.is-nepali .home-directory-section,
.is-nepali .home-directory-section button { font-family: "Noto Sans Devanagari", "Mukta", sans-serif; }
.is-nepali .home-directory-heading h2,
.is-nepali .home-directory-person-copy h3 { letter-spacing: -.025em; line-height: 1.14; }

.home-budget-section { position: relative; overflow: hidden; padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 8vw, 116px); border-top: 1px solid rgba(0, 57, 95, .22); border-bottom: 1px solid rgba(0, 57, 95, .22); background: var(--color-rsp-sky); }
.home-budget-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(0, 57, 95, .18) 0%, transparent 35%, rgba(0, 42, 78, .2) 100%); pointer-events: none; }
.home-budget-section::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(1, 174, 240, .94) 0%, rgba(1, 174, 240, .82) 31%, rgba(1, 174, 240, .28) 52%, transparent 73%); pointer-events: none; }
.home-budget-backdrop { position: absolute; inset: 0; isolation: isolate; background-image: var(--cms-home-budget-background-desktop, url("assets/kabindra-brand/gorkha-budget-background-realistic.webp")); background-position: center; background-repeat: no-repeat; background-size: cover; filter: contrast(1.08) saturate(.94); opacity: .96; pointer-events: none; }
.home-budget-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(300px, .55fr) minmax(0, 1fr); align-items: center; gap: clamp(40px, 4vw, 72px); width: min(calc(100% - (2 * clamp(32px, 5vw, 80px))), 1440px); margin: 0 auto; }
.home-budget-copy { max-width: 460px; }
.home-budget-copy .section-eyebrow { margin-bottom: 17px; }
.home-budget-copy h2 { margin: 0; color: #fff; text-shadow: 0 2px 14px rgba(0, 42, 78, .18); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(42px, 4.6vw, 68px); font-weight: 800; letter-spacing: -.065em; line-height: .98; text-wrap: balance; }
.home-budget-copy .section-eyebrow { color: rgba(255, 255, 255, .9); }
.home-budget-intro { max-width: 430px; margin: 23px 0 0; color: rgba(255, 255, 255, .98); font-size: 15px; line-height: 1.72; text-wrap: pretty; }
.home-budget-selected-description { max-width: 430px; margin: 16px 0 0; color: rgba(255, 255, 255, .9); font-size: 12.5px; line-height: 1.68; text-wrap: pretty; }
.home-budget-primary-link { display: inline-flex; align-items: center; gap: 18px; min-height: 50px; margin-top: 27px; padding: 0 22px; border: 1px solid #fff; border-radius: 3px; background: #fff; box-shadow: 0 12px 24px rgba(0, 42, 78, .2); color: var(--color-navy); font-size: 13px; font-weight: 800; transition: gap 220ms var(--ease-out), background 220ms ease, transform 220ms ease; }
.home-budget-primary-link:hover, .home-budget-primary-link:focus-visible { gap: 24px; background: #eaf8ff; transform: translateY(-2px); }
.home-budget-primary-link i { font-size: 17px; }
.home-budget-panel { min-width: 0; container-type: inline-size; }
.home-budget-selectors { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.home-budget-selector { position: relative; isolation: isolate; display: flex; align-items: center; min-width: 0; min-height: 104px; gap: 9px; overflow: hidden; padding: 12px 10px; border: 1px solid rgba(255, 255, 255, .72); border-radius: 14px; background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .28)); box-shadow: 0 18px 30px rgba(7, 59, 87, .14), 0 4px 0 rgba(7, 59, 87, .07), inset 0 1px 0 rgba(255, 255, 255, .9), inset 0 -8px 16px rgba(7, 59, 87, .05); -webkit-backdrop-filter: blur(18px) saturate(130%); backdrop-filter: blur(18px) saturate(130%); color: var(--color-navy); cursor: pointer; text-align: left; transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease-out); }
.home-budget-selector::before { position: absolute; inset: 0 0 auto; z-index: -1; height: 1px; background: rgba(255, 255, 255, .96); content: ""; pointer-events: none; }
.home-budget-selector:hover { border-color: rgba(255, 255, 255, .94); background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .38)); box-shadow: 0 21px 34px rgba(7, 59, 87, .17), 0 4px 0 rgba(7, 59, 87, .08), inset 0 1px 0 rgba(255, 255, 255, .96), inset 0 -8px 16px rgba(7, 59, 87, .05); transform: translateY(-2px); }
.home-budget-selector.is-selected { border-color: rgba(0, 143, 213, .82); background: linear-gradient(135deg, rgba(246, 252, 255, .84), rgba(220, 244, 255, .46)); box-shadow: 0 21px 34px rgba(0, 125, 185, .16), 0 4px 0 rgba(0, 91, 142, .08), inset 0 1px 0 rgba(255, 255, 255, .98), inset 0 -8px 16px rgba(0, 125, 185, .06); }
.home-budget-selector img { flex: 0 0 50px; width: 50px; height: 50px; object-fit: contain; }
.home-budget-selector-name { display: block; min-width: 0; flex: 1 1 auto; padding-right: 8px; overflow-wrap: normal; word-break: normal; hyphens: none; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(11px, 1.02vw, 14px); font-weight: 700; letter-spacing: -.025em; line-height: 1.12; text-wrap: pretty; }
.home-budget-selector-check { position: absolute; top: 7px; right: 7px; display: grid; width: 21px; height: 21px; border-radius: 50%; background: var(--color-accent); color: #fff; font-size: 13px; opacity: 0; place-items: center; transform: scale(.7); transition: opacity 180ms ease, transform 180ms var(--ease-out); }
.home-budget-selector.is-selected .home-budget-selector-check { opacity: 1; transform: scale(1); }
.home-budget-overview { position: relative; isolation: isolate; margin-top: 15px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .9); border-radius: 18px; background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .3)); box-shadow: 0 22px 42px rgba(7, 59, 87, .16), 0 4px 0 rgba(7, 59, 87, .07), inset 0 1px 0 rgba(255, 255, 255, .98), inset 0 -10px 20px rgba(7, 59, 87, .04); -webkit-backdrop-filter: blur(20px) saturate(130%); backdrop-filter: blur(20px) saturate(130%); transition: opacity 220ms ease, transform 220ms var(--ease-out); }
.home-budget-overview.is-updating { opacity: .58; transform: translateY(3px); }
.home-budget-overview-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px 13px; border-bottom: 1px solid rgba(7, 59, 87, .12); color: var(--color-blue); font-size: 10px; font-weight: 800; letter-spacing: .13em; line-height: 1.25; text-transform: uppercase; }
.home-budget-overview-heading strong { color: var(--color-navy); font-size: 10px; letter-spacing: .09em; text-align: right; }
.home-budget-government-row { padding: 15px 18px 16px; border-bottom: 1px solid rgba(7, 59, 87, .12); }
.home-budget-government-row.is-coming-soon { background: rgba(234, 247, 255, .26); }
.home-budget-government-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.home-budget-government-heading strong { color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: 15px; letter-spacing: -.025em; }
.home-budget-government-heading span { color: var(--color-muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.home-budget-government-heading b { color: var(--color-body); }
.home-budget-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-budget-stat:nth-child(n + 3) { display: none; }
.home-budget-provisional { display: flex; align-items: center; gap: 7px; margin: -2px 0 13px; padding: 7px 9px; border-radius: 8px; background: #fff7d9; color: #634c00; font-size: 10px; font-weight: 800; line-height: 1.35; }
.home-budget-provisional i { flex: 0 0 auto; font-size: 15px; }
.home-budget-stat { min-width: 0; padding-right: 15px; }
.home-budget-stat + .home-budget-stat { padding-left: 15px; border-left: 1px solid rgba(7, 59, 87, .12); }
.home-budget-stat span { display: block; min-height: 27px; color: var(--color-body); font-size: 10px; line-height: 1.25; }
.home-budget-stat strong { display: block; margin-top: 5px; overflow-wrap: anywhere; color: var(--color-navy); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(16px, 1.75vw, 23px); font-weight: 800; letter-spacing: -.045em; line-height: 1.12; }
.home-budget-government-row.is-coming-soon .home-budget-stat strong { color: var(--color-muted); font-family: "Inter", Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0; }
.home-budget-evidence { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 18px 15px; color: var(--color-muted); font-size: 10px; line-height: 1.35; }
.home-budget-evidence > span, .home-budget-evidence a { display: inline-flex; align-items: center; gap: 7px; }
.home-budget-evidence > span i { color: var(--color-blue); font-size: 15px; }
.home-budget-evidence a { color: var(--color-blue); font-weight: 800; white-space: nowrap; }
.home-budget-evidence a:hover, .home-budget-evidence a:focus-visible { color: var(--color-blue-hover); }
.home-budget-evidence a i { font-size: 14px; transition: transform 180ms var(--ease-out); }
.home-budget-evidence a:hover i, .home-budget-evidence a:focus-visible i { transform: translateX(3px); }
.home-budget-selector-progress,
.home-budget-government-icon { display: none; }

@media (max-width: 1120px) {
  .home-budget-layout { grid-template-columns: minmax(265px, .42fr) minmax(0, 1fr); gap: 34px; width: min(calc(100% - 48px), 980px); }
  .home-budget-selector { min-height: 96px; padding-inline: 8px; }
  .home-budget-selector img { flex-basis: 42px; width: 42px; height: 42px; }
  .home-budget-selector-name { padding-right: 13px; font-size: 11px; line-height: 1.14; }
}

@media (max-width: 1020px) and (min-width: 768px) {
  .home-budget-selectors { display: flex; overflow-x: auto; gap: 10px; padding: 3px 2px 10px; scrollbar-width: thin; scrollbar-color: rgba(7, 50, 74, .35) transparent; }
  .home-budget-selector { flex: 0 0 178px; }
}

@media (max-width: 1439px) and (min-width: 768px) {
  .home-budget-selectors {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 3px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 50, 74, .3) transparent;
  }

  .home-budget-selector {
    flex: 0 0 178px;
    min-height: 96px;
    padding-inline: 12px;
    scroll-snap-align: start;
  }

  .home-budget-selector img {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .home-budget-selector-name {
    padding-right: 8px;
    font-size: 13px;
    line-height: 1.18;
    overflow-wrap: normal;
  }
}

/* The local-level selector lives inside a constrained panel, so its layout
   should respond to that panel rather than only to the browser viewport. */
@container (max-width: 760px) {
  .home-budget-selectors {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 3px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 50, 74, .35) transparent;
  }

  .home-budget-selector {
    flex: 0 0 178px;
    min-height: 96px;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .home-budget-section {
    padding: 72px 0 76px;
    overflow: hidden;
    background: #00a9df;
  }

  .home-budget-section::before {
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 146, 205, .12), rgba(0, 72, 125, .14));
  }

  .home-budget-section::after {
    background: linear-gradient(145deg, rgba(0, 170, 225, .96) 0%, rgba(0, 170, 225, .88) 48%, rgba(0, 130, 190, .55) 100%);
  }

  .home-budget-backdrop {
    background-image: var(--cms-home-budget-background-mobile, url("assets/kabindra-brand/gorkha-budget-background-realistic-mobile.webp"));
    background-position: 72% center;
    background-size: cover;
    filter: contrast(1.04) saturate(.96);
    opacity: .92;
  }

  .home-budget-layout {
    display: block;
    width: calc(100% - 48px);
    max-width: 100%;
  }

  .home-budget-copy { max-width: 600px; }

  .home-budget-copy .section-eyebrow {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(11px, 3.1vw, 13px);
    letter-spacing: .19em;
  }

  .home-budget-copy h2 {
    max-width: 560px;
    font-size: clamp(42px, 11.2vw, 54px);
    letter-spacing: -.06em;
    line-height: .98;
  }

  .home-budget-intro,
  .home-budget-selected-description {
    max-width: 560px;
    color: rgba(255, 255, 255, .98);
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.55;
  }

  .home-budget-intro { margin-top: 30px; }
  .home-budget-selected-description { margin-top: 24px; }

  .home-budget-primary-link {
    width: min(84%, 360px);
    min-height: 60px;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding: 0 24px;
    border-radius: 7px;
    box-shadow: 0 15px 32px rgba(0, 61, 96, .18);
    font-size: 15px;
  }

  .home-budget-primary-link:active { transform: scale(.985); }
  .home-budget-primary-link i { font-size: 19px; }

  .home-budget-panel {
    min-width: 0;
    max-width: 100%;
    margin-top: 38px;
  }

  .home-budget-selectors {
    display: flex;
    max-width: 100%;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 2px 10px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-budget-selectors::-webkit-scrollbar { display: none; }

  .home-budget-selector {
    flex: 0 0 154px;
    min-width: 0;
    min-height: 196px;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 20px 14px 18px;
    border-color: rgba(255, 255, 255, .88);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(244, 252, 255, .86), rgba(219, 242, 252, .72));
    box-shadow: 0 15px 30px rgba(0, 66, 105, .14), inset 0 1px 0 rgba(255, 255, 255, .96);
    text-align: center;
    scroll-snap-align: start;
  }

  .home-budget-selector:hover { transform: none; }

  .home-budget-selector.is-selected {
    border-color: #087fca;
    background: linear-gradient(145deg, rgba(249, 254, 255, .94), rgba(213, 243, 255, .84));
    box-shadow: 0 0 0 3px rgba(218, 246, 255, .64), 0 16px 34px rgba(0, 81, 134, .2), inset 0 1px 0 #fff;
  }

  .home-budget-selector img {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
  }

  .home-budget-selector-name {
    flex: 0 0 auto;
    width: 100%;
    min-height: 48px;
    padding: 0;
    overflow-wrap: normal;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-wrap: balance;
  }

  .home-budget-selector-check {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .home-budget-selector-progress {
    position: relative;
    display: block;
    height: 3px;
    margin: 12px 8px 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
  }

  .home-budget-selector-progress span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--budget-progress-index, 0) * 19.5%);
    width: 22%;
    border-radius: inherit;
    background: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, .4);
    transition: left 220ms var(--ease-out);
  }

  .home-budget-overview {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
    border-color: rgba(255, 255, 255, .92);
    border-radius: 26px;
    background: rgba(225, 245, 255, .84);
    box-shadow: 0 24px 48px rgba(0, 56, 92, .2), inset 0 1px 0 rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    backdrop-filter: blur(16px) saturate(120%);
  }

  .home-budget-overview-heading {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 22px 20px 18px;
    font-size: 11px;
    letter-spacing: .16em;
  }

  .home-budget-overview-heading strong {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: .1em;
    line-height: 1.35;
    text-align: left;
  }

  .home-budget-government-row { padding: 20px; }

  .home-budget-government-row.is-coming-soon {
    background: rgba(219, 237, 248, .35);
  }

  .home-budget-government-heading {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .home-budget-government-icon {
    display: grid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 21px;
    place-items: center;
  }

  .home-budget-government-row.is-coming-soon .home-budget-government-icon {
    background: #8ba3bb;
  }

  .home-budget-government-heading strong {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.1;
  }

  .home-budget-government-heading > span { display: none; }

  .home-budget-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
  }

  .home-budget-stat,
  .home-budget-stat + .home-budget-stat {
    min-width: 0;
    padding: 16px 10px 17px 0;
    border-left: 0;
  }

  .home-budget-stat:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(7, 59, 87, .13);
  }

  .home-budget-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 59, 87, .13);
  }

  .home-budget-stat span {
    min-height: 0;
    color: #55738b;
    font-size: 11px;
    line-height: 1.35;
  }

  .home-budget-stat strong {
    margin-top: 7px;
    overflow: visible;
    font-size: clamp(20px, 6.8vw, 27px);
    line-height: 1.05;
    text-overflow: clip;
    white-space: nowrap;
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat strong {
    color: #7891aa;
    font-size: 13px;
  }

  .home-budget-evidence {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 17px 20px 21px;
    font-size: 11px;
  }

  .home-budget-evidence > span {
    align-items: flex-start;
    line-height: 1.5;
  }

  .home-budget-evidence > span i { margin-top: 1px; font-size: 18px; }
  .home-budget-evidence a { min-height: 38px; font-size: 13px; }
}

@media (max-width: 359px) {
  .home-budget-section { padding-top: 62px; }
  .home-budget-layout { width: calc(100% - 36px); }
  .home-budget-copy h2 { font-size: 42px; }
  .home-budget-primary-link { width: 100%; }
  .home-budget-selector { flex-basis: 148px; }
  .home-budget-overview-heading,
  .home-budget-government-row,
  .home-budget-evidence { padding-right: 16px; padding-left: 16px; }
  .home-budget-stat-grid { grid-template-columns: 1fr; }
  .home-budget-stat,
  .home-budget-stat + .home-budget-stat,
  .home-budget-stat:nth-child(even) {
    padding: 13px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(7, 59, 87, .13);
  }
  .home-budget-stat:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .home-budget-selector, .home-budget-primary-link, .home-budget-overview, .home-budget-selector-check { transition: none; }
}

@media (max-width: 767px) {
  .secretariat-section { padding: 42px 20px 52px; }
  .secretariat-heading { display: block; margin-bottom: 22px; }
  .secretariat-heading .section-eyebrow { margin-bottom: 12px; }
  .secretariat-heading h2 { max-width: 430px; font-size: clamp(38px, 11vw, 54px); }
  .secretariat-heading > p:last-child { margin-top: 12px; font-size: 13px; }
  .secretariat-list { grid-template-columns: 1fr; gap: 12px; }
  .secretariat-card { min-height: 190px; grid-template-columns: 38% 1fr; }
  .secretariat-card-media { min-height: 190px; }
  .secretariat-card-body { padding: 20px 18px; }
  .secretariat-card-body h3 { margin: 10px 0 8px; font-size: 25px; }
  .secretariat-card-body > p:not(.secretariat-card-role) { font-size: 12px; line-height: 1.48; }
  .secretariat-card-contact { margin-top: 10px; }
  .secretariat-card-contact a { min-height: 36px; padding: 7px 9px; font-size: 10px; }
}

@media (max-width: 420px) {
  .secretariat-card { grid-template-columns: 35% 1fr; }
  .secretariat-card-body { padding: 17px 15px; }
  .secretariat-card-body h3 { font-size: 22px; }
  .secretariat-card-role { font-size: 8px; letter-spacing: .12em; }
  .secretariat-card-body > p:not(.secretariat-card-role) { font-size: 11px; }
}

.hero-tools {
  position: absolute;
  right: max(var(--page-gutter), calc((100% - var(--container-width)) / 2));
  bottom: 20px;
  left: max(var(--page-gutter), calc((100% - var(--container-width)) / 2));
  z-index: 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .24));
  box-shadow: 0 22px 38px rgba(7, 50, 74, .22), 0 5px 0 rgba(7, 50, 74, .08), inset 0 1px 0 rgba(255, 255, 255, .88), inset 0 -8px 16px rgba(7, 50, 74, .05);
  transform: perspective(1100px) rotateX(.7deg) translateZ(0);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.hero-tools::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, .92);
  content: "";
  pointer-events: none;
}

.home-tools-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.home-tool { min-height: 88px; display: flex; flex-direction: column; gap: 8px; padding: 11px 14px 10px; border-right: 1px solid rgba(7, 50, 74, .14); color: var(--color-navy); background: rgba(255, 255, 255, .28); transition: background 220ms ease, transform 220ms ease; }
.home-tool:last-child { border-right: 0; }
.home-tool:hover, .home-tool:focus-visible { background: rgba(255, 255, 255, .72); transform: translateY(-2px); }
.home-tool > i:first-child { color: var(--color-accent); font-size: 19px; }
.home-tool > i:last-child { align-self: flex-end; margin-top: auto; color: var(--color-accent); font-size: 14px; }
.home-tool span { display: grid; gap: 4px; }
.home-tool strong { font-family: "Inter Tight", Inter, sans-serif; font-size: 14px; letter-spacing: -.035em; line-height: 1; }
.home-tool small { max-width: 165px; color: var(--color-body); font-size: 9px; line-height: 1.3; }

@media (max-width: 900px) {
  .home-tools-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-tool:nth-child(2n) { border-right: 0; }
  .home-tool:nth-child(n + 3) { border-top: 1px solid rgba(7, 50, 74, .14); }
  .home-tool:last-child { grid-column: 1 / -1; }
}

/* Tablet portal navigation stays compact as a single swipeable rail instead
   of expanding into a tall two-column box over the hero artwork. */
@media (min-width: 768px) and (max-width: 1020px) {
  .hero-tools .home-tools-list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-tools .home-tools-list::-webkit-scrollbar {
    display: none;
  }

  .hero-tools .home-tool,
  .hero-tools .home-tool:nth-child(2n),
  .hero-tools .home-tool:last-child {
    display: grid;
    flex: 0 0 min(42%, 290px);
    grid-template-columns: 25px minmax(0, 1fr) 17px;
    grid-column: auto;
    align-items: center;
    gap: 10px;
    min-height: 92px;
    padding: 12px 14px;
    border-top: 0;
    border-right: 1px solid rgba(7, 50, 74, .14);
    scroll-snap-align: start;
  }

  .hero-tools .home-tool:last-child {
    border-right: 0;
  }

  .hero-tools .home-tool > i:last-child {
    align-self: center;
    margin-top: 0;
  }

  .hero-tools .home-tool small {
    max-width: none;
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .hero-tools {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 12px 12px 18px;
    border-radius: 12px;
    transform: none;
  }

  .hero-tools .home-tools-list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-tools .home-tools-list::-webkit-scrollbar { display: none; }

  .hero-tools .home-tool,
  .hero-tools .home-tool:nth-child(2n),
  .hero-tools .home-tool:last-child {
    flex: 0 0 82%;
    min-height: 86px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr) 17px;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 11px;
    border-right: 1px solid rgba(7, 50, 74, .14);
    border-top: 0;
    scroll-snap-align: start;
  }

  .hero-tools .home-tool:last-child { border-right: 0; }
  .hero-tools .home-tool > i:first-child { font-size: 20px; }
  .hero-tools .home-tool > i:last-child { margin: 0; }
  .hero-tools .home-tool span { gap: 4px; }
  .hero-tools .home-tool strong { font-size: 15px; }
  .hero-tools .home-tool small { max-width: none; font-size: 10.5px; }
}

@media (max-width: 430px) {
  .hero-tools .home-tool { flex-basis: 86%; }
}

.is-nepali .brand-title,
.is-nepali .brand-subtitle,
.is-nepali .nav-link,
.is-nepali .mobile-nav-link,
.is-nepali .menu-toggle-label,
.is-nepali .hero-eyebrow,
.is-nepali .hero-title,
.is-nepali .hero-description,
.is-nepali .hero-button {
  font-family: "Noto Sans Devanagari", "Mukta", sans-serif;
}

.is-nepali .hero-title {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1279px) {
  :root {
    --page-gutter: 28px;
  }

  .brand-lockup {
    min-width: 212px;
  }

  .desktop-navigation {
    gap: 18px;
  }

  .header-actions {
    margin-left: 18px;
  }

  .hero-content {
    width: 565px;
  }

  .hero-title {
    font-size: clamp(66px, 5.55vw, 74px);
  }

  .hero-portrait {
    right: 20px;
    width: min(50vw, 580px);
  }
}

@media (max-width: 1119px) {
  :root {
    --page-gutter: 24px;
  }

  .desktop-navigation {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 35;
    width: min(82vw, 360px);
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 0;
    border-left: 1px solid rgba(7, 50, 74, 0.12);
    background: rgba(249, 252, 253, 0.99);
    box-shadow: -18px 0 42px rgba(7, 50, 74, 0.16);
  }

  .mobile-navigation:not([hidden]) {
    animation: mobile-navigation-in 190ms var(--ease-out) both;
  }

  .mobile-navigation-inner {
    width: 100%;
    padding: 14px 20px max(24px, env(safe-area-inset-bottom));
  }

  .mobile-nav-link {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0;
    font-size: 14px;
  }

  .hero-content {
    width: 545px;
    max-width: 57%;
    padding-top: clamp(82px, 11vh, 104px);
  }

  .hero-title {
    font-size: clamp(58px, 6.2vw, 66px);
    letter-spacing: -0.042em;
  }

  .hero-description {
    max-width: 470px;
  }

  .hero-portrait {
    right: -10px;
    width: min(48vw, 500px);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
    --page-gutter: 16px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  svg {
    max-width: 100%;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
  }

  .brand-lockup {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-title {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.12;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-mobile-role {
    display: flex;
    flex-direction: column;
    color: #607487;
    font-size: clamp(9px, 2.75vw, 11px);
    font-weight: 600;
    line-height: 1.23;
  }

  .header-actions {
    gap: 8px;
  }

  .language-selector {
    width: 76px;
    height: 40px;
  }

  .language-option {
    width: 35px;
    height: 34px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 40px;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .menu-toggle-icon,
  .menu-toggle-icon span {
    width: 27px;
  }

  .menu-toggle-icon {
    height: 24px;
    gap: 6px;
  }

  .mobile-navigation {
    width: min(86vw, 340px);
  }

  .hero {
    height: auto;
    min-height: clamp(690px, 178vw, 790px);
    background:
      radial-gradient(circle at 88% 48%, rgba(117, 208, 238, 0.28), transparent 48%),
      linear-gradient(180deg, #fbfaf6 0%, #eef8fb 58%, #e9f6fa 100%);
  }

  .hero::before {
    inset: 0;
    height: 100%;
    background-image: url("assets/kabindra-brand/gorkha-hero-landscape-v1-mobile.webp");
    background-attachment: scroll;
    background-position: 58% center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.94;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, #000 42%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, #000 42%);
  }

  .hero-landscape-video {
    inset: 0;
    height: 100%;
    object-position: 58% center;
    opacity: 0.94;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, #000 42%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .18) 0%, #000 42%);
  }

  .hero-inner {
    display: block;
    width: 100%;
    min-height: clamp(690px, 178vw, 790px);
    padding: max(32px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
    align-items: start;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: clamp(9px, 2.7vw, 11px);
    letter-spacing: 0.16em;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 56px);
    letter-spacing: -0.045em;
    line-height: 0.96;
  }

  .hero-title-accent {
    color: var(--color-accent);
  }

  .hero-title span {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-description {
    max-width: min(62%, 244px);
    margin-top: 25px;
    color: #536b7e;
    font-size: clamp(13px, 3.55vw, 15px);
    line-height: 1.5;
  }

  .hero-name {
    position: relative;
    z-index: 3;
    max-width: 58%;
    margin: 21px 0 0;
    font-size: clamp(20px, 5.6vw, 25px);
    line-height: 1.35;
  }

  .hero-actions {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(54%, 204px);
    margin-top: 20px;
    padding-right: 0;
  }

  .hero-button {
    width: 100%;
    min-height: 52px;
    gap: 8px;
    padding-inline: 10px;
    font-size: clamp(9.5px, 2.6vw, 11.5px);
  }

  .hero-button i {
    font-size: 17px;
  }

  .hero-portrait {
    position: absolute;
    top: auto;
    right: max(-44px, calc(env(safe-area-inset-right) - 44px));
    bottom: 0;
    z-index: 2;
    width: min(84vw, 420px);
    max-height: none;
    margin: 0;
    align-items: flex-end;
    transform: none;
  }

  .hero-portrait img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 18px 28px rgba(16, 53, 72, 0.11));
  }

}

@media (max-width: 559px) {
  .header-actions {
    margin-left: auto;
  }
}

/* Tablets retain the desktop hero relationship, but need their own portrait
   scale so the image supports the copy instead of covering it. */
@media (min-width: 768px) and (max-width: 1020px) {
  .hero-content {
    max-width: 60%;
    padding-top: clamp(70px, 9vh, 94px);
  }

  .hero-title {
    font-size: clamp(49px, 6.9vw, 60px);
  }

  .hero-description {
    max-width: 420px;
    font-size: 14px;
  }

  .hero-portrait {
    right: -36px;
    width: min(58vw, 500px);
  }

  .hero-portrait img {
    height: 88%;
  }
}

@media (max-width: 429px) {
  .hero-portrait {
    width: 88vw;
  }
}

@media (max-width: 360px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 12.5px;
  }

  .brand-mobile-role {
    font-size: 9px;
  }

  .language-selector {
    width: 64px;
    height: 36px;
  }

  .language-option {
    width: 29px;
    height: 30px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 31px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-inner {
    padding-right: max(14px, env(safe-area-inset-right));
    padding-left: max(14px, env(safe-area-inset-left));
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-button {
    min-height: 54px;
    gap: 6px;
    padding-inline: 6px;
    font-size: 10px;
  }

  .hero-button i {
    font-size: 16px;
  }

  .hero-portrait {
    width: min(88vw, 290px);
  }

}

@media (min-width: 768px) and (max-height: 760px) {
  .hero-content {
    padding-top: 68px;
  }

  .hero-title {
    font-size: clamp(58px, 5.6vw, 70px);
  }

  .hero-description {
    margin-top: 22px;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-landscape-video {
    display: none;
  }
}

/* Compact-first refinement
   The approved wide-screen composition remains unchanged. These rules make
   phone layouts use progressive disclosure and swipe rails instead of tall,
   desktop-sized stacks. */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: clamp(620px, calc(100dvh - var(--header-height) - 54px), 690px);
    padding-top: max(24px, env(safe-area-inset-top));
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: .97;
    word-spacing: .07em;
  }

  .hero-description {
    max-width: min(60%, 232px);
    margin-top: 18px;
    font-size: clamp(12.5px, 3.45vw, 14px);
    line-height: 1.46;
  }

  .hero-name {
    margin-top: 13px;
    font-size: clamp(18px, 5vw, 22px);
  }

  .hero-actions {
    width: min(52%, 188px);
    gap: 8px;
    margin-top: 14px;
  }

  .hero-button {
    min-height: 46px;
  }

  .hero-portrait {
    right: max(-48px, calc(env(safe-area-inset-right) - 48px));
    width: min(82vw, 360px);
  }

  .hero-tools {
    margin: 8px 12px 12px;
  }

  .hero-tools .home-tool,
  .hero-tools .home-tool:nth-child(2n),
  .hero-tools .home-tool:last-child {
    flex-basis: 72%;
    min-height: 68px;
    grid-template-columns: 22px minmax(0, 1fr) 15px;
    gap: 8px;
    padding: 9px 11px;
  }

  .hero-tools .home-tool > i:first-child {
    font-size: 18px;
  }

  .hero-tools .home-tool strong {
    font-size: 13px;
  }

  .hero-tools .home-tool small {
    display: none;
  }

  .secretariat-section {
    padding: 44px var(--compact-gutter) 48px;
  }

  .secretariat-heading {
    margin-bottom: 18px;
  }

  .secretariat-heading h2 {
    max-width: 390px;
    font-size: clamp(34px, 9.8vw, 42px);
    line-height: .98;
    word-spacing: .06em;
  }

  .secretariat-heading > p:last-child {
    max-width: 360px;
    margin-top: 9px;
    font-size: 12px;
  }

  .secretariat-list {
    display: flex;
    max-width: none;
    gap: 10px;
    overflow-x: auto;
    margin-right: calc(-1 * var(--compact-gutter));
    padding: 2px var(--compact-gutter) 8px 0;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 0 var(--compact-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .secretariat-list::-webkit-scrollbar {
    display: none;
  }

  .secretariat-card {
    flex: 0 0 min(86vw, 342px);
    min-height: 164px;
    grid-template-columns: 36% minmax(0, 1fr);
    border-radius: var(--compact-card-radius);
    overflow: hidden;
    scroll-snap-align: start;
  }

  .secretariat-card-media {
    min-height: 164px;
  }

  .secretariat-card-body {
    padding: 16px 14px;
  }

  .secretariat-card-body h3 {
    margin: 8px 0 7px;
    font-size: clamp(20px, 6vw, 23px);
    word-spacing: .04em;
  }

  .secretariat-card-body > p:not(.secretariat-card-role) {
    font-size: 10.5px;
    line-height: 1.42;
  }

  .secretariat-card-contact a {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 9.5px;
  }

  .home-budget-section {
    padding: 48px 0 52px;
  }

  .home-budget-layout {
    width: calc(100% - (2 * var(--compact-gutter)));
  }

  .home-budget-copy .section-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .home-budget-copy h2 {
    max-width: 410px;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: .98;
    word-spacing: .06em;
  }

  .home-budget-intro {
    margin-top: 18px;
    font-size: clamp(14px, 3.8vw, 15.5px);
    line-height: 1.5;
  }

  .home-budget-selected-description {
    display: none;
  }

  .home-budget-primary-link {
    width: auto;
    max-width: 100%;
    min-height: 50px;
    gap: 18px;
    margin-top: 20px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .home-budget-panel {
    margin-top: 24px;
  }

  .home-budget-selectors {
    gap: 9px;
    padding-bottom: 7px;
  }

  .home-budget-selector {
    flex-basis: 122px;
    min-height: 128px;
    gap: 9px;
    padding: 12px 9px 10px;
    border-radius: 14px;
  }

  .home-budget-selector img {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .home-budget-selector-name {
    min-height: 38px;
    font-size: 12.5px;
    line-height: 1.16;
  }

  .home-budget-selector-check {
    top: 7px;
    right: 7px;
    width: 21px;
    height: 21px;
    font-size: 13px;
  }

  .home-budget-selector-progress {
    margin-top: 7px;
  }

  .home-budget-overview {
    margin-top: 18px;
    border-radius: 19px;
  }

  .home-budget-overview-heading {
    gap: 5px 12px;
    padding: 14px 14px 12px;
    font-size: 9px;
  }

  .home-budget-overview-heading strong {
    font-size: 9px;
  }

  .home-budget-government-row {
    padding: 13px 14px 14px;
  }

  .home-budget-government-heading {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 7px;
  }

  .home-budget-government-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .home-budget-government-heading strong {
    font-size: clamp(16px, 4.7vw, 19px);
    word-spacing: .04em;
  }

  .home-budget-stat,
  .home-budget-stat + .home-budget-stat {
    padding: 10px 8px 11px 0;
  }

  .home-budget-stat:nth-child(even) {
    padding-left: 11px;
  }

  .home-budget-stat span {
    font-size: 10px;
    line-height: 1.25;
  }

  .home-budget-stat strong {
    margin-top: 5px;
    font-size: clamp(19px, 6vw, 23px);
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat:not(:first-child) {
    display: none;
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat {
    padding: 4px 0 2px;
    border: 0;
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat span {
    display: none;
  }

  .home-budget-evidence {
    gap: 8px;
    padding: 12px 14px 14px;
    font-size: 10px;
  }

  .home-budget-evidence a {
    min-height: 34px;
    font-size: 12px;
  }

  .home-directory-section {
    padding: 48px var(--compact-gutter) 52px;
  }

  .mp-profile-backdrop {
    background-image: url("assets/kabindra-brand/gorkha-budget-background-realistic-mobile.webp");
  }

  .home-directory-backdrop {
    background-image: url("assets/kabindra-brand/gorkha-budget-background-realistic-mobile.webp");
    background-position: 69% top;
    background-size: auto 54%;
  }

  .home-directory-heading .section-eyebrow {
    margin-bottom: 13px;
  }

  .home-directory-heading h2 {
    max-width: 410px;
    font-size: clamp(36px, 10.4vw, 44px);
    line-height: .98;
    word-spacing: .06em;
  }

  .home-directory-heading-copy > p {
    margin-top: 17px;
    font-size: clamp(14px, 3.8vw, 15.5px);
    line-height: 1.5;
  }

  .home-directory-link {
    min-height: 38px;
    margin-top: 11px;
    font-size: 13px;
  }

  .home-directory-toggle {
    min-height: 52px;
    margin-top: 17px;
  }

  .home-directory-toggle-button {
    min-height: 44px;
    font-size: clamp(10.5px, 3vw, 13px);
  }

  .home-directory-toggle-button i {
    font-size: 17px;
  }

  .home-directory-levels {
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 7px;
  }

  .home-directory-level {
    flex-basis: 116px;
    min-height: 122px;
    gap: 7px;
    padding: 11px 8px 9px;
    border-radius: 13px;
  }

  .home-directory-level img {
    width: 46px;
    height: 46px;
  }

  .home-directory-level > span {
    min-height: 36px;
    font-size: 12px;
    line-height: 1.16;
  }

  .home-directory-level-check {
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .home-directory-panel {
    margin-top: 8px;
  }

  .home-directory-panel-card {
    border-radius: 17px;
  }

  .home-directory-panel-heading {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 13px 12px 11px;
  }

  .home-directory-panel-identity {
    gap: 9px;
  }

  .home-directory-panel-identity > img {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .home-directory-panel-heading strong {
    font-size: clamp(17px, 4.8vw, 20px);
    word-spacing: .035em;
  }

  .home-directory-panel-identity span {
    font-size: 10.5px;
  }

  .home-directory-verified {
    min-height: 36px;
    max-width: 96px;
    gap: 5px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .home-directory-verified i {
    font-size: 15px;
  }

  .home-directory-people {
    padding: 0 13px;
  }

  .home-directory-person {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    min-height: 112px;
    padding: 11px 0;
  }

  .home-directory-person:first-child {
    padding-top: 12px;
  }

  .home-directory-person:nth-child(n + 3) {
    display: none;
  }

  .home-directory-person:nth-child(2) {
    border-bottom: 0;
  }

  .home-directory-person-photo {
    width: 72px;
    min-height: 92px;
    border-radius: 9px;
  }

  .home-directory-person-copy > p {
    font-size: 8.5px;
  }

  .home-directory-person-copy h3 {
    margin: 5px 0 7px;
    font-size: clamp(16px, 4.6vw, 18px);
    word-spacing: .035em;
  }

  .home-directory-person-links {
    gap: 5px;
  }

  .home-directory-person-links a {
    gap: 6px;
    font-size: 10.5px;
  }

  .home-directory-person-links a i {
    font-size: 14px;
  }

  .home-directory-mobile-cta {
    min-height: 48px;
    margin: 3px 12px 12px;
    font-size: 13px;
  }

  .home-directory-panel-footer {
    padding-top: 14px;
    font-size: 10.5px;
  }

  .home-directory-trust > i {
    font-size: 19px;
  }
}

@keyframes mobile-navigation-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Short landscape screens need a deliberately denser hero. Keeping the
   portal rail in normal flow prevents it from covering the calls to action
   when the available block-size is much smaller than a portrait phone. */
@media (max-width: 767px) and (max-height: 500px) and (orientation: landscape) {
  :root {
    --header-height: 62px;
  }

  .header-inner {
    min-height: 62px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-mobile-role {
    display: none;
  }

  .language-selector {
    height: 36px;
  }

  .hero-inner {
    min-height: 310px;
    padding: 16px 20px 0;
  }

  .hero-content {
    max-width: 61%;
  }

  .hero-eyebrow {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(29px, 5.1vw, 34px);
    line-height: .94;
  }

  .hero-description {
    max-width: 100%;
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .hero-name {
    max-width: 100%;
    margin-top: 5px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 7px;
    width: min(62vw, 370px);
    margin-top: 8px;
  }

  .hero-button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .hero-portrait {
    right: -8px;
    width: min(38vw, 250px);
  }

  .hero-tools {
    margin: 6px 16px 10px;
  }

  .hero-tools .home-tool,
  .hero-tools .home-tool:nth-child(2n),
  .hero-tools .home-tool:last-child {
    flex-basis: 46%;
    min-height: 54px;
    padding: 7px 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) and (max-height: 500px) and (orientation: landscape) {
  .hero-inner {
    min-height: 330px;
  }

  .hero-content {
    max-width: 57%;
    padding-top: 20px;
  }

  .hero-eyebrow {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .hero-title {
    font-size: clamp(36px, 4.8vw, 42px);
    line-height: .95;
  }

  .hero-description {
    max-width: 440px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero-name {
    margin-top: 5px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .hero-button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hero-portrait {
    right: -10px;
    width: min(40vw, 338px);
  }

  .hero-portrait img {
    height: 100%;
  }

  .hero-tools {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 6px 18px 10px;
    transform: none;
  }

  .hero-tools .home-tool,
  .hero-tools .home-tool:nth-child(2n),
  .hero-tools .home-tool:last-child {
    flex-basis: 40%;
    min-height: 58px;
    padding: 8px 11px;
  }

  .hero-tools .home-tool small {
    display: none;
  }
}

@media (max-width: 359px) {
  .hero-inner {
    min-height: 610px;
  }

  .hero-portrait {
    width: min(84vw, 274px);
  }

  .hero-tools .home-tool {
    flex-basis: 78%;
  }

  .home-budget-primary-link {
    width: auto;
  }

  .home-budget-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-budget-stat,
  .home-budget-stat + .home-budget-stat,
  .home-budget-stat:nth-child(even) {
    padding: 9px 6px 10px 0;
  }

  .home-budget-stat:nth-child(even) {
    padding-left: 9px;
    border-left: 1px solid rgba(7, 59, 87, .13);
  }

  .home-budget-stat strong {
    font-size: 18px;
  }

  .home-budget-government-row.is-coming-soon .home-budget-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-directory-panel-heading {
    gap: 7px;
  }

  .home-directory-panel-identity > img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .home-directory-verified {
    max-width: 84px;
    padding-inline: 5px;
    font-size: 8.5px;
  }

  .home-directory-person {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 10px;
  }

  .home-directory-person-photo {
    width: 66px;
    min-height: 88px;
  }
}
