@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ktm-red: #ec1c24;
  --ktm-red-dark: #ce2e3a;
  --ktm-navy: #33090c;
  --ktm-ink: #111318;
  --ktm-muted: #60636b;
  --ktm-line: #dfe2e5;
  --ktm-soft: #ebedee;
  --ktm-white: #fff;
  --font-primary: "Inter", Arial, Helvetica, sans-serif;
  --radius-sm: 0;
  --shadow-menu: 0 18px 45px rgba(13, 19, 44, .12);
  --transition: 180ms ease;
  --header-height: 112px;
  --section-space: clamp(2.5rem, 5vw, 5.0rem);
  --icon-size: 1rem;
  --bs-list-group-active-bg: var(--ktm-red);
}

.list-group-item.active {
  background-color: var(--ktm-red);
  border-color: var(--ktm-red);
}

.bg-primary {
  background-color: var(--ktm-red) !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ktm-ink);
  background: var(--ktm-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--ktm-red);
  text-decoration: none;
}

a:hover {
  color: var(--ktm-red-dark);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #6c7dff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 3000;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--ktm-navy);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: .9rem;
  color: var(--ktm-red);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .035em;
}

.display-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.group-firm .brand-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #c9cdd1;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.section-title-sm {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.lead-copy {
  max-width: 46rem;
  color: var(--ktm-muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.copy-narrow {
  max-width: 54rem;
}

.section-pad {
  padding-block: var(--section-space);
}

.section-pad-sm {
  padding-block: clamp(3rem, 5vw, 5rem);
}

.bg-soft {
  background: var(--ktm-soft);
}

.bg-blue {
  color: #fff;
  background: var(--ktm-red);
}

.bg-navy {
  color: #fff;
  background: var(--ktm-navy);
}

.bg-red {
  color: #fff;
  background: var(--ktm-red);
}

.text-blue {
  color: var(--ktm-red);
}

.text-muted-ktm {
  color: var(--ktm-muted);
}

.btn-ktm {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .72rem 1.15rem;
  border: 1px solid var(--ktm-red);
  border-radius: 0;
  color: var(--ktm-red);
  background: transparent;
  font-size: .85rem;
  font-weight: 600;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.btn-ktm:hover,
.btn-ktm:focus-visible {
  color: #fff;
  background: var(--ktm-red);
  transform: translateY(-1px);
}

.btn-ktm-solid {
  color: #fff;
  background: var(--ktm-red);
}

.btn-ktm-solid:hover,
.btn-ktm-solid:focus-visible {
  color: var(--ktm-red);
  background: #fff;
}

.btn-ktm-light {
  border-color: #fff;
  color: #fff;
}

.btn-ktm-light:hover,
.btn-ktm-light:focus-visible {
  color: var(--ktm-red);
  background: #fff;
}

.btn-link-arrow {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .8rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ktm-red);
  transition: transform var(--transition);
}

.btn-link-arrow i,
.btn-ktm i {
  font-size: var(--icon-size);
  transition: transform var(--transition);
}

.btn-link-arrow:hover i,
.btn-ktm:hover i {
  transform: translateX(4px);
}

.site-header {
  position: relative;
  z-index: 1050;
  border-bottom: 1px solid var(--ktm-line);
  background: #fff;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 4px 18px rgba(9, 20, 61, .08);
}

.desktop-header {
  min-height: var(--header-height);
}

.brand-panel {
  display: flex;
  width: 290px;
  min-height: var(--header-height);
  flex: 0 0 290px;
  align-items: center;
  padding-inline: 36px;
  border-right: 1px solid var(--ktm-line);
}

.brand {
  display: block;
  width: 100%;
  color: var(--ktm-red);
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.brand-symbol {
  position: relative;
  display: inline-block;
  width: 94px;
  height: 46px;
  overflow: visible;
}

.brand-symbol::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 43px;
  height: 21px;
  content: "";
  background: var(--ktm-red);
  clip-path: polygon(0 0, 34% 0, 64% 57%, 100% 57%, 100% 100%, 52% 100%, 25% 44%, 0 44%);
}

.brand-word {
  position: absolute;
  top: 4px;
  left: 27px;
  color: var(--ktm-red);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.07em;
}

.brand-anniversary {
  font-size: 3.05rem;
  font-weight: 200;
  letter-spacing: -.08em;
  line-height: 1;
}

.header-body {
  min-width: 0;
  flex: 1;
}

.utility-bar,
.primary-bar {
  display: flex;
  min-height: 56px;
  align-items: stretch;
}

.utility-bar {
  justify-content: space-between;
  color: #fff;
  background: var(--ktm-red);
}

.utility-links,
.utility-actions,
.primary-nav {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.utility-links a,
.utility-actions a,
.utility-actions button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: .55rem;
  padding: 0 1.45rem;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.2);
  color: #fff;
  background: transparent;
  font-size: .88rem;
  font-weight: 500;
}

