html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea,
.ast-button,
.ast-custom-button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: var(--ast-body-line-height, 1.65);
}

* {
  box-sizing: border-box;
}

/* BASE */
.kh-scrollroot {
  position: relative;
  width: 100%;
}

.kh-pin {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.kh-panels {
  position: relative;
  width: 100%;
  height: 100%;
}

.kh-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.kh-panel:first-child {
  opacity: 1;
  visibility: visible;
}

/* HEADER */
.kh-site-header {
  position: fixed;
  top: 4vh;
  left: 6vw;
  right: 6vw;
  z-index: 10000;
  pointer-events: none;
}

.kh-site-header-inner {
  border: 2px solid currentColor;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  pointer-events: auto;
  transition: color .25s ease, border-color .25s ease;
}

.kh-site-header.is-light .kh-site-header-inner {
  color: #111;
}

.kh-site-title {
  color: inherit;
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 18px);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.kh-site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kh-site-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: .75;
}

.kh-site-nav button:hover {
  opacity: 1;
}

.kh-menu-toggle {
  display: none;
}

.kh-panel .kh-cover-top {
  display: none;
}

/* COVER */
.kh-cover {
  background: #f6f1ea;
  color: #111;
}

.kh-cover-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 6vh;
}

.kh-cover-hero {
  width: min(78vw, 1100px);
  height: auto;
  display: block;
}

.kh-cover-bottom {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: 6vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  z-index: 5;
}

.kh-cover-kicker,
.kh-cover-sub {
  font-size: clamp(14px, 1.2vw, 18px);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.35;
}

.kh-cover-kicker {
  margin-bottom: 8px;
}

.kh-cover-mini {
  width: min(18vw, 220px);
  height: auto;
  display: block;
}

/* ABOUT */
.kh-about {
  background: #000;
  color: #fff;
}

.kh-about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/about-bg.jpg") center / cover no-repeat;
  opacity: .95;
  transform: scale(1.06);
}

.kh-about > *:not(.kh-about-bg) {
  position: absolute;
  z-index: 2;
}

.kh-about-title {
  left: 6vw;
  top: 12vh;
  z-index: 7;
}

.kh-about-title img {
  width: min(62vw, 980px);
  height: auto;
  display: block;
}

.kh-about-media {
  left: 6vw;
  right: 6vw;
  top: 25vh;
  height: 40vh;
  display: grid;
  grid-template-columns: 24vw 1fr 24vw;
  gap: 2.5vw;
  align-items: stretch;
  z-index: 4;
}

.kh-about-left,
.kh-about-center,
.kh-about-right {
  overflow: hidden;
  background: transparent;
  transition:
    transform 900ms cubic-bezier(.22, 1, .36, 1),
    opacity 700ms cubic-bezier(.22, 1, .36, 1);
}

.kh-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About CSS movement */
.kh-about:not([style*="opacity: 1"]) .kh-about-left {
  transform: translate(-40px, 60px) rotate(-4deg) scale(.96);
  opacity: .35;
}

.kh-about:not([style*="opacity: 1"]) .kh-about-center {
  transform: translateY(70px) scale(.96);
  opacity: .35;
}

.kh-about:not([style*="opacity: 1"]) .kh-about-right {
  transform: translate(40px, 60px) rotate(4deg) scale(.96);
  opacity: .35;
}

.kh-about[style*="opacity: 1"] .kh-about-left {
  transform: translateY(-12px) rotate(-2deg);
  opacity: 1;
}

.kh-about[style*="opacity: 1"] .kh-about-center {
  transform: translateY(10px);
  opacity: 1;
}

.kh-about[style*="opacity: 1"] .kh-about-right {
  transform: translateY(-12px) rotate(2deg);
  opacity: 1;
}

.kh-about-bottom {
  left: 6vw;
  right: 6vw;
  bottom: 6vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  z-index: 6;
}

.kh-about-block {
  max-width: 56vw;
}

