:root {
  --kk-black: #050505;
  --kk-white: #ffffff;
  --kk-red: #e31b23;
  --kk-border: rgba(255, 255, 255, 0.12);
  --kk-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --kk-font-base: Georgia, "Times New Roman", Times, serif;
  --kk-light-card-surface:
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.018) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 16% 14%, rgba(227, 27, 35, 0.055), transparent 28%),
    radial-gradient(circle at 86% 84%, rgba(5, 5, 5, 0.045), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.95));
  --kk-light-card-surface-clean:
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.014) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 88% 16%, rgba(227, 27, 35, 0.04), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(251, 249, 246, 0.97));
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--kk-font-base);
}

button,
input,
textarea,
select {
  font: inherit;
}

.kk-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.34) 0%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.03) 100%),
    rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--kk-border);
  backdrop-filter: blur(14px);
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: hidden;
}

.kk-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18%;
  width: 36%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  opacity: 0.28;
  transform: skewX(-24deg);
  animation: kk-header-sheen 10s ease-in-out infinite;
  pointer-events: none;
}

.kk-header__inner {
  max-width: 1440px;
  height: 82px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.kk-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.kk-header__logo img {
  display: block;
  width: 200px;
  height: auto;
}

.kk-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.kk-header__nav-link {
  position: relative;
  color: var(--kk-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 32px 0;
  transition: color 0.2s ease;
}

.kk-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 2px;
  background: var(--kk-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.kk-header__nav-link:hover,
.kk-header__nav-link.is-active {
  color: var(--kk-red);
}

.kk-header__nav-link:hover::after,
.kk-header__nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.kk-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.kk-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kk-header__cta {
  color: var(--kk-white);
  border: 1px solid var(--kk-red);
  background: var(--kk-red);
}

.kk-header__cta:hover {
  background: #b9141b;
  border-color: #b9141b;
}

.kk-header__menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--kk-border);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.kk-header__menu-button > span:not(.kk-header__menu-label) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--kk-white);
  transition: all 0.2s ease;
}

.kk-header__menu-label {
  display: none;
}

.kk-header__menu-button.is-open > span:not(.kk-header__menu-label):nth-of-type(2) {
  transform: translateY(8px) rotate(45deg);
}

.kk-header__menu-button.is-open > span:not(.kk-header__menu-label):nth-of-type(3) {
  opacity: 0;
}

.kk-header__menu-button.is-open > span:not(.kk-header__menu-label):nth-of-type(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.kk-mobile-menu {
  border-top: 1px solid var(--kk-border);
  background: var(--kk-black);
}

.kk-mobile-menu__nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  display: flex;
  flex-direction: column;
}

.kk-mobile-menu__link {
  color: var(--kk-white);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--kk-border);
}

.kk-mobile-menu__link:hover,
.kk-mobile-menu__link.is-active {
  color: var(--kk-red);
}

.kk-mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 22px;
}

.kk-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.kk-mobile-menu__cta {
  color: var(--kk-white);
  border: 1px solid var(--kk-red);
  background: var(--kk-red);
}

@media (max-width: 1180px) {
  .kk-header__nav {
    gap: 18px;
  }

  .kk-header__nav-link {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  .kk-header {
    position: sticky;
    overflow: visible;
  }

  .kk-header::before {
    display: none;
  }

  .kk-header__inner {
    height: 76px;
    padding: 0 18px 0 24px;
  }

  .kk-header__nav,
  .kk-header__actions {
    display: none;
  }

  .kk-header__menu-button {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1001;
    width: 68px;
    height: 68px;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    border: 0;
    border-radius: 999px;
    background: var(--kk-red);
    box-shadow: 0 14px 34px rgba(227, 27, 35, 0.32);
  }

  .kk-header__menu-label {
    display: block;
    color: var(--kk-white);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .kk-header__menu-button > span:not(.kk-header__menu-label) {
    width: 32px;
    height: 3px;
    background: #ffffff;
  }

  .kk-header__logo img {
    width: 104px;
  }
}

/*footer */

.kk-footer {
  background: #050505;
  color: #ffffff;
}

.kk-footer a {
  color: inherit;
}

.kk-footer-cta {
  background:
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.92)),
    #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kk-footer-cta__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.kk-footer-cta__content {
  max-width: 720px;
}

.kk-footer-cta__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #e31b23;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kk-footer-cta h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.kk-footer-cta p {
  margin: 20px 0 0;
  max-width: 560px;
  color: #c7c7c7;
  font-size: 16px;
  line-height: 1.6;
}

.kk-footer-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.kk-footer-cta__button,
.kk-footer-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kk-footer-cta__button {
  background: #e31b23;
  border: 1px solid #e31b23;
  color: #ffffff;
}

.kk-footer-cta__button:hover {
  background: #b9141b;
  border-color: #b9141b;
}

.kk-footer-cta__link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.kk-footer-cta__link:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.kk-footer-main {
  background: #050505;
}

.kk-footer-main__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 36px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 42px;
}

.kk-footer__brand {
  max-width: 380px;
}

.kk-footer__logo {
  display: inline-flex;
  margin-bottom: 24px;
  text-decoration: none;
}

.kk-footer__logo img {
  display: block;
  width: 150px;
  height: auto;
}

.kk-footer__brand p,
.kk-footer__contact p {
  margin: 0;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.7;
}

.kk-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kk-footer__column h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kk-footer__column a {
  margin-bottom: 12px;
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kk-footer__column a:hover {
  color: #e31b23;
}

.kk-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000000;
}

.kk-footer-bottom__inner {
  max-width: 1440px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.kk-footer-bottom p {
  margin: 0;
  color: #8f8f8f;
  font-size: 13px;
}

.kk-footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kk-footer-bottom__links a {
  color: #8f8f8f;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kk-footer-bottom__links a:hover {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .kk-footer-main__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-footer__brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .kk-footer-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 56px 24px;
  }

  .kk-footer-cta__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .kk-footer-cta__button,
  .kk-footer-cta__link {
    width: 100%;
  }

  .kk-footer-main__inner {
    padding: 48px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .kk-footer-bottom__inner {
    min-height: auto;
    padding: 22px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* end footer */

/* Main */

.kk-home {
  background:
    radial-gradient(circle at top, rgba(227, 27, 35, 0.08), transparent 26%),
    #f5f0ea;
  color: #050505;
  overflow: clip;
}

.kk-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(115deg, rgba(5, 5, 5, 0.66) 0%, rgba(5, 5, 5, 0.46) 38%, rgba(5, 5, 5, 0.18) 100%),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.06), transparent 26%),
    radial-gradient(circle at 72% 74%, rgba(227, 27, 35, 0.05), transparent 20%),
    url("/images/herobkgnd.jpg") center 28% / cover no-repeat,
    #050505;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  --kk-parallax-x: 0px;
  --kk-parallax-y: 0px;
}