.utility-actions a {
  border-left: 1px solid rgba(255,255,255,.18);
}

.utility-links a {
  border-left: 1px solid rgba(255,255,255,.18);
}

.utility-links a[aria-current="page"],
.utility-links a:hover,
.utility-actions a:hover,
.utility-actions button:hover {
  background: rgba(0,0,0,.14);
}

.utility-actions ul.dropdown-menu img {
  width: 24px;
  height: auto;
  object-fit: contain;
}

.utility-actions ul.dropdown-menu a {
  color: var(--ktm-ink);
  padding: 0 1rem;
}

.dropdown-menu {
  min-width: auto;
  padding: 0;
}

.primary-bar {
  padding-inline: 1.5rem;
  background: #fff;
}

.primary-nav {
  gap: .3rem;
}

.primary-nav > li > a,
.primary-nav > li > button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  padding: 0 1rem;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ktm-ink);
  background: transparent;
  font-size: .88rem;
  font-weight: 500;
}

.primary-nav > li > a:hover,
.primary-nav > li > button:hover,
.primary-nav > li > a[aria-current="page"],
.primary-nav > li > button[aria-expanded="true"] {
  color: var(--ktm-red);
  border-bottom-color: var(--ktm-red);
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 2.4rem 0 2.7rem;
  border-top: 1px solid var(--ktm-line);
  background: #fff;
  box-shadow: var(--shadow-menu);
}

.mega-menu.is-open {
  display: block;
}

.mega-intro {
  height: 100%;
  padding-right: 2.4rem;
  border-right: 1px solid var(--ktm-line);
}

.mega-intro h2 {
  color: var(--ktm-red);
  font-size: 1.65rem;
  font-weight: 500;
  text-transform: uppercase;
}

.mega-link {
  display: block;
  min-height: 8.1rem;
  padding: .25rem 1rem 1rem;
  color: var(--ktm-ink);
}

.mega-link strong {
  display: block;
  margin-bottom: .6rem;
  font-size: .93rem;
}

.mega-link span {
  color: var(--ktm-muted);
  font-size: .8rem;
  line-height: 1.55;
}

.mega-link:hover strong {
  color: var(--ktm-red);
}

.mobile-header {
  min-height: 68px;
  align-items: center;
  padding: .6rem 1rem;
}

.mobile-header .brand-symbol {
  width: 78px;
  height: 38px;
}

.mobile-header .brand-symbol::before {
  top: 17px;
  width: 35px;
  height: 17px;
}

.mobile-header .brand-word {
  top: 3px;
  left: 21px;
  font-size: 1.48rem;
}

.mobile-header .brand-anniversary {
  font-size: 2.15rem;
}

.icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ktm-red);
  background: transparent;
  font-size: 1.2rem;
}

.mobile-nav-offcanvas {
  width: min(92vw, 420px) !important;
}

.mobile-nav-offcanvas .offcanvas-header {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--ktm-line);
}

.mobile-menu,
.mobile-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu > li {
  border-bottom: 1px solid var(--ktm-line);
}