.kh-about-kicker {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.kh-about-text {
  font-size: 15px;
  line-height: 1.6;
}

/* SKILLS */
.kh-skills {
  background: #000;
  color: #fff;
}

.kh-skills-title {
  position: absolute;
  top: 18vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  transition:
    transform 700ms cubic-bezier(.22, 1, .36, 1),
    opacity 700ms cubic-bezier(.22, 1, .36, 1);
}

.kh-skills-title img {
  width: min(46vw, 720px);
  height: auto;
  display: block;
}

.kh-skills-grid {
  position: absolute;
  left: 14vw;
  right: 14vw;
  top: 40vh;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8vw;
  z-index: 4;
}

.kh-skill-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition:
    transform 700ms cubic-bezier(.22, 1, .36, 1),
    opacity 700ms cubic-bezier(.22, 1, .36, 1);
}

.kh-skill-title {
  border: 2px solid #fff;
  padding: 14px 16px;
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 26px);
  line-height: 1.2;
  text-transform: uppercase;
}

.kh-skill-card img {
  width: 100%;
  height: 31vh;
  object-fit: cover;
  display: block;
}

/* Skills CSS movement */
.kh-skills:not([style*="opacity: 1"]) .kh-skills-title {
  transform: translate(-50%, -35px) scale(.98);
  opacity: .4;
}

.kh-skills:not([style*="opacity: 1"]) .kh-skill-card {
  transform: translateY(55px) scale(.98);
  opacity: .35;
}

.kh-skills[style*="opacity: 1"] .kh-skills-title {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.kh-skills[style*="opacity: 1"] .kh-skill-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* SUCCESS */
.kh-success {
  background: #000;
  color: #fff;
}

.kh-success-collage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.kh-success-img {
  position: absolute;
  object-fit: cover;
  display: block;
  filter: brightness(.58);
}

.kh-success-img-1 {
  left: 2vw;
  top: 4vh;
  width: 23vw;
  height: 64vh;
}

.kh-success-img-2 {
  left: 28vw;
  top: 4vh;
  width: 23vw;
  height: 23vh;
}

.kh-success-img-3 {
  left: 28vw;
  top: 36vh;
  width: 23vw;
  height: 28vh;
}

.kh-success-img-4 {
  left: 28vw;
  bottom: 4vh;
  width: 23vw;
  height: 18vh;
}

.kh-success-img-5 {
  left: 54vw;
  top: 4vh;
  width: 22vw;
  height: 90vh;
}

.kh-success-img-6 {
  right: 3vw;
  top: 4vh;
  width: 18vw;
  height: 58vh;
}

.kh-success-img-7 {
  left: 2vw;
  bottom: 4vh;
  width: 23vw;
  height: 23vh;
}

.kh-success-img-8 {
  right: 3vw;
  bottom: 4vh;
  width: 18vw;
  height: 24vh;
}

.kh-success-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 5;
  pointer-events: none;
}

.kh-success-title img {
  width: min(76vw, 1180px);
  height: auto;
  display: block;
}

/* BRANDS */
.kh-brands {
  background: #f7f7f5;
  color: #000;
}

.kh-brands-title {
  position: absolute;
  top: 15vh;
  left: 6vw;
  z-index: 4;
}

.kh-brands-title img {
  width: min(52vw, 820px);
  height: auto;
  display: block;
}

.kh-brands-track {
  position: absolute;
  top: 34vh;
  left: 20vw;
  height: 40vh;
  display: flex;
  gap: 1.8vw;
  width: max-content;
  padding-left: 18vw;
  padding-right: 18vw;
  z-index: 4;
}

.kh-brand-card {
  position: relative;
  flex: 0 0 28vw;
  height: 36vh;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.kh-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
}

.kh-brand-copy {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 6%;
  color: #fff;
  text-transform: uppercase;
}

.kh-brand-copy p {
  margin: 0 0 8px;
  font-size: clamp(11px, .95vw, 15px);
  line-height: 1.25;
}

.kh-brand-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1;
  font-weight: 900;
}

/* CONTACT */
.kh-contact {
  background: #000;
  color: #fff;
}