.kk-hero::before,
.kk-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.5;
}

.kk-hero::before {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 8%;
  background: radial-gradient(circle, rgba(227, 27, 35, 0.22), transparent 68%);
  filter: blur(24px);
  animation: kk-orbit 12s ease-in-out infinite;
}

.kk-hero::after {
  width: 220px;
  height: 220px;
  left: 4%;
  bottom: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  filter: blur(28px);
  animation: kk-orbit 15s ease-in-out infinite reverse;
}

.kk-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 28px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 34px;
  align-items: center;
}

.kk-hero__content {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.kk-hero__eyebrow,
.kk-section__eyebrow {
  display: inline-block;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-hero__kicker {
  margin: 0;
  max-width: 1180px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.kk-hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(32px, 4.3vw, 60px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.28),
    0 12px 26px rgba(0, 0, 0, 0.2);
}

.kk-hero h1 span {
  color: #ef3038;
  text-shadow:
    0 2px 0 rgba(72, 8, 11, 0.36),
    0 12px 28px rgba(227, 27, 35, 0.2),
    0 0 18px rgba(255, 116, 123, 0.08);
}

.kk-hero p {
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.46;
}

.kk-hero__actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.kk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kk-button--primary {
  background: #e31b23;
  border: 1px solid #e31b23;
  color: #ffffff;
}

.kk-button--primary:hover {
  background: #b9141b;
  border-color: #b9141b;
}

.kk-button--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.kk-button--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.kk-button--outline-dark {
  background: transparent;
  border: 1px solid rgba(5, 5, 5, 0.72);
  color: #050505;
}

.kk-button--outline-dark:hover {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.kk-button--light {
  background: #efe5da;
  border: 1px solid #efe5da;
  color: #050505;
}

.kk-button--light:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.kk-landing {
  background: #fbfaf8;
  color: #050505;
  overflow: clip;
}

.kk-landing .kk-button--primary {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.kk-landing .kk-button--primary:hover {
  background: #222222;
  border-color: #222222;
}

.kk-landing-eyebrow {
  display: inline-block;
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kk-landing-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  min-height: 500px;
  background: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-landing-hero__copy {
  padding: clamp(42px, 5vw, 68px) clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kk-landing-hero h1 {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.kk-landing-hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.kk-landing-hero p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #161616;
  font-size: 15px;
  line-height: 1.7;
}

.kk-landing-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.kk-landing-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  background: #ffffff;
}

.kk-landing-hero__tile {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.kk-landing-hero__tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 900ms var(--kk-ease), filter 400ms ease;
}

.kk-landing-hero__tile--cap img {
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}

.kk-landing-hero__tile:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}

.kk-landing-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 78px 58px;
  background: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-landing-section__intro {
  margin-bottom: 24px;
  text-align: center;
}

.kk-landing-categories {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.13), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(227, 27, 35, 0.16), transparent 26%),
    linear-gradient(135deg, #050505 0%, #171312 48%, #050505 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kk-landing-categories .kk-landing-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.kk-landing-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.kk-landing-category {
  position: relative;
  min-height: 330px;
  padding: 56px 44px;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  overflow: visible;
  background: var(--kk-light-card-surface);
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition: transform 500ms var(--kk-ease), box-shadow 400ms ease, border-color 300ms ease;
}

.kk-landing-category__copy {
  position: relative;
  z-index: 2;
}

.kk-landing-category:focus-visible {
  outline: 3px solid rgba(227, 27, 35, 0.42);
  outline-offset: 4px;
}

.kk-landing-category h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.kk-landing-category p {
  margin: 16px 0 24px;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 1.65;
}

.kk-landing-category img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 270px;
  object-fit: cover;
  justify-self: end;
  mix-blend-mode: multiply;
}

.kk-landing-category--headwear img {
  object-fit: contain;
  mix-blend-mode: normal;
}

.kk-landing-category:hover {
  transform: translateY(-8px);
  border-color: rgba(5, 5, 5, 0.2);
  box-shadow:
    0 38px 86px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.kk-landing-programs {
  padding-top: 28px;
}

.kk-landing-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.kk-landing-program-grid article {
  padding: 18px 28px;
  text-align: center;
  border-right: 1px solid rgba(5, 5, 5, 0.12);
}

.kk-landing-program-grid article:last-child {
  border-right: 0;
}

.kk-landing-program-grid h3,
.kk-landing-step-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.kk-landing-program-grid p,
.kk-landing-step-grid p {
  max-width: 230px;
  margin: 10px auto 0;
  color: #323232;
  font-size: 13px;
  line-height: 1.55;
}

.kk-landing-chooser {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.03), rgba(5, 5, 5, 0)),
    #ffffff;
}

.kk-landing-chooser__copy {
  position: sticky;
  top: 128px;
}

.kk-landing-chooser h2,
.kk-landing-quote-info__panel h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.kk-landing-chooser__copy p,
.kk-landing-quote-info__panel p {
  margin: 20px 0 0;
  color: #252525;
  font-size: 15px;
  line-height: 1.72;
}

.kk-landing-chooser__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kk-landing-chooser__grid article {
  min-height: 210px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--kk-light-card-surface);
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  transition: transform 500ms var(--kk-ease), box-shadow 350ms ease, border-color 250ms ease;
}

.kk-landing-chooser__grid article:nth-child(2),
.kk-landing-chooser__grid article:nth-child(3) {
  background: var(--kk-light-card-surface-clean);
}

.kk-landing-chooser__grid span {
  color: #9c1117;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-landing-chooser__grid h3 {
  margin: 42px 0 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.kk-landing-chooser__grid p {
  margin: 18px 0 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.62;
}

.kk-landing-chooser__grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 5, 5, 0.18);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.11);
}

.kk-landing-benefits {
  max-width: 1440px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(227, 27, 35, 0.13), transparent 26%),
    linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(5, 5, 5, 0.98) 44%, rgba(17, 10, 10, 0.98));
  color: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kk-landing-benefits__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  min-height: 310px;
}

.kk-landing-benefits__copy {
  padding: 54px 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kk-landing-benefits .kk-landing-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.kk-landing-benefits__lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.72;
}

.kk-landing-benefit-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kk-landing-benefit-grid article {
  min-height: 164px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kk-landing-benefit-grid h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 500;
}

.kk-landing-benefit-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.kk-landing-benefits__image {
  overflow: hidden;
}

.kk-landing-benefits__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-landing-quote-info {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  background: #fbfaf8;
}