.mobile-menu a,
.mobile-menu button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  border: 0;
  color: var(--ktm-ink);
  background: #fff;
  text-align: left;
}

.mobile-menu button[aria-expanded="true"] {
  color: var(--ktm-red);
  background: var(--ktm-soft);
}

.mobile-menu button i {
  transition: transform var(--transition);
}

.mobile-menu button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-submenu {
  padding: .2rem 0 .7rem !important;
  background: #f7f8f9;
}

.mobile-submenu a {
  min-height: 46px;
  padding-left: 1.7rem;
  background: #f7f8f9;
  color: #31343a;
  font-size: .9rem;
}

.breadcrumb-band {
  margin-left: 1rem;
  border-bottom: 1px solid var(--ktm-line);
  background: #fff;
}

.breadcrumb {
  margin: 0;
  padding: .72rem 0;
  font-size: .74rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #9a9da3;
}

.hero-home {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ktm-navy);
}

.hero-home .carousel-item {
  position: relative;
  min-height: clamp(620px, 70vh, 680px);
}

.hero-home-media,
.hero-home-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-home-media {
  object-fit: cover;
}

.hero-home-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 7, 27, .86) 0%, rgba(2, 8, 32, .58) 46%, rgba(1, 8, 35, .16) 74%),
    linear-gradient(0deg, rgba(2, 7, 27, .32), transparent 45%);
}

.hero-home-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(620px, 70vh, 680px);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(6.5rem, 9vw, 8rem);
}

.hero-home .display-title {
  color: #fff;
}

.hero-home .lead {
  max-width: 35rem;
  color: rgba(255,255,255,.86);
}

.hero-home .carousel-indicators {
  z-index: 4;
  right: auto;
  bottom: 2.25rem;
  left: 50%;
  justify-content: flex-start;
  width: min(100% - 2rem, 1360px);
  margin: 0;
  padding-inline: calc(var(--bs-gutter-x) * .5);
  transform: translateX(-50%);
}

.hero-home .carousel-indicators [data-bs-target] {
  width: 54px;
  height: 4px;
  margin: 0 8px 0 0;
  border: 0;
  background-color: #fff;
  opacity: .45;
}

.hero-home .carousel-indicators .active {
  background-color: var(--ktm-red);
  opacity: 1;
}

.hero-home .carousel-control-prev,
.hero-home .carousel-control-next {
  z-index: 4;
  top: auto;
  right: max(1rem, calc((100vw - 1360px) / 2 + .75rem));
  bottom: 1.25rem;
  left: auto;
  width: auto;
  height: 52px;
  opacity: 1;
}

.hero-home .carousel-control-prev {
  margin-right: 60px;
}

.hero-carousel-control {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
  background: rgba(35, 35, 35, 0.42);
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition);
}

.hero-home .carousel-control-prev:hover .hero-carousel-control,
.hero-home .carousel-control-next:hover .hero-carousel-control,
.hero-home .carousel-control-prev:focus-visible .hero-carousel-control,
.hero-home .carousel-control-next:focus-visible .hero-carousel-control {
  border-color: #fff;
  color: var(--ktm-red);
  background: #fff;
}

.hero-split {
  background: var(--ktm-soft);
}

.hero-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1.5rem, 2.8vw, 5rem);
}

.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ktm-navy);
}

.hero-overlay::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.16) 72%);
}

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

.hero-overlay .container {
  position: relative;
  z-index: 1;
}

.hero-overlay .display-title {
  max-width: 55rem;
}

.announcement-band {
  background: #ebedee;
}

.announcement-band .row {
  min-height: 185px;
}

.announcement-band img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.feature-split img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.metric-card {
  height: 100%;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,.7);
}

.metric-value {
  display: block;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 1rem;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  line-height: 1.45;
}