.kh-contact-info {
  position: absolute;
  left: 9vw;
  top: 40vh;
  z-index: 5;
  display: grid;
  gap: 28px;
}

.kh-contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: #fff;
  text-decoration: none;
}

.kh-contact-arrow {
  font-size: 30px;
  line-height: 1;
}

.kh-contact-item h3 {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 800;
}

.kh-contact-item p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.35;
}

.kh-contact-title {
  position: absolute;
  left: 30vw;
  top: 22vh;
  z-index: 7;
  pointer-events: none;
}

.kh-contact-title img {
  width: min(48vw, 850px);
  height: auto;
  display: block;
}

.kh-contact-photo {
  position: absolute;
  right: 13vw;
  top: 20vh;
  width: 34vw;
  height: 58vh;
  z-index: 4;
  overflow: hidden;
}

.kh-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SIDE NAV */
.kh-nav {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  display: grid;
  gap: 14px;
}

.kh-nav button {
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 22px rgba(0,0,0,.08),
    0 2px 20px rgba(0,0,0,.02);
}

.kh-nav button:hover {
  background: rgba(255,255,255,.12);
}

.kh-arrow {
  width: 22px;
  height: 22px;
  border-left: 5px solid #fff;
  border-top: 5px solid #fff;
  display: block;
  filter: drop-shadow(0 1px 10px rgba(0,0,0,.05));
}

.kh-arrow-up {
  transform: translateY(5px) rotate(45deg);
}

.kh-arrow-down {
  transform: translateY(-5px) rotate(225deg);
}

/* LIGHTBOX */
.kh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.kh-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kh-lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  display: block;
}

.kh-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

.kh-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20001;
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 2.6rem;
  display: grid;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  padding: 0;
  text-align: center;
}

.kh-lightbox-prev {
  left: 28px;
}

.kh-lightbox-next {
  right: 28px;
}

.kh-lightbox-nav:hover {
  background: rgba(255,255,255,.12);
}