.kk-landing-quote-info__panel {
  padding: 34px;
  background: var(--kk-light-card-surface-clean);
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

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

.kk-landing-quote-list article {
  padding: 26px;
  background: var(--kk-light-card-surface-clean);
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.kk-landing-quote-list strong {
  display: block;
  color: #050505;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.kk-landing-quote-list span {
  display: block;
  margin-top: 12px;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.kk-landing-process {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  align-items: stretch;
  background:
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.012) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 239, 0.96));
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-landing-process__steps {
  padding: 48px 58px;
}

.kk-landing-process__steps .kk-landing-section__intro {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.kk-landing-process__steps .kk-landing-section__intro p {
  max-width: 660px;
  margin: 16px auto 0;
  color: #252525;
  font-size: 15px;
  line-height: 1.68;
}

.kk-landing-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.kk-landing-step-grid article {
  position: relative;
  min-height: 176px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  background: var(--kk-light-card-surface-clean);
  border: 1px solid rgba(5, 5, 5, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.kk-landing-step-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: rgba(5, 5, 5, 0.2);
  transform: translateY(-50%);
  z-index: 2;
}

.kk-landing-step-grid h3 {
  font-size: 20px;
}

.kk-landing-step-grid p {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.kk-landing-process__note {
  margin-top: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  background:
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.018) 0 1px, transparent 1px 13px),
    linear-gradient(145deg, rgba(5, 5, 5, 0.94), rgba(32, 24, 22, 0.94));
  color: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.12);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.kk-landing-process__note strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kk-landing-process__note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.kk-landing-process__cta {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(227, 27, 35, 0.2), transparent 30%),
    linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.94)),
    url("/images/herobkgnd.jpg") center / cover no-repeat,
    #050505;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.kk-landing-process__cta h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.kk-landing-process__cta p {
  margin: 4px 0 8px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.kk-apparel-page {
  background: #fbfaf8;
  color: #050505;
}

.kk-apparel-page .kk-button--primary {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.kk-apparel-page .kk-button--primary:hover {
  background: #222222;
  border-color: #222222;
}

.kk-apparel-hero {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  min-height: 540px;
  background: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-apparel-hero__copy {
  padding: clamp(46px, 6vw, 86px) clamp(38px, 6vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.kk-apparel-hero h1 {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.kk-apparel-hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #202020;
  font-size: 16px;
  line-height: 1.75;
}

.kk-apparel-hero .kk-button {
  margin-top: 30px;
}

.kk-apparel-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(5, 5, 5, 0.05), transparent 34%),
    #ffffff;
}

.kk-apparel-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.kk-apparel-band {
  max-width: 1440px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.13), transparent 24%),
    linear-gradient(135deg, #050505 0%, #171312 48%, #050505 100%);
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-apparel-band__inner {
  padding: 20px 78px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.kk-apparel-band span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.kk-apparel-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 78px;
  background: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-apparel-section__heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.kk-apparel-section__heading h2,
.kk-apparel-split__copy h2,
.kk-apparel-quote__panel h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.kk-apparel-section__heading p,
.kk-apparel-split__copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #252525;
  font-size: 16px;
  line-height: 1.72;
}

.kk-apparel-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kk-apparel-card-grid article,
.kk-apparel-quote__list article {
  padding: 28px;
  background: var(--kk-light-card-surface);
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  transition: transform 500ms var(--kk-ease), box-shadow 350ms ease, border-color 250ms ease;
}

.kk-apparel-card-grid article {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kk-apparel-card-grid h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.kk-apparel-card-grid p {
  margin: 18px 0 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.62;
}

.kk-apparel-card-grid article:hover,
.kk-apparel-quote__list article:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 5, 5, 0.18);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.11);
}

.kk-apparel-split {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.94fr);
  background:
    radial-gradient(circle at 82% 18%, rgba(227, 27, 35, 0.12), transparent 24%),
    #050505;
  color: #ffffff;
  border-left: 1px solid rgba(5, 5, 5, 0.08);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-apparel-split__image {
  min-height: 520px;
  overflow: hidden;
}

.kk-apparel-split__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-apparel-split__copy {
  padding: 68px 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kk-apparel-split .kk-landing-eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.kk-apparel-split__copy p {
  color: rgba(255, 255, 255, 0.74);
}

.kk-apparel-split__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kk-apparel-split .kk-button--outline-dark {
  border-color: rgba(255, 255, 255, 0.36);
  color: #ffffff;
}

.kk-apparel-split .kk-button--outline-dark:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.kk-apparel-quote {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  background: #fbfaf8;
}

.kk-apparel-quote__panel {
  padding: 34px;
  background: var(--kk-light-card-surface-clean);
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}

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

.kk-apparel-quote__list strong {
  display: block;
  color: #050505;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.kk-apparel-quote__list span {
  display: block;
  margin-top: 12px;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.kk-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 600ms var(--kk-ease), border-color 300ms ease, box-shadow 400ms ease;
}

.kk-hero-card--panel {
  min-height: 396px;
}

.kk-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 800ms var(--kk-ease);
}

.kk-hero-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.kk-hero-card__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.9) contrast(1.02);
  transition:
    opacity 900ms var(--kk-ease),
    transform 1400ms var(--kk-ease),
    filter 900ms ease;
}

.kk-hero-card__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1.04);
}

.kk-hero-card__slide.is-exiting {
  opacity: 0;
  transform: scale(1.1);
  filter: saturate(0.86) contrast(1);
}

.kk-hero-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #f7b4b7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-hero-card strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.kk-hero-card--primary {
  min-height: 240px;
  background:
    linear-gradient(165deg, rgba(227, 27, 35, 0.98), rgba(122, 8, 13, 0.9));
}

.kk-hero-card--photo {
  padding: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 0.98));
}

.kk-hero-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.16));
  pointer-events: none;
}

.kk-hero-card--photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 42%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
  opacity: 0;
  transform: skewX(-18deg) translateX(-120%);
  pointer-events: none;
  z-index: 1;
}

.kk-hero-card--photo.is-switching::before {
  animation: kk-hero-sheen 900ms var(--kk-ease);
}

.kk-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.18);
}

.kk-hero-card:hover .kk-hero-card__slide.is-active,
.kk-hero-card:hover img {
  transform: scale(1.04);
}

.kk-marquee {
  background: #efe5da;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.kk-marquee__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-sizing: border-box;
}

.kk-marquee__inner span {
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
}

@media (min-width: 1101px) {
  .kk-marquee__inner {
    max-width: 1494px;
  }
}

.kk-section {
  padding: 96px 0;
}

.kk-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}

.kk-section__heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.kk-section__heading h2,
.kk-wholesale__content h2,
.kk-final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-section__heading p,
.kk-final-cta p {
  margin: 22px 0 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
}

.kk-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kk-collections__title {
  display: inline-block;
  font-size: clamp(42px, 6vw, 92px) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.07em !important;
  white-space: nowrap;
  max-width: 100%;
}