.solution-card,
.news-card,
.resource-card,
.story-card,
.leader-card,
.menu-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ktm-line);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover,
.news-card:hover,
.resource-card:hover,
.story-card:hover,
.leader-card:hover,
.menu-card:hover {
  z-index: 1;
  box-shadow: 0 16px 34px rgba(19, 28, 56, .11);
  transform: translateY(-4px);
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card .card-body-ktm {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-card .btn-link-arrow {
  margin-top: auto;
  padding-top: 1.25rem;
}

.services-grid > div,
.menu-grid > div {
  display: flex;
}

.services-grid .solution-card,
.menu-grid .menu-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.services-grid .solution-card .btn-link-arrow,
.menu-grid .menu-card .btn-link-arrow {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.25rem;
}

aside > div.news-card {
  padding: 1.6rem;
  display: block;
  color: inherit;
  text-decoration: none;
  height: auto;
  margin-bottom: 1rem;
}

aside div.news-card {
  margin-bottom: 1rem;
}

.aside-news-card {
  padding: 1.25rem;
  border: 1px solid var(--ktm-line);
}

.aside-news-card h5 {
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.15;
}

.aside-news-card a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
}

.aside-news-card a:hover {
  color: var(--ktm-red);
}

.news-card .card-body-ktm ul,
.article-header ul {
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-card .card-body-ktm ul li,
.article-header ul li {
  font-size: 0.875rem;
  color: var(--ktm-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-card .card-body-ktm ul li img,
.article-header ul li img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.solution-card,
.menu-card {
  padding: 1.6rem;
  display: block;
  color: inherit;
  text-decoration: none;
}

.solution-card:hover,
.solution-card:focus-visible,
.menu-card:hover,
.menu-card:focus-visible {
    color: inherit;
    text-decoration: none;
}

.solution-card:focus-visible,
.menu-card:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.solution-card h3,
.menu-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}

.contact-section .icon-wrapper,
.solution-card .icon-wrapper,
.menu-card .icon-wrapper {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 .5rem 1rem 0;
  color: var(--ktm-red);
  background-color: rgba(220, 48, 31, 0.08);
  font-size: 1.2rem;
}

.contact-section-item {
  padding: 1.5rem;
  border: 1px solid var(--ktm-line);
}

.contact-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.5rem;
}

.news-card img,
.story-card img,
.leader-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body-ktm {
  padding: 1.25rem;
}

.card-meta {
  color: var(--ktm-muted);
  font-size: .85rem;
}

.card-title-ktm {
  margin: .55rem 0 .8rem;
  color: var(--ktm-ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.featured-news {
  border-bottom: 1px solid var(--ktm-line);
}

.featured-news img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.tab-line {
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid var(--ktm-line);
  scrollbar-width: thin;
}

.tab-line .nav-link {
  min-width: max-content;
  padding: 1rem 2.3rem 1rem 0;
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: var(--ktm-muted);
  background: transparent;
}

.tab-line .nav-link.active {
  color: var(--ktm-ink);
  border-bottom-color: var(--ktm-red);
  background: transparent;
}

.mosaic-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background: var(--ktm-navy);
}

.mosaic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.mosaic-copy {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  z-index: 1;
}

.quote-block {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-block: 1px solid var(--ktm-line);
  color: var(--ktm-red);
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.2;
  text-align: center;
}

.icon-feature {
  height: 100%;
  padding: 1.5rem;
  border-left: 1px solid var(--ktm-line);
}

.icon-feature i,
.icon-feature span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--ktm-red);
  background-color: rgba(220, 48, 31, 0.08);
  font-size: 1.2rem;
}

.timeline-item {
  height: 100%;
  padding: 1.4rem;
  border-top: 3px solid var(--ktm-red);
  background: var(--ktm-soft);
}

.timeline-year {
  display: block;
  margin-bottom: 1rem;
  color: var(--ktm-red);
  font-size: 1.55rem;
  font-weight: 400;
}

.article-header {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--ktm-soft);
}

.article-header h1 {
  max-width: 60rem;
}

.article-body {
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 2.8rem;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 400;
}

.article-body p,
.article-body ul {
  text-align: justify;
}