/* MOBILE */
@media (max-width: 767px) {
  .kh-site-header {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .kh-site-header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .kh-site-title {
    font-size: 11px;
    white-space: normal;
    line-height: 1.35;
    max-width: calc(100% - 48px);
  }

  .kh-menu-toggle {
    display: grid;
    gap: 6px;
    width: 34px;
    height: 28px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: inherit;
  }

  .kh-menu-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    width: 100%;
  }

  .kh-site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid currentColor;
    padding: 14px;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(8px);
    overflow: visible;
  }

  .kh-site-header.is-light .kh-site-nav {
    background: rgba(246,241,234,.94);
  }

  .kh-site-header.is-open .kh-site-nav {
    display: flex;
  }

  .kh-site-nav button {
    font-size: 11px;
    white-space: nowrap;
  }

  /* Cover */
  .kh-cover-hero {
    width: 88vw;
  }

  .kh-cover-bottom {
    bottom: 5vh;
    flex-direction: column;
    align-items: flex-start;
  }

  .kh-cover-mini {
    width: 34vw;
  }

  /* About */
  .kh-about-title {
    top: 18vh;
    left: 8vw;
    right: 8vw;
  }

  .kh-about-title img {
    width: 78vw;
  }

  .kh-about-media {
    top: 36vh;
    left: 10vw;
    right: 10vw;
    height: 21vh;
    display: block;
  }

  .kh-about-left,
  .kh-about-right {
    display: none;
  }

  .kh-about-center {
    width: 100%;
    height: 100%;
  }

  .kh-about[style*="opacity: 1"] .kh-about-center {
    transform: translate(0%, -72%) translate3d(0, 70px, 0) scale(.98);
  }

  .kh-about-bottom {
    top: 59vh;
    bottom: auto;
    left: 8vw;
    right: 24vw;
    display: block;
  }

  .kh-about-block {
    max-width: 100%;
  }

  .kh-about-kicker {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .kh-about-text {
    font-size: 10.5px;
    line-height: 1.32;
  }

  /* Skills */
  .kh-skills-title {
    top: 13vh;
  }

  .kh-skills-title img {
    width: 82vw;
  }

  .kh-skills-grid {
    left: 6vw;
    right: 6vw;
    top: 25vh;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .kh-skill-title {
    padding: 10px;
    font-size: 13px;
  }

  .kh-skill-card img {
    height: 18vh;
  }

  /* Success */
  .kh-success-img {
    filter: brightness(.55);
  }

  .kh-success-img-1 {
    left: 5vw;
    top: 9vh;
    width: 42vw;
    height: 35vh;
  }

  .kh-success-img-2 {
    left: 52vw;
    top: 9vh;
    width: 43vw;
    height: 20vh;
  }

  .kh-success-img-3 {
    left: 52vw;
    top: 32vh;
    width: 43vw;
    height: 25vh;
  }

  .kh-success-img-4 {
    left: 5vw;
    bottom: 8vh;
    width: 42vw;
    height: 22vh;
  }

  .kh-success-img-5 {
    left: 5vw;
    top: 47vh;
    width: 42vw;
    height: 20vh;
  }

  .kh-success-img-6 {
    right: 5vw;
    top: 60vh;
    width: 43vw;
    height: 20vh;
  }

  .kh-success-img-7,
  .kh-success-img-8 {
    display: none;
  }

  .kh-success-title img {
    width: 96vw;
  }

  /* Brands */
  .kh-brands-track {
    left: 0;
    top: 34vh;
    height: 46vh;
    gap: 6vw;
    padding-left: 12vw;
    padding-right: 12vw;
  }

  .kh-brand-card {
    flex: 0 0 76vw;
    height: 46vh;
  }

  .kh-brand-copy p {
    font-size: 13px;
  }

  .kh-brand-copy h3 {
    font-size: 28px;
  }

  /* Contact */
  .kh-contact-title {
    top: 17vh;
    left: 6vw;
    right: 6vw;
  }

  .kh-contact-title img {
    width: 60vw;
  }

  .kh-contact-photo {
    top: 34vh;
    left: 24vw;
    right: 24vw;
    width: auto;
    height: auto;
  }

  .kh-contact-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .kh-contact-info {
    top: 62vh;
    left: 9vw;
    right: 24vw;
    gap: 7px;
    padding-right: 80px;
  }

  .kh-contact-item {
    grid-template-columns: 20px 1fr;
    gap: 10px;
  }

  .kh-contact-arrow {
    font-size: 20px;
  }

  .kh-contact-item h3 {
    font-size: 13px;
    margin-bottom: 0;
  }

  .kh-contact-item p {
    font-size: 11px;
    line-height: 1.15;
  }

  /* Side arrows */
  .kh-nav {
    right: 18px;
    bottom: 28px;
    gap: 10px;
  }

  .kh-nav button {
    width: 44px;
    height: 44px;
  }

  .kh-arrow {
    width: 17px;
    height: 17px;
    border-left-width: 4px;
    border-top-width: 4px;
  }

  /* Lightbox */
  .kh-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .kh-lightbox-prev {
    left: 14px;
  }

  .kh-lightbox-next {
    right: 14px;
  }
}

@media (max-width: 767px) {
  .kh-about-media {
    top: 40vh;
    height: 18vh;
    left: 14vw;
    right: 14vw;
  }

  .kh-about-center {
    transform: none !important;
  }

  .kh-about[style*="opacity: 1"] .kh-about-center {
    transform: none !important;
  }

  .kh-about-bottom {
    top: 60vh;
    left: 8vw;
    right: 24vw;
  }

  .kh-about-kicker {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .kh-about-text {
    font-size: 10px;
    line-height: 1.25;
  }
}
.kh-site-header.is-light ~ .kh-nav button,
body:has(.kh-site-header.is-light) .kh-nav button {
  border-color: #111;
}

.kh-site-header.is-light ~ .kh-nav .kh-arrow,
body:has(.kh-site-header.is-light) .kh-arrow {
  border-left-color: #111;
  border-top-color: #111;
}

/* Accessible semantic headings without changing the visual presentation */
.kh-sr-only {
  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;
}