.kk-collections__title span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.kk-collections__title span img {
  position: absolute;
  left: -8px;
  bottom: -35px;
  width: calc(100% + 16px);
  height: auto;
  transform: rotate(-0.1deg);
  opacity: 0.98;
  z-index: -1;
  pointer-events: none;
}

.kk-collections__title span::before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 8px;
  width: 26px;
  height: 18px;
  background:
    radial-gradient(circle at 3px 12px, rgba(227, 27, 35, 0.88) 0 2px, transparent 2.4px),
    radial-gradient(circle at 12px 4px, rgba(227, 27, 35, 0.7) 0 2.4px, transparent 2.8px),
    radial-gradient(circle at 19px 13px, rgba(163, 11, 16, 0.62) 0 1.8px, transparent 2.2px),
    radial-gradient(circle at 23px 7px, rgba(243, 58, 64, 0.56) 0 1.5px, transparent 1.9px);
  transform: rotate(-10deg);
  pointer-events: none;
}

.kk-showcase-card {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 500ms var(--kk-ease), box-shadow 400ms ease, border-color 300ms ease;
}

.kk-showcase-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.kk-showcase-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.16);
  border-color: rgba(227, 27, 35, 0.22);
}

.kk-showcase-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 24px;
  background: #ffffff;
  overflow: hidden;
}

.kk-showcase-card__image::after {
  content: "View Details  >";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(227, 27, 35, 0.94));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(0);
  transition: min-height 260ms var(--kk-ease), background-color 220ms ease;
}

.kk-showcase-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
  opacity: 0;
  transform: skewX(-22deg);
  pointer-events: none;
}

.kk-showcase-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms var(--kk-ease);
}

.kk-showcase-card:hover .kk-showcase-card__image img {
  transform: scale(1.06) rotate(-1.2deg);
}

.kk-showcase-card:hover .kk-showcase-card__image::after,
.kk-showcase-card__link:focus-visible .kk-showcase-card__image::after {
  min-height: 50px;
}

.kk-showcase-card:hover .kk-showcase-card__image::before,
.kk-showcase-card__link:focus-visible .kk-showcase-card__image::before {
  animation: kk-detail-sheen 850ms var(--kk-ease);
}

.kk-showcase-card__meta {
  padding: 14px 18px 16px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.kk-showcase-card__meta h3 {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.kk-home-intro {
  background:
    radial-gradient(circle at 14% 18%, rgba(227, 27, 35, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f3ed 0%, #efe5da 100%);
}

.kk-home-intro__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: stretch;
}

.kk-home-intro__copy {
  position: sticky;
  top: 126px;
  align-self: start;
}

.kk-home-intro__copy h2,
.kk-home-split__copy h2,
.kk-home-route h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.kk-home-intro__copy p,
.kk-home-split__copy p,
.kk-home-route p {
  margin: 22px 0 0;
  color: #5a544d;
  font-size: 17px;
  line-height: 1.72;
}

.kk-home-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.kk-home-feature {
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 240, 232, 0.92));
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.08);
  transition: transform 500ms var(--kk-ease), box-shadow 400ms ease, border-color 300ms ease;
}

.kk-home-feature span,
.kk-home-picks__callout span,
.kk-home-route span {
  color: #e31b23;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-home-feature h3 {
  margin: 48px 0 0;
  font-size: 34px;
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.kk-home-feature p {
  margin: 24px 0 0;
  color: #5b554f;
  font-size: 15px;
  line-height: 1.68;
}

.kk-home-feature--red {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(145deg, #e31b23, #8f0d13);
  color: #ffffff;
  transform: translateY(28px);
}

.kk-home-feature--red span,
.kk-home-feature--red p {
  color: rgba(255, 255, 255, 0.82);
}

.kk-home-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 27, 35, 0.2);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.14);
}

.kk-home-feature--red:hover {
  transform: translateY(18px);
}

.kk-home-showcase {
  background:
    linear-gradient(180deg, #f8f3ed 0%, #f5f0ea 48%, #efe5da 100%);
}

.kk-home-showcase__heading {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kk-home-showcase__heading p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.kk-home-picks {
  display: grid;
  grid-template-columns: 1.12fr 0.82fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

.kk-home-pick--wide {
  grid-row: span 2;
}

.kk-home-pick--wide .kk-showcase-card__image {
  aspect-ratio: 1 / 1.18;
}

.kk-home-picks__callout {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.96), rgba(33, 18, 16, 0.96)),
    #050505;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.kk-home-picks__callout h3 {
  margin: 26px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-home-picks__callout a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration-color: #e31b23;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.kk-home-split {
  background: #050505;
  color: #ffffff;
  overflow: hidden;
}

.kk-home-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.88fr);
  gap: 62px;
  align-items: center;
}

.kk-home-split__media {
  position: relative;
  min-height: 680px;
}

.kk-home-split__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.kk-home-split__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--kk-ease);
}

.kk-home-split__photo--main {
  left: 0;
  top: 2%;
  width: 68%;
  height: 78%;
}

.kk-home-split__photo--overlap {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 48%;
  border: 14px solid #050505;
}

.kk-home-split__photo:hover img {
  transform: scale(1.05);
}

.kk-home-split__badge {
  position: absolute;
  right: 9%;
  top: 13%;
  padding: 14px 18px;
  background: #e31b23;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 24px 48px rgba(227, 27, 35, 0.26);
}

.kk-home-split__copy p {
  color: rgba(255, 255, 255, 0.74);
}

.kk-home-proof {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.kk-home-proof article {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.kk-home-proof strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.kk-home-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.kk-home-partner {
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(34, 14, 14, 0.98)),
    #050505;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kk-home-partner__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.kk-home-partner h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-home-partner .kk-button {
  flex: 0 0 auto;
}

.kk-home-routes {
  background:
    radial-gradient(circle at 80% 16%, rgba(227, 27, 35, 0.1), transparent 22%),
    #efe5da;
}

.kk-home-routes__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.kk-home-route {
  min-height: 360px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(5, 5, 5, 0.1);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
  transition: transform 500ms var(--kk-ease), box-shadow 350ms ease;
}

.kk-home-route--dark {
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.98), rgba(35, 22, 18, 0.96));
  color: #ffffff;
}

.kk-home-route--red {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, #e31b23, #8f0d13);
  color: #ffffff;
}

.kk-home-route p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.kk-home-route:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 78px rgba(0, 0, 0, 0.16);
}

.kk-decoration {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    #efe5da;
  overflow: hidden;
}

.kk-decoration__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 54px;
  align-items: center;
}

.kk-decoration__stage {
  position: relative;
  min-height: 680px;
}