.article-body blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  border-left: 4px solid var(--ktm-red);
  color: var(--ktm-red);
  background: var(--ktm-soft);
  font-size: 1.4rem;
}

.share-rail {
  position: sticky;
  top: 145px;
}

.share-rail a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ktm-line);
}

.square-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ktm-red);
  background: #fff;
}

.filter-bar {
  padding: 1.2rem;
  background: var(--ktm-soft);
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: 0;
  border-color: #cbd0d4;
}

textarea.form-control {
  min-height: 160px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ktm-red);
  box-shadow: 0 0 0 .2rem rgba(7,31,232,.14);
}

.required {
  color: #b10e1e;
}

.search-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #fff;
  background: var(--ktm-navy);
}

.search-box {
  display: flex;
  gap: .65rem;
}

.search-box .form-control {
  min-width: 0;
}

.search-result {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ktm-line);
}

.accordion-ktm .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--ktm-line);
  border-radius: 0;
}

.accordion-ktm .accordion-button {
  padding: 1.25rem 0;
  color: var(--ktm-ink);
  background: #fff;
  box-shadow: none;
  font-weight: 500;
}

.accordion-ktm .accordion-button:not(.collapsed) {
  color: var(--ktm-red);
}

.accordion-ktm .accordion-body {
  padding: 0 0 1.4rem;
  color: var(--ktm-muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ktm-red);
}

.cta-band img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}

.cta-band-copy {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.5rem);
}

.site-footer {
  color: #fff;
  background: var(--ktm-ink);
}

.footer-main {
  padding-block: 3.8rem 3rem;
}

.footer-title {
  margin-bottom: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  padding: .26rem 0;
  color: rgba(255,255,255,.84);
  font-size: .76rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-symbol {
  background: transparent;
}

.footer-brand .brand-symbol::before {
  background: #fff;
}

.footer-brand .brand-word {
  color: #fff;
}

.footer-brand .brand-logo {
  height: 60px;
  width: auto;
}

.social-links {
  display: flex;
  gap: .6rem;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.footer-legal {
  color: #fff;
  background: var(--ktm-ink);
  border-top: 1px solid rgba(255,255,255,.15);
}

.footer-legal .container {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .68rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.footer-legal-links a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1080;
  display: none;
  max-width: 620px;
  padding: 1.15rem;
  border: 1px solid var(--ktm-line);
  background: #fff;
  box-shadow: 0 15px 55px rgba(0,0,0,.22);
}

.cookie-banner.is-visible {
  display: block;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: var(--ktm-red);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal-content {
  border: 0;
  border-radius: 0;
}

.search-modal .modal-dialog {
  max-width: 900px;
}

.search-modal .modal-content {
  padding: clamp(1.3rem, 4vw, 3rem);
}

.table-responsive {
  border: 1px solid var(--ktm-line);
}

.table > :not(caption) > * > * {
  padding: 1rem;
}

.pagination .page-link {
  border-radius: 0 !important;
  color: var(--ktm-ink);
}

.pagination .page-item.active .page-link {
  color: var(--ktm-white);
  border-color: var(--ktm-ink);
  background: var(--ktm-ink);
}

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

/* Çerez Bildirimi */
#cookieConsent {
  --bs-alert-margin-bottom: 0;
  right: auto;
  animation: slideUp 0.5s ease-in-out;
}

/* Animasyonlar */
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.group-firms-grid {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 1.5rem;
}

.group-firm-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  padding: 0 1.5rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: #fff;
  transition:
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
  border: 1px solid var(--ktm-line);
}

footer .group-firms-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

footer .group-firm-card {
  min-height: 60px;
  padding: .5rem;
}

.group-firm-logo {
  display: block;
  width: 100%;
  max-width: 390px;
  height: 110px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}

footer .group-firm-logo {
  max-width: 100%;
  width: 100%;
  height: auto
}

.group-firm-card:hover,
.group-firm-card:focus-visible {
  border: 1px solid var(--ktm-line);
  box-shadow: 0 16px 34px rgba(19, 28, 56, .11);
  transform: translateY(-4px);
}

.group-firm-card:focus-visible {
  border: 1px solid var(--ktm-line);
}

.mega-link.icon {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.mega-link.icon i {
  color: var(--ktm-red);
  font-size: 1.5rem;
}

.mega-link.icon .icon-wrapper {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 0.1rem;
  color: var(--ktm-red);
  background-color: rgba(220, 48, 31, 0.08);
  font-size: 1rem;
  transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
}

.mega-link.icon .content-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.55rem;
}

.mega-link.icon .content-wrapper strong {
  color: var(--ktm-ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

.mega-link.icon .content-wrapper > span {
  color: var(--ktm-muted);
  font-size: 0.85rem;
  line-height: 1.75;
}

.mega-link.icon:hover .icon-wrapper,
.mega-link.icon:focus-visible .icon-wrapper {
  color: #fff;
  background-color: var(--ktm-red);
  transform: translateX(0.2rem);
}

.mega-link.icon:hover i {
  color: #fff;
}

.mega-link.icon:hover strong,
.mega-link.icon:focus-visible strong {
  color: var(--ktm-red);
}

.primary-bar .primary-nav button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.primary-bar .primary-nav .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  color: var(--ktm-red);
  background-color: rgba(220, 48, 31, 0.08);
  transition:
      color 0.25s ease,
      background-color 0.25s ease,
      transform 0.25s ease;
}

.primary-bar .primary-nav .icon-wrapper i {
  display: block;
  width: 1em;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
}

.primary-bar .primary-nav button:hover .icon-wrapper,
.primary-bar .primary-nav button:focus-visible .icon-wrapper,
.primary-bar .primary-nav button[aria-expanded="true"] .icon-wrapper {
  color: #fff;
  background-color: var(--ktm-red);
  transform: translateY(-2px);
}

/* =========================================================
  MANAGEMENT / ORGANIZATION CHART
  ========================================================= */

  .org-chart {
  --org-line-width: 1px;
  position: relative;
  padding-top: 1rem;
}

.org-node {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border: 1px solid var(--ktm-line);
  border-bottom: 3px solid var(--ktm-red);
  background: var(--ktm-soft);
  text-align: center;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.org-node:hover {
  border-color: #c9cdd1;
  box-shadow: 0 12px 30px rgba(17, 19, 24, .08);
  transform: translateY(-3px);
}

.org-node-name {
  margin: 0;
  color: var(--ktm-ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.org-node-role {
  margin: .3rem 0 0;
  color: var(--ktm-muted);
  font-size: .82rem;
  line-height: 1.4;
}


/* Chairman
    --------------------------------------------------------- */

.org-chair {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 4rem;
}

.org-chair .org-node {
  width: min(100%, 320px);
  min-height: 112px;
}

.org-chair .org-node-name,
.org-executive .org-node-name {
  font-size: 1.15rem;
}

.org-chair::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 112px;
  bottom: 0;
  left: 50%;
  width: var(--org-line-width);
  background: var(--ktm-line);
  transform: translateX(-50%);
}


/* Advisory units
    --------------------------------------------------------- */

.org-supports {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 4rem;
}

.org-supports::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 16%;
  left: 16%;
  height: var(--org-line-width);
  background: var(--ktm-line);
}

.org-supports::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -4rem;
  bottom: -4rem;
  left: 50%;
  width: var(--org-line-width);
  background: var(--ktm-line);
  transform: translateX(-50%);
}

.org-supports .org-node {
  min-height: 80px;
}

.org-supports .org-node:first-child {
  grid-column: 1;
}

.org-supports .org-node:last-child {
  grid-column: 3;
}


/* Executive
    --------------------------------------------------------- */

.org-executive {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}

.org-executive .org-node {
  width: min(100%, 320px);
  min-height: 112px;
}

.org-executive::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -4rem;
  left: 50%;
  width: var(--org-line-width);
  height: 4rem;
  background: var(--ktm-line);
  transform: translateX(-50%);
}

.org-executive::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 112px;
  bottom: 0;
  left: 50%;
  width: var(--org-line-width);
  background: var(--ktm-line);
  transform: translateX(-50%);
}