.kk-decoration__photo {
  position: absolute;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(227, 27, 35, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 700ms var(--kk-ease), box-shadow 400ms ease;
}

.kk-decoration__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kk-decoration__photo--main {
  left: 2%;
  top: 8%;
  width: 58%;
  aspect-ratio: 1 / 1;
  padding: 24px;
  transform: rotate(-7deg);
  animation: kk-float-card 7.4s ease-in-out infinite;
}

.kk-decoration__photo--top {
  right: 5%;
  top: 0;
  width: 36%;
  aspect-ratio: 0.86 / 1;
  padding: 18px;
  transform: rotate(9deg);
  animation: kk-float-card 8.2s ease-in-out infinite 0.6s;
}

.kk-decoration__photo--bottom {
  right: 0;
  bottom: 6%;
  width: 42%;
  aspect-ratio: 0.92 / 1;
  padding: 18px;
  transform: rotate(-4deg);
  animation: kk-float-card 7.8s ease-in-out infinite 1.1s;
}

.kk-decoration__tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  background: #050505;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  animation: kk-float-soft 6.5s ease-in-out infinite;
}

.kk-decoration__tag--one {
  left: 4%;
  bottom: 18%;
}

.kk-decoration__tag--two {
  right: 11%;
  top: 29%;
  background: #e31b23;
}

.kk-decoration__tag--three {
  right: 18%;
  bottom: 0;
}

.kk-decoration .kk-section__eyebrow {
  color: #e31b23;
}

.kk-decoration__content h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-decoration__content p {
  margin: 24px 0 0;
  color: #4f4b47;
  font-size: 17px;
  line-height: 1.75;
}

.kk-decoration__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kk-decoration__point {
  min-height: 260px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(227, 27, 35, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 0.98));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 500ms var(--kk-ease), box-shadow 400ms ease;
}

.kk-decoration__point h3 {
  margin: 0;
  max-width: 220px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: none;
}

.kk-decoration__point p {
  margin: 20px 0 0;
  color: #b9b9b9;
  font-size: 15px;
  line-height: 1.7;
}

.kk-decoration__point:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
}

.kk-editorial {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.07), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(227, 27, 35, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(25, 25, 25, 0.99), rgba(5, 5, 5, 0.99) 46%, rgba(17, 10, 10, 0.99));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kk-editorial__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.kk-editorial__content {
  padding: 42px 0;
}

.kk-editorial__content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-editorial__content p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #bfbfbf;
  font-size: 17px;
  line-height: 1.75;
}

.kk-editorial__stats {
  display: grid;
  gap: 18px;
}

.kk-editorial__portrait {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  transition: transform 600ms var(--kk-ease), box-shadow 400ms ease;
}

.kk-editorial__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--kk-ease);
}

.kk-editorial__portrait:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.24);
}

.kk-editorial__portrait:hover img {
  transform: scale(1.05);
}

.kk-stat-card {
  min-height: 180px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 500ms var(--kk-ease), border-color 300ms ease;
}

.kk-stat-card strong {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.kk-stat-card p {
  margin: 0;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.7;
}

.kk-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 27, 35, 0.28);
}

.kk-audience {
  background: #f3ebe0;
}

.kk-audience .kk-section__eyebrow {
  color: #e31b23;
}

.kk-audience__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.kk-audience__intro {
  position: sticky;
  top: 120px;
}

.kk-audience__intro h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-audience__intro p {
  max-width: 420px;
  margin: 22px 0 0;
  color: #5d5751;
  font-size: 17px;
  line-height: 1.72;
}

.kk-audience__rail {
  display: grid;
  gap: 12px;
}

.kk-audience-row {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--kk-light-card-surface);
  border: 1px solid rgba(5, 5, 5, 0.08);
  transition: transform 500ms var(--kk-ease), border-color 300ms ease, box-shadow 350ms ease;
}

.kk-audience-row__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #2fbf71;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.kk-audience-row__content h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: none;
}

.kk-audience-row__content p {
  max-width: 540px;
  margin: 12px 0 0;
  color: #57514b;
  font-size: 15px;
  line-height: 1.7;
}

.kk-audience-row:hover {
  transform: translateX(10px);
  border-color: rgba(227, 27, 35, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.kk-final-cta {
  background:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(227, 27, 35, 0.26), transparent 34%),
    #050505;
  color: #ffffff;
  text-align: center;
}

.kk-final-cta__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 96px 36px;
}

.kk-final-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
  color: #c7c7c7;
}

.kk-final-cta .kk-button {
  margin-top: 34px;
}

.kk-contact-page {
  background:
    radial-gradient(circle at top, rgba(227, 27, 35, 0.08), transparent 24%),
    #f5f0ea;
  color: #050505;
}

.kk-contact-hero {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.84) 100%),
    linear-gradient(115deg, rgba(5, 5, 5, 0.42) 0%, rgba(5, 5, 5, 0.18) 100%),
    url("/images/herobkgnd.jpg") center 34% / cover no-repeat,
    #050505;
  color: #ffffff;
}

.kk-contact-hero__inner,
.kk-contact-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

.kk-contact-hero__inner {
  padding-top: 52px;
  padding-bottom: 48px;
}

.kk-contact-hero__content {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.kk-contact-hero__kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

.kk-contact-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.93;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-contact-hero__content > p:last-child {
  max-width: 780px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.kk-contact-section {
  padding: 84px 0 96px;
}

.kk-contact-section__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.kk-contact-panel {
  padding: 34px 34px 36px;
  background: var(--kk-light-card-surface-clean);
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.08);
}

.kk-contact-panel--details {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(227, 27, 35, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(34, 34, 34, 0.98), rgba(8, 8, 8, 0.98)),
    #111111;
  color: #ffffff;
  position: sticky;
  top: 118px;
}

.kk-contact-panel__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #e31b23;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.kk-contact-panel p {
  margin: 18px 0 0;
  color: #5a544d;
  font-size: 16px;
  line-height: 1.7;
}

.kk-contact-panel--details p {
  color: rgba(255, 255, 255, 0.76);
}

.kk-contact-detail-list {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.kk-contact-detail {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.kk-contact-detail span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-contact-detail a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.kk-contact-detail p {
  margin: 0;
}

.kk-contact-alert {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1.6;
}

.kk-contact-alert--success {
  background: rgba(47, 191, 113, 0.12);
  border-color: rgba(47, 191, 113, 0.26);
  color: #0e6a3a;
}

.kk-contact-alert--error {
  background: rgba(227, 27, 35, 0.08);
  border-color: rgba(227, 27, 35, 0.18);
  color: #8f1117;
}

.kk-contact-form {
  margin-top: 22px;
}

.kk-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.kk-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kk-contact-field {
  margin-top: 18px;
}

.kk-contact-field label {
  display: inline-block;
  margin-bottom: 10px;
  color: #2f2a25;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kk-contact-field input,
.kk-contact-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: rgba(248, 244, 239, 0.86);
  color: #050505;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.kk-contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.kk-contact-field input:focus,
.kk-contact-field textarea:focus {
  outline: none;
  border-color: rgba(227, 27, 35, 0.44);
  box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.08);
  background: #ffffff;
}

.kk-contact-form .kk-button {
  margin-top: 24px;
}

.kk-product-page {
  background:
    radial-gradient(circle at top, rgba(227, 27, 35, 0.08), transparent 24%),
    #f5f0ea;
  color: #050505;
}

.kk-product-hero {
  background:
    radial-gradient(circle at 82% 48%, rgba(227, 27, 35, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.32) 100%),
    #050505;
  color: #ffffff;
}

.kk-product-hero--dad-hats {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.48) 32%, rgba(5, 5, 5, 0.12) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.34) 100%),
    url("/images/dadhats/herobackground.jpg") center center / cover no-repeat,
    #050505;
}