/* Activity groups
    --------------------------------------------------------- */

.org-groups {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.75rem, 1.5vw, 1.5rem);
  padding-top: 3rem;
}

.org-groups::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 10%;
  left: 10%;
  height: var(--org-line-width);
  background: var(--ktm-line);
}

.org-group {
  position: relative;
}

.org-group::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -3rem;
  left: 50%;
  width: var(--org-line-width);
  height: 3rem;
  background: var(--ktm-line);
  transform: translateX(-50%);
}

.org-group .org-node {
  height: 100%;
  min-height: 86px;
}

.search-highlight {
  background-color: #ffff00;
}

.tag,
.share {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.tag ul,
.share ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.tag h5,
.share h5 {
  margin-bottom: 0;
}

.tag a {
  font-size: 0.85rem;
  color: var(--ktm-ink);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--ktm-line);
  transition: all 0.25s ease;
}

.tag a:hover {
  background-color: var(--ktm-soft);
}

/* Yasal Sayfalar */
.legal div > ul > li {
  margin-top: 2rem;
}

.legal div > ul > li > ul > li,
.legal div > ul > li > ul > li > ul {
  margin-top: 1rem;
}

.legal ul li {
  list-style: none;
  margin-bottom: 1rem;
}

.legal ul li,
.legal p {
  text-align: justify;
}

.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.list-check li:last-child {
  margin-bottom: 0;
}

.list-check li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border: 2px solid var(--ktm-red, #c8202f);
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(-50%);
}

.list-check li::after {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.1875rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--ktm-red, #c8202f);
  transform: translateY(-50%);
}