.kk-product-hero--five-panel-mesh {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/5panelmesh/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--five-panel-mesh .kk-product-hero__lead {
  max-width: 520px;
}

.kk-product-hero--five-panel-mesh .kk-product-hero__lead h1 span:first-child {
  white-space: nowrap;
}

.kk-product-hero--five-panel-snapback {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.68) 34%, rgba(5, 5, 5, 0.2) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.16) 100%),
    url("/images/5snap/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--vintage-mesh {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/vintagemesh/herobanner.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--baseball-cap {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/baseballcap/herobanner.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--flat-bill-cap {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/flatbill/herobanner.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--flat-bill-cap .kk-product-hero__lead,
.kk-product-hero--six-panel-mesh .kk-product-hero__lead,
.kk-product-hero--youth-low-profile .kk-product-hero__lead {
  max-width: 520px;
}

.kk-product-hero--flat-bill-cap .kk-product-hero__lead h1 span:first-child,
.kk-product-hero--six-panel-mesh .kk-product-hero__lead h1 span:first-child,
.kk-product-hero--youth-low-profile .kk-product-hero__lead h1 span:first-child {
  white-space: nowrap;
}

.kk-product-hero--youth-low-profile {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/youthlowprofile/herobanner.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--six-panel-mesh {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/6panelmesh/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--eight-inch-beanie {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/8inchbeanie/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--cuffed-beanie {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/cuffedbeanie/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero--ski-hat {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 34%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.14) 0%, rgba(5, 5, 5, 0.28) 100%),
    url("/images/skihat/herobackground.jpg") center top / cover no-repeat,
    #050505;
}

.kk-product-hero__content--mesh-trucker {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(520px, 1.16fr);
  gap: 104px;
  align-items: center;
}

.kk-product-hero__content--mesh-trucker .kk-product-hero__lead {
  max-width: 440px;
  position: relative;
  padding-bottom: 10px;
}

.kk-product-hero__content--mesh-trucker .kk-product-hero__summary {
  max-width: 820px;
  padding-left: 112px;
  align-self: center;
}

.kk-product-hero__content--mesh-trucker p {
  max-width: none;
}

.kk-product-hero__content--mesh-trucker .kk-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

.kk-product-hero__content--mesh-trucker h1 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 18px 6px 0;
  font-size: clamp(23px, 3.9vw, 60px);
  line-height: 0.9;
  text-transform: uppercase;
}

.kk-product-hero__content--mesh-trucker h1 span {
  display: block;
  letter-spacing: 0.04em;
}

.kk-product-hero__content--mesh-trucker h1::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  bottom: 18px;
  width: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(227, 27, 35, 0.92));
  box-shadow: 0 0 18px rgba(227, 27, 35, 0.28);
}

.kk-product-hero__content--mesh-trucker .kk-product-hero__features {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 20px;
}

.kk-product-hero__content--mesh-trucker .kk-product-hero__note {
  margin-top: 14px;
  max-width: 620px;
}

.kk-product-hero .kk-section__eyebrow {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.kk-product-hero .kk-product-hero__content h1 {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.28),
    0 10px 18px rgba(0, 0, 0, 0.18);
}

.kk-product-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 320px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
}

.kk-product-hero__content {
  max-width: 600px;
}

.kk-product-hero__content h1 {
  margin: 0;
  font-weight: 950;
  opacity: 0;
  transform: translate3d(-180px, 0, 0);
}

.kk-product-hero__content p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.58;
}

.kk-product-hero__features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 20px;
}

.kk-product-hero__features li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.kk-product-hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  background: #e31b23;
}

.kk-product-hero__note {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.kk-zoom-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.kk-zoom-trigger img {
  display: block;
  width: 100%;
}

.kk-product-gallery {
  padding-top: 10px;
}

.kk-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kk-product-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kk-product-grid--single-shot {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kk-product-card {
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 500ms var(--kk-ease), box-shadow 400ms ease, border-color 300ms ease;
}

.kk-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.14);
  border-color: rgba(227, 27, 35, 0.2);
}

.kk-product-card__images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: #ffffff;
}

.kk-product-card__images--single {
  grid-template-columns: 1fr;
}

.kk-product-card__images--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kk-product-card__shot {
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.06);
}

.kk-product-card__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.kk-product-card__shot span {
  display: block;
  margin-top: 10px;
  color: #7b736b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.kk-product-card__meta {
  padding: 14px 18px 16px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(5, 5, 5, 0.06);
}

.kk-product-card__meta h3 {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.kk-product-strip {
  padding: 34px 0 54px;
  border-top: 1px solid rgba(5, 5, 5, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 238, 231, 0.92));
}

.kk-product-strip--top {
  padding-bottom: 18px;
}

.kk-product-strip__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.kk-product-strip__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82px;
  justify-content: center;
  gap: 10px 12px;
  align-items: start;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(227, 27, 35, 0.48) rgba(5, 5, 5, 0.08);
}

.kk-product-strip__item {
  min-width: 0;
  display: grid;
  gap: 8px;
  color: #121212;
  text-decoration: none;
  transition: transform 260ms var(--kk-ease), opacity 220ms ease;
}

.kk-product-strip__item:hover {
  transform: translateY(-4px);
}

.kk-product-strip__item:not(.is-active) {
  opacity: 0.86;
}