.mobile-submenu-nested {
  margin-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-submenu-nested a {
  padding-left: 1.25rem;
  font-size: 0.9rem;
}

.mobile-nav-actions {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-submenu-group {
  display: block;
  width: 100%;
  margin: 0;
}

.mobile-submenu-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  color: var(--bs-body-color);
  background-color: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.mobile-submenu-group > summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu-group > summary::marker {
  content: "";
}

.mobile-submenu-group > summary i {
  flex: 0 0 auto;
  font-size: 0.8rem;
  transition:
      color 0.25s ease,
      transform 0.25s ease;
}

.mobile-submenu-group[open] > summary {
  color: var(--ktm-red, #d71920);
  background-color: rgba(215, 25, 32, 0.05);
}

.mobile-submenu-group[open] > summary i {
  color: var(--ktm-red, #d71920);
  transform: rotate(180deg);
}

.mobile-submenu-nested {
  margin: 0 0 0 1rem;
  padding: 0.375rem 0 0.5rem;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.018);
  border-left: 2px solid var(--ktm-red, #d71920);
}

.mobile-submenu-nested > li {
  border: 0;
}

.mobile-submenu-nested > li > a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--bs-body-color);
  font-size: 0.925rem;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  transition:
      color 0.2s ease,
      background-color 0.2s ease;
}

.mobile-submenu-nested > li > a:hover,
.mobile-submenu-nested > li > a:focus-visible {
  color: var(--ktm-red, #d71920);
  background-color: rgba(215, 25, 32, 0.05);
}

.mobile-nav-actions {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-header .brand-logo {
  width: 180px;
  height: auto;
}

@media (max-width: 575.98px) {
  :root {
    --section-space: 4rem;
  }

  .display-title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .section-title {
    font-size: 2.15rem;
  }

  .hero-overlay {
    min-height: 570px;
  }

  .hero-overlay::after {
    background: linear-gradient(180deg, rgba(35, 35, 35, 0.35), rgba(35, 35, 35, 0.9) 70%);
  }

  .hero-overlay .container {
    align-self: flex-end;
    padding-bottom: 3.2rem;
  }

  .hero-home .carousel-item,
  .hero-home-content {
    min-height: 620px;
  }

  .hero-home-overlay {
    background: linear-gradient(
      180deg,
      rgba(35, 35, 35, 0.25),
      rgba(35, 35, 35, 0.92) 68%
    );
  }

  .hero-home-content {
    align-items: flex-end;
    padding-top: 5rem;
    padding-bottom: 8.25rem;
  }

  .hero-home .display-title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero-home .carousel-indicators {
    bottom: 5.75rem;
  }

  .hero-home .carousel-indicators [data-bs-target] {
    width: 38px;
  }

  .hero-home .carousel-control-prev,
  .hero-home .carousel-control-next {
    right: 1rem;
  }

  .hero-split-copy,
  .hero-split-media {
    min-height: auto;
  }

  .hero-split-media {
    aspect-ratio: 4 / 3;
  }

  .announcement-band img {
    height: 150px;
  }

  .feature-split img,
  .feature-copy {
    min-height: auto;
  }

  .feature-split img {
    aspect-ratio: 4 / 3;
  }

  .mosaic-card {
    min-height: 310px;
  }

  .btn-stack-mobile .btn-ktm {
    width: 100%;
  }

  .search-box {
    flex-direction: column;
  }

  .footer-legal .container {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .cookie-banner {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .back-to-top {
    bottom: 5.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .group-firm-card,
  .group-firm-logo {
      transition: none;
  }
}

@media (min-width: 576px) {
  .cookie-banner {
    left: auto;
  }
}

@media (max-width: 767.98px) {
  .metric-card {
    padding-block: 1.5rem;
  }

  .article-header {
    padding-top: 3rem;
  }

  .group-firms-grid {
    --bs-gutter-y: 1rem;
  }

  .group-firm-card {
      min-height: 125px;
      padding: 1rem;
  }

  .group-firm-logo {
    max-width: 340px;
    height: 90px;
  }

  .contact-offices {
    grid-template-columns: minmax(0, 1fr);
  }

  .org-chart {
    padding-left: 1.25rem;
  }

  .org-chart::before {
    content: "";
    position: absolute;
    top: 1rem;
    bottom: 0;
    left: 0;
    width: var(--org-line-width);
    background: var(--ktm-line);
  }

  .org-chair,
  .org-executive {
    display: block;
    padding-bottom: 1rem;
  }

  .org-chair::after,
  .org-executive::before,
  .org-executive::after,
  .org-supports::before {
    display: none;
  }

  .org-chair .org-node,
  .org-executive .org-node {
    width: 100%;
  }

  .org-supports {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .org-supports .org-node:first-child,
  .org-supports .org-node:last-child {
    grid-column: 1;
  }

  .org-groups {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0;
  }

  .org-node,
  .org-supports .org-node,
  .org-group .org-node {
    min-height: 80px;
  }

  .org-chair,
  .org-supports,
  .org-executive,
  .org-group {
    position: relative;
  }

  .org-chair::before,
  .org-supports::after,
  .org-executive::before,
  .org-group::after {
    content: "";
    position: absolute;
    display: block;
    top: 40px;
    left: -1.25rem;
    width: 1.25rem;
    height: var(--org-line-width);
    background: var(--ktm-line);
  }
}

@media (min-width: 768px) {
  .featured-news-copy {
    padding-left: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .breadcrumb-band {
    position: relative;
    z-index: 1;
  }

  .site-footer .accordion-button {
    color: #fff;
    background: transparent;
  }

  .site-footer .accordion-button::after {
    filter: invert(1);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1160px;
  }

  .footer-column {
    border-left: 1px solid rgba(255,255,255,.2);
    padding-left: 2rem;
  }

  .tag {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }

  .primary-bar {
    padding-inline: 1.55rem;
  }

  .primary-nav > li > a,
  .primary-nav > li > button {
    padding-inline: 1.35rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }

  .brand-panel {
    width: 290px;
    flex-basis: 290px;
  }

  .hero-home .carousel-item,
  .hero-home-content {
    min-height: 670px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