.kk-product-strip__thumb {
  display: block;
  aspect-ratio: 1 / 1;
  padding: 7px;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.kk-product-strip__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kk-product-strip__label {
  display: block;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.kk-product-strip__item.is-active .kk-product-strip__thumb {
  border-color: rgba(227, 27, 35, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
}

.kk-product-strip__item.is-active .kk-product-strip__label {
  color: #b40f16;
}

.kk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.kk-lightbox[hidden] {
  display: none;
}

.kk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
}

.kk-lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  padding: 62px 20px 20px;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.kk-lightbox__close,
.kk-lightbox__control {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.kk-lightbox__close:hover,
.kk-lightbox__control:hover {
  background: rgba(227, 27, 35, 0.16);
  border-color: rgba(227, 27, 35, 0.34);
  transform: translateY(-1px);
}

.kk-lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  min-height: 38px;
  padding: 0 14px;
}

.kk-lightbox__toolbar {
  position: absolute;
  top: 18px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.kk-lightbox__control {
  min-height: 38px;
  min-width: 38px;
  padding: 0 12px;
}

.kk-lightbox__viewport {
  height: min(78vh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.kk-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  transition: transform 180ms ease;
  will-change: transform;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition: opacity 820ms var(--kk-ease), transform 820ms var(--kk-ease);
  will-change: opacity, transform;
}

[data-reveal="hero-copy"] {
  transform: translate3d(-36px, 0, 0);
}

[data-reveal="hero-media"] {
  transform: translate3d(36px, 0, 0) scale(0.96);
}

[data-reveal="visual"] {
  transform: translate3d(0, 56px, 0) scale(0.96);
}

[data-reveal="row"] {
  transform: translate3d(36px, 0, 0);
}

html.is-ready .kk-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

html.is-ready .kk-hero [data-reveal="hero-copy"] {
  transition-delay: 120ms;
}

html.is-ready .kk-hero [data-reveal="hero-media"] {
  transition-delay: 280ms;
}

html.is-ready .kk-product-hero__content h1 {
  animation: kk-title-fly-in 1050ms cubic-bezier(0.2, 0.9, 0.18, 1.14) 120ms forwards;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.kk-showcase-card[data-reveal="card"]:nth-child(2),
.kk-decoration__point[data-reveal="card"]:nth-child(2),
.kk-stat-card[data-reveal="card"]:nth-child(2),
.kk-audience-row[data-reveal="row"]:nth-child(2) {
  transition-delay: 90ms;
}

.kk-showcase-card[data-reveal="card"]:nth-child(3),
.kk-decoration__point[data-reveal="card"]:nth-child(3),
.kk-stat-card[data-reveal="card"]:nth-child(3),
.kk-audience-row[data-reveal="row"]:nth-child(3) {
  transition-delay: 180ms;
}

.kk-showcase-card[data-reveal="card"]:nth-child(4),
.kk-audience-row[data-reveal="row"]:nth-child(4) {
  transition-delay: 270ms;
}

.kk-showcase-card[data-reveal="card"]:nth-child(5) {
  transition-delay: 360ms;
}

.kk-showcase-card[data-reveal="card"]:nth-child(6) {
  transition-delay: 450ms;
}

@keyframes kk-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -18px, 0) scale(1.08);
  }
}

@keyframes kk-hero-sheen {
  0% {
    opacity: 0;
    transform: skewX(-18deg) translateX(-120%);
  }

  20% {
    opacity: 0.22;
  }

  100% {
    opacity: 0;
    transform: skewX(-18deg) translateX(340%);
  }
}

@keyframes kk-title-fly-in {
  0% {
    opacity: 0;
    transform: translate3d(-180px, 0, 0);
  }

  62% {
    opacity: 1;
    transform: translate3d(18px, 0, 0);
  }

  82% {
    opacity: 1;
    transform: translate3d(-8px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes kk-header-sheen {
  0%,
  100% {
    transform: translateX(-120%) skewX(-24deg);
    opacity: 0.14;
  }

  45% {
    opacity: 0.28;
  }

  60% {
    transform: translateX(320%) skewX(-24deg);
    opacity: 0.08;
  }
}

@keyframes kk-detail-sheen {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-22deg);
  }

  18% {
    opacity: 0.85;
  }

  100% {
    opacity: 0;
    transform: translateX(440%) skewX(-22deg);
  }
}

@keyframes kk-float-card {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes kk-float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

}

@media (max-width: 1100px) {
  .kk-hero__inner,
  .kk-landing-hero,
  .kk-apparel-hero,
  .kk-landing-chooser,
  .kk-landing-benefits__inner,
  .kk-landing-quote-info,
  .kk-landing-process,
  .kk-apparel-split,
  .kk-apparel-quote,
  .kk-home-intro__inner,
  .kk-home-split__inner,
  .kk-decoration__inner,
  .kk-editorial__inner {
    grid-template-columns: 1fr;
  }

  .kk-home-intro__copy {
    position: static;
  }

  .kk-landing-chooser__copy {
    position: static;
  }

  .kk-landing-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-home-intro__cards,
  .kk-home-picks,
  .kk-landing-category-grid,
  .kk-landing-program-grid,
  .kk-landing-chooser__grid,
  .kk-landing-quote-list,
  .kk-apparel-band__inner,
  .kk-apparel-card-grid,
  .kk-apparel-quote__list,
  .kk-home-routes__inner {
    grid-template-columns: 1fr;
  }

  .kk-landing-hero {
    min-height: auto;
  }

  .kk-landing-hero__grid {
    min-height: 520px;
  }

  .kk-landing-category {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .kk-landing-program-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.12);
  }

  .kk-landing-program-grid article:last-child {
    border-bottom: 0;
  }

  .kk-landing-step-grid article:not(:last-child)::after {
    display: none;
  }

  .kk-landing-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-home-feature--red,
  .kk-home-feature--red:hover {
    transform: none;
  }

  .kk-home-pick--wide {
    grid-row: auto;
  }

  .kk-home-pick--wide .kk-showcase-card__image {
    aspect-ratio: 1 / 1;
  }

  .kk-home-split__media {
    min-height: 620px;
  }

  .kk-decoration__stage {
    min-height: 760px;
  }

  .kk-marquee__inner,
  .kk-decoration__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .kk-showcase-grid {
    grid-template-columns: 1fr;
  }

  .kk-product-grid {
    grid-template-columns: 1fr;
  }

  .kk-product-hero__content--mesh-trucker {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .kk-product-hero__content--mesh-trucker .kk-product-hero__summary {
    padding-left: 0;
  }

  .kk-product-hero__content--mesh-trucker h1::before {
    left: -12px;
  }

  .kk-contact-section__inner {
    grid-template-columns: 1fr;
  }

  .kk-contact-panel--details {
    position: static;
  }

  .kk-audience__inner {
    grid-template-columns: 1fr;
  }

  .kk-audience__intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .kk-hero {
    min-height: auto;
    background-position: center 24%;
  }

  .kk-hero__inner,
  .kk-product-hero__inner,
  .kk-contact-hero__inner,
  .kk-contact-section__inner,
  .kk-section__inner,
  .kk-final-cta__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .kk-hero__inner {
    padding-top: 14px;
    padding-bottom: 12px;
    gap: 16px;
  }

  .kk-hero h1 {
    font-size: clamp(30px, 11vw, 48px);
    line-height: 0.92;
  }

  .kk-hero p {
    font-size: 15px;
  }

  .kk-hero__actions {
    width: 100%;
  }

  .kk-landing-hero__copy,
  .kk-apparel-hero__copy,
  .kk-apparel-hero__image,
  .kk-landing-section,
  .kk-apparel-section,
  .kk-apparel-split__copy,
  .kk-landing-benefits__copy,
  .kk-landing-process__steps,
  .kk-landing-process__cta {
    padding-right: 24px;
    padding-left: 24px;
  }

  .kk-landing-hero h1,
  .kk-apparel-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .kk-landing-actions,
  .kk-apparel-split__actions {
    width: 100%;
  }

  .kk-apparel-hero__image {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .kk-apparel-hero__image img {
    max-height: 320px;
  }

  .kk-apparel-band__inner {
    padding: 22px 24px;
    gap: 12px;
  }

  .kk-apparel-split__image {
    min-height: 360px;
  }

  .kk-apparel-card-grid article,
  .kk-apparel-quote__panel,
  .kk-apparel-quote__list article {
    padding: 24px;
  }

  .kk-landing-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .kk-landing-hero__tile {
    min-height: 190px;
  }

  .kk-landing-hero__tile--cap img {
    padding: 16px;
  }

  .kk-landing-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .kk-landing-category {
    min-height: auto;
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .kk-landing-category img {
    height: 190px;
    order: -1;
  }

  .kk-landing-chooser__grid article,
  .kk-landing-quote-info__panel,
  .kk-landing-quote-list article {
    padding: 24px;
  }

  .kk-landing-chooser__grid article {
    min-height: auto;
  }

  .kk-landing-chooser__grid h3 {
    margin-top: 28px;
    font-size: 24px;
  }

  .kk-landing-benefit-grid {
    grid-template-columns: 1fr;
  }

  .kk-landing-step-grid,
  .kk-landing-process__note {
    grid-template-columns: 1fr;
  }

  .kk-landing-benefit-grid article {
    min-height: auto;
  }

  .kk-landing-program-grid article {
    padding-right: 0;
    padding-left: 0;
  }

  .kk-landing-benefits__copy,
  .kk-landing-process__steps,
  .kk-landing-process__cta {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .kk-button {
    width: 100%;
  }

  .kk-hero-card--panel {
    min-height: 300px;
  }

  .kk-collections__title {
    white-space: normal;
  }

  .kk-collections__title span {
    padding-bottom: 12px;
  }

  .kk-collections__title span img {
    left: -2px;
    bottom: -18px;
    width: calc(100% + 4px);
  }

  .kk-collections__title span::before {
    right: -8px;
    bottom: 6px;
    width: 20px;
    height: 14px;
  }

  .kk-marquee__inner {
    grid-template-columns: 1fr;
    padding: 20px 24px;
  }

  .kk-home-intro__cards {
    gap: 12px;
  }

  .kk-home-feature {
    min-height: auto;
    padding: 24px;
  }

  .kk-home-feature h3 {
    margin-top: 34px;
    font-size: 30px;
  }

  .kk-home-picks__callout,
  .kk-home-route {
    min-height: auto;
    padding: 28px;
  }

  .kk-home-split__media {
    min-height: 520px;
  }

  .kk-home-split__photo--main {
    width: 78%;
    height: 72%;
  }

  .kk-home-split__photo--overlap {
    width: 56%;
    height: 42%;
    border-width: 10px;
  }

  .kk-home-split__badge {
    right: 0;
    top: 7%;
  }

  .kk-home-proof article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kk-home-partner__inner {
    padding-right: 24px;
    padding-left: 24px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .kk-product-hero__content--mesh-trucker .kk-product-hero__lead {
    width: 100%;
    padding-right: 7px;
    padding-left: 7px;
  }

  .kk-product-hero__content--mesh-trucker .kk-section__eyebrow {
    display: block;
    text-align: right;
  }

  .kk-product-hero__content--mesh-trucker h1::before {
    left: -11px;
  }

  .kk-product-strip__inner::before,
  .kk-product-strip__inner::after {
    position: absolute;
    top: 42px;
    z-index: 2;
    color: rgba(18, 18, 18, 0.72);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .kk-product-strip__inner {
    width: 100%;
  }

  .kk-product-strip__rail {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 18px 12px;
    scroll-padding-right: 18px;
    scroll-padding-left: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .kk-product-strip__item {
    flex: 0 0 82px;
  }

  .kk-product-strip__inner::before {
    content: "‹";
    left: -2px;
  }

  .kk-product-strip__inner::after {
    content: "›";
    right: -2px;
  }

  .kk-product-strip__inner::before {
    content: "<";
  }

  .kk-product-strip__inner::after {
    content: ">";
  }

  .kk-contact-section {
    padding: 64px 0 72px;
  }

  .kk-product-hero__inner {
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 22px;
    min-height: 260px;
  }

  .kk-product-hero--dad-hats {
    background-position: center center, center center, 84% center;
  }

  .kk-product-hero--five-panel-mesh,
  .kk-product-hero--five-panel-snapback,
  .kk-product-hero--vintage-mesh,
  .kk-product-hero--baseball-cap,
  .kk-product-hero--flat-bill-cap,
  .kk-product-hero--youth-low-profile,
  .kk-product-hero--six-panel-mesh,
  .kk-product-hero--eight-inch-beanie,
  .kk-product-hero--cuffed-beanie,
  .kk-product-hero--ski-hat {
    background-position: center center, center center, 86% center;
  }

  .kk-product-hero__content {
    max-width: 100%;
  }

  .kk-product-hero__features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kk-product-card__images {
    grid-template-columns: 1fr;
  }

  .kk-lightbox {
    padding: 12px;
  }

  .kk-lightbox__dialog {
    max-height: calc(100vh - 24px);
    padding: 68px 12px 12px;
  }

  .kk-lightbox__toolbar {
    top: 14px;
    left: 12px;
    gap: 8px;
  }

  .kk-lightbox__close {
    top: 14px;
    right: 12px;
  }

  .kk-lightbox__viewport {
    height: min(74vh, 760px);
  }

  .kk-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kk-contact-panel {
    padding: 28px 24px 30px;
  }

  .kk-section {
    padding: 72px 0;
  }

  .kk-decoration__stage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .kk-decoration__list,
  .kk-marquee__inner,
  .kk-audience__rail {
    grid-template-columns: 1fr;
  }

  .kk-decoration__photo,
  .kk-decoration__tag {
    position: static;
    transform: none;
  }

  .kk-decoration__photo {
    width: auto;
    aspect-ratio: 1 / 1;
  }

  .kk-audience-row,
  .kk-stat-card,
  .kk-editorial__portrait,
  .kk-showcase-card,
  .kk-hero-card {
    min-height: auto;
  }

  .kk-audience-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kk-audience-row__content h3 {
    font-size: 26px;
  }
}

/* end main */
